| Total Complexity | 1 |
| Total Lines | 17 |
| 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) 2022 Matt Cowley (MattIPv4) ([email protected]) |
||
| 6 | """ |
||
| 7 | |||
| 8 | from typing import List |
||
| 9 | |||
| 10 | from ._TransmittingController import TransmittingController |
||
| 11 | |||
| 12 | |||
| 13 | class PrintController(TransmittingController): |
||
| 14 | |||
| 15 | def _transmit(self, frame: List[int], first: int): |
||
| 16 | print(first, frame) |
||
| 17 |