microsoft / pxt-maker

MakeCode target for "Maker" boards (beta)
https://maker.makecode.com/
Other
120 stars 82 forks source link

Try to make the brain sim work with neopixels #320

Open mmoskal opened 3 years ago

mmoskal commented 3 years ago

With the following program, I don't get desired rainbow display:

light.setLength(12)
light.setAll(0xff0000)
forever(function () {
    pause(500)
    light.showAnimation(light.rainbowAnimation, 500)
})

@pelikhan any chance you take a look at this?