Ben Nuttall

Results 347 comments of Ben Nuttall

Yes I think that's probably true. Another zero-style library for something like that would be good to see though.

You mean **pigpio** not **RPiGPIO** :) @waveform80 any idea?

Sounds reasonable. I'll take a look.

Sounds like a reasonable idea - not sure when we'll have time to work on it though. An alternative is to set source: ```python def blink_some(on_state): off state = (0,...

```python class CompositeLineSensor(CompositeDevice): def __init__(self, *pins): sensors = (LineSensor(pin) for pin in pins) super(CompositeLineSensor, self).__init__(*sensors) >>> line_sensors = CompositeLineSensor(10, 11, 12, 13, 14) >>> tuple(line_sensors.value) (1, 1, 1, 1, 1)...

Getting there! All tests passing except the blink ones, and I need to add some more blink and pulse tests, as well as look at nested RGBLEDBoards. I'm not entirely...

@lurch I'm struggling to comprehend the herculean `blink` method as implemented in `RGBLED`. Would you be able to take a look and see if you can implement it for `RGBLEDBoard`...

Thanks for all the info, Mike. Once we've got around to basic I2C support, we'll take a look at this.

Related/unrelated: I guess "board" is really the wrong word for this anyway... LEDBoard was intended for commonality between add-on boards like pi-liter, but used more generally for a collection of...