Signed-off-by: Ebbe Baß <ebbe.bass>
main
Ebbe Baß 2024-02-13 16:29:32 +01:00
parent c7e79bc764
commit 42295c9d9e
1 changed files with 2 additions and 1 deletions

View File

@ -30,7 +30,8 @@ artNet = Artnet.Artnet(DEBUG = True)
while True: while True:
try: try:
# Gets whatever the last Art-Net packet we received is # Gets whatever the last Art-Net packet we received is
artNetPacket = artNet.readPacket() artNetPacket = artNet.artnet_packet_to_array()
print(str(artNetPacket))
# Make sure we actually *have* a packet # Make sure we actually *have* a packet
if artNetPacket is not None and artNetPacket.data is not None: if artNetPacket is not None and artNetPacket.data is not None:
# Checks to see if the current packet is for the specified DMX Universe # Checks to see if the current packet is for the specified DMX Universe