Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | """ |
||
2 | * PyDMXControl: A Python 3 module to control DMX using OpenDMX or uDMX. |
||
3 | * Featuring fixture profiles, built-in effects and a web control panel. |
||
4 | * <https://github.com/MattIPv4/PyDMXControl/> |
||
5 | * Copyright (C) 2018 Matt Cowley (MattIPv4) ([email protected]) |
||
6 | """ |
||
7 | |||
8 | from ..defaults import Fixture |
||
9 | |||
10 | |||
11 | class Dimmer(Fixture): |
||
12 | |||
13 | def __init__(self, *args, **kwargs): |
||
14 | super().__init__(*args, **kwargs) |
||
15 | |||
16 | self._register_channel('dimmer') |
||
17 | self._register_channel_aliases('dimmer', 'dim', 'd') |
||
18 |