Skip to content

Commit

Permalink
added logo
Browse files Browse the repository at this point in the history
  • Loading branch information
johnneerdael committed Jan 10, 2025
1 parent 0ff767e commit 16ba04a
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion custom_components/hyperhdr_control/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
manufacturer="HyperHDR",
name=f"HyperHDR ({entry.data[CONF_HOST]})",
model="HyperHDR LED Controller",
sw_version="1.1.1",
sw_version="1.2.0",
)

await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
Expand Down
2 changes: 1 addition & 1 deletion custom_components/hyperhdr_control/button.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def device_info(self) -> DeviceInfo:
manufacturer="HyperHDR",
name=f"HyperHDR ({self._host})",
model="HyperHDR LED Controller",
sw_version="1.0.0",
sw_version="1.2.0",
)

async def async_press(self) -> None:
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion custom_components/hyperhdr_control/number.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def device_info(self) -> DeviceInfo:
manufacturer="HyperHDR",
name=f"HyperHDR ({self._host})",
model="HyperHDR LED Controller",
sw_version="1.1.0",
sw_version="1.2.0",
)

async def async_set_native_value(self, value: float) -> None:
Expand Down
2 changes: 1 addition & 1 deletion custom_components/hyperhdr_control/switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def device_info(self) -> DeviceInfo:
manufacturer="HyperHDR",
name=f"HyperHDR ({self._host})",
model="HyperHDR LED Controller",
sw_version="1.1.0",
sw_version="1.2.0",
)

async def async_turn_on(self, **kwargs: Any) -> None:
Expand Down

0 comments on commit 16ba04a

Please sign in to comment.