changed len to range
Signed-off-by: Ebbe Baß <ebbe.bass>
This commit is contained in:
@@ -46,7 +46,7 @@ while True:
|
|||||||
|
|
||||||
# Then print out the data from each channel
|
# Then print out the data from each channel
|
||||||
print("Received data: ", end="")
|
print("Received data: ", end="")
|
||||||
for i in len(dmxChannels):
|
for i in range(dmxChannels):
|
||||||
# Lists in python start at 0, so to access a specific DMX channel you have to subtract one
|
# Lists in python start at 0, so to access a specific DMX channel you have to subtract one
|
||||||
print(dmxPacket[i-1], end=" ")
|
print(dmxPacket[i-1], end=" ")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user