Skip to content

Commit e17b0c8

Browse files
committed
Add TODO's
1 parent 20f145d commit e17b0c8

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

custom_components/dmx/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,7 @@ def node_lost_callback(node: Node):
343343
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
344344
return True
345345

346+
# TODO include option to set unique_id #75
346347

347348
COMPATIBILITY_SCHEMA = \
348349
vol.Schema(

custom_components/dmx/io/dmx_io.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77

88
class DmxUniverse:
9+
# TODO #74 add switch to toggle sending output
10+
911
def __init__(self, port_address: PortAddress, controller: ArtNetServer, use_partial_universe: bool = True):
1012
self.port_address = port_address
1113
self.controller = controller

staging/platform-configuration3.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dmx:
2525
- DJ led:
2626
start_address: 0
2727
fixture: DJ Scan LED
28-
- 0/0/0:
28+
- 0/0/20:
2929
devices:
3030
- Bureau NO:
3131
fixture: CW/WW Fader

tests/test_desk_channel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
device_info_mock = MagicMock()
1515
homeassistant.helpers.device_registry.DeviceInfo = device_info_mock
1616

17-
17+
# TODO add a test for upper and lower bound #79
1818
class TestColorTemperatureFader(unittest.TestCase):
1919

2020
def setUp(self):

tests/test_rgbw.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
device_info_mock = MagicMock()
1515
homeassistant.helpers.device_registry.DeviceInfo = device_info_mock
1616

17-
1817
class TestRgbwFixture(unittest.TestCase):
1918

2019
def setUp(self):

0 commit comments

Comments
 (0)