When using SPI2.send4bit(arr, 0b0001, 0b0011); (i'm using pin B15 as the data line) in stead of require('neopixel'), i' getting the same behaviour als with neopixel (so gradually worse along the line with varying degrees for every send command).
When using SPI2.send4bit(arr, 0b0001, 0b0111); i get random leds lighting up (random color, intensity, address) so that seems to break it :( .
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Thanks for the quick response!
When using
SPI2.send4bit(arr, 0b0001, 0b0011);
(i'm using pinB15
as the data line) in stead ofrequire('neopixel')
, i' getting the same behaviour als with neopixel (so gradually worse along the line with varying degrees for every send command).When using
SPI2.send4bit(arr, 0b0001, 0b0111);
i get random leds lighting up (random color, intensity, address) so that seems to break it :( .