Files
mixly3/boards/default/micropython_nrf51822_microbit/build/lib/rgb.py

7 lines
103 B
Python

from microbit import *
def show(object, led, r, g, b):
object[led] = (r, g, b)
object.show()