Skip to content

Commit 16ba04a

Browse files
committed
added logo
1 parent 0ff767e commit 16ba04a

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

custom_components/hyperhdr_control/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
2626
manufacturer="HyperHDR",
2727
name=f"HyperHDR ({entry.data[CONF_HOST]})",
2828
model="HyperHDR LED Controller",
29-
sw_version="1.1.1",
29+
sw_version="1.2.0",
3030
)
3131

3232
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)

custom_components/hyperhdr_control/button.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def device_info(self) -> DeviceInfo:
5353
manufacturer="HyperHDR",
5454
name=f"HyperHDR ({self._host})",
5555
model="HyperHDR LED Controller",
56-
sw_version="1.0.0",
56+
sw_version="1.2.0",
5757
)
5858

5959
async def async_press(self) -> None:
2.14 KB
Loading

custom_components/hyperhdr_control/number.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def device_info(self) -> DeviceInfo:
5555
manufacturer="HyperHDR",
5656
name=f"HyperHDR ({self._host})",
5757
model="HyperHDR LED Controller",
58-
sw_version="1.1.0",
58+
sw_version="1.2.0",
5959
)
6060

6161
async def async_set_native_value(self, value: float) -> None:

custom_components/hyperhdr_control/switch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def device_info(self) -> DeviceInfo:
5353
manufacturer="HyperHDR",
5454
name=f"HyperHDR ({self._host})",
5555
model="HyperHDR LED Controller",
56-
sw_version="1.1.0",
56+
sw_version="1.2.0",
5757
)
5858

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

0 commit comments

Comments
 (0)