Bump velbus version + load velbus module names into device info (#31664)
This commit is contained in:
parent
9e41ee49cb
commit
5a7e0b84ff
4 changed files with 6 additions and 6 deletions
|
@ -140,11 +140,11 @@ class VelbusEntity(Entity):
|
|||
"identifiers": {
|
||||
(DOMAIN, self._module.get_module_address(), self._module.serial)
|
||||
},
|
||||
"name": "{} {}".format(
|
||||
self._module.get_module_address(), self._module.get_module_name()
|
||||
"name": "{} ({})".format(
|
||||
self._module.get_module_name(), self._module.get_module_address()
|
||||
),
|
||||
"manufacturer": "Velleman",
|
||||
"model": self._module.get_module_name(),
|
||||
"model": self._module.get_module_type_name(),
|
||||
"sw_version": "{}.{}-{}".format(
|
||||
self._module.memory_map_version,
|
||||
self._module.build_year,
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"domain": "velbus",
|
||||
"name": "Velbus",
|
||||
"documentation": "https://www.home-assistant.io/integrations/velbus",
|
||||
"requirements": ["python-velbus==2.0.36"],
|
||||
"requirements": ["python-velbus==2.0.40"],
|
||||
"config_flow": true,
|
||||
"dependencies": [],
|
||||
"codeowners": ["@Cereal2nd", "@brefra"]
|
||||
|
|
|
@ -1636,7 +1636,7 @@ python-telnet-vlc==1.0.4
|
|||
python-twitch-client==0.6.0
|
||||
|
||||
# homeassistant.components.velbus
|
||||
python-velbus==2.0.36
|
||||
python-velbus==2.0.40
|
||||
|
||||
# homeassistant.components.vlc
|
||||
python-vlc==1.1.2
|
||||
|
|
|
@ -562,7 +562,7 @@ python-miio==0.4.8
|
|||
python-nest==4.1.0
|
||||
|
||||
# homeassistant.components.velbus
|
||||
python-velbus==2.0.36
|
||||
python-velbus==2.0.40
|
||||
|
||||
# homeassistant.components.awair
|
||||
python_awair==0.0.4
|
||||
|
|
Loading…
Add table
Reference in a new issue