Ron Evans
Ron Evans
The solution to that in Gobot, is to define an interface for 1Wire, and then adaptors for different platforms can implement that interface in their own way. For Raspi &...
Hi @jadr2ddude this post has the GPIO mappings for this board: https://kaspars.net/blog/linux/orange-pi-zero-gpio Seems like adding it would not take long. Are you planning on working on this? :)
This appears to provide the Orange Pi One mappings if you wanted to add that as well: https://cdn.instructables.com/FVP/79LM/INRJEEUJ/FVP79LMINRJEEUJ.LARGE.jpg
Hello @1lann was finally looking into this, and I see that actually the `Client` is doing a `AnalogMapping` query, and so obtains the actual pin mappings for any board on...
This requires a `pulseIn` style of API to be able to function, in similar fashion to what https://github.com/hybridgroup/gobot/issues/246 would need.
Also same as #152
Hi @hairyhenderson So I've been working on this for a bit, your issue prompted me to get a little further. The branch https://github.com/hybridgroup/gobot/tree/feature/neopixels contains some of my WIP. The initial...
TO elaborate a little more: Firmata-based Neopixel driver that already at least mostly works is here: https://github.com/hybridgroup/gobot/blob/feature/neopixels/platforms/firmata/neopixel_driver.go Placeholder for GPIO-based Neopixel driver is here: https://github.com/hybridgroup/gobot/blob/feature/neopixels/drivers/gpio/neopixel_driver.go
Hi @joek you are correct, I have a repos with some work in progress on the Arduino side of things. https://github.com/hybridgroup/FirmataNeopixels Sorry about the complete lack of docs, as of...
Hi @hairyhenderson your best bet with Raspberry Pi is probably to use a SPI based LED strip like the APA102 https://github.com/hybridgroup/gobot/blob/master/drivers/spi/apa102.go the speed of the Raspi bus is not really...