I have this python script:
!/usr/bin/env python
import wifileds
led_connection = wifileds.limitlessled.connect('192.168.2.10', 8899)
led_connection.rgbw.zone_on(1)
wich gives this error:
AttributeError: 'module' object has no attribute 'limitlessled'
Am I misisng something in the above code?
I have this python script:
!/usr/bin/env python
import wifileds
led_connection = wifileds.limitlessled.connect('192.168.2.10', 8899)
led_connection.rgbw.zone_on(1)
wich gives this error:
AttributeError: 'module' object has no attribute 'limitlessled'
Am I misisng something in the above code?