The neopixel init block includes a brightness & offset setting. Code generated looks like this:
neopixel = NeoPixel(Pin(2, Pin.OUT), 10, 3, 1, brightness=0.5)
This is not compatible with the standard micropython neopixel library, which uses this code:
neopixel = NeoPixel(Pin(2, Pin.OUT), 10)
Could you separate the neopixel brightness setting to its own block? This will allow users to use MPYBlockly with other esp32 variants (e.g. esp32c3, esp32s3) using the standard micropython firmware.
Alternatively, is the source code available, so that users can modify the blocks and recompile their own version of MPYBlockly? Thanks