You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import leglight
|
|
allLights = leglight.discover(2)
|
|
print(allLights)
|
|
for light in allLights:
|
|
light.off()
|
|
#myLight = leglight.LegLight('192.168.68.112',9123)
|
|
#print(myLight)
|
|
#myLight.on()
|