Search found 3 matches

by tlo
Tue Dec 08, 2015 10:22 pm
Forum: WiPy and CC3200 boards
Topic: Module for Adafruit dotstar
Replies: 0
Views: 7252

Module for Adafruit dotstar

I recently got a dotstar-ledstripe, based on APA102C LEDs controlled via SPI.
Here is a module to control them.
https://github.com/thilohille/wipy-dotstar

Regards Thilo
by tlo
Tue Nov 24, 2015 10:43 pm
Forum: WiPy and CC3200 boards
Topic: registered function on Timerchannel gets not executed
Replies: 3
Views: 4555

Re: registered function on Timerchannel gets not executed

Yep, thats it. I seems to have overlooked the parameter of the function.
Thanks a lot!
by tlo
Tue Nov 24, 2015 8:28 pm
Forum: WiPy and CC3200 boards
Topic: registered function on Timerchannel gets not executed
Replies: 3
Views: 4555

registered function on Timerchannel gets not executed

Hi, i try to register a user defined function for a periodic timer interupt on the wipy. This works: tim = Timer(1, mode=Timer.PERIODIC) tim_a = tim.channel(Timer.A, freq=700) tim_a.irq(handler=lambda t: pin_step.toggle()) This not. There is no error, the wipy just seems to ignore the handler silent...