I have recently been playing with Edublocks ( edublocks.org ) and the 4tronix's Microbit Playground (the appropriately named Super Kit) controlling programmable pixels/neopixels and a servo . Recently a beta version of the Edublocks (see above) has become available ( https://app.edublocks.org/ ) so I wanted to play with it a bit and, at the same time, combine control the servo motor and neopixels together via a potentiometer (see below). The block version of the code is shown below: The python version np = None port1 = None pot2 = None port3 = None from microbit import * import neopixel np = neopixel.NeoPixel(pin0, 8) pin2.set_analog_period(20)# your own code while True: port1 = pin1.read_analog() pot2 = port1//128 port3 = port1//8 np[pot2] = (255, 0, 128) np.show() pin2.write_analog(port3) sleep(250) np.clear() To see it action via GIPHY A few thoughts on the be...
Robots and getting computers to work with the physical world is fun; this blog looks at my own personal experimenting and building in this area.