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.
Showing posts with label halloween. Show all posts
Showing posts with label halloween. Show all posts
Monday, 31 October 2016
Simple (and temporary) Halloween Hack
This really is a simple one. A Glowbug (or a NeoPixel) with the data in, Ground and 5v connected pushed into the neck of the balloon, then inflated the balloon. The neck of the balloon and wires are twisted tightly and insulating tape used to provide a bit of a seal.
The data in wire is connected to Pin 0 of a Micro:Bit and the other two wires are attached to the corresponding connections of the Micro:Bit. The code below randomly selects the colours and the length of the delay before changing colour.
from microbit import *
import neopixel, random
np = neopixel.NeoPixel(pin0, 1)
while True:
rd=random.randint(1,254)
gr=random.randint(1,254)
bl=random.randint(1,254)
t1=random.randint(200,2000)
np[0] = (rd, gr, bl)
np.show()
sleep(t1)
The problem is a slow leak means it only stays inflated for a short while.
All opinions in this blog are the Author's and should not in any way be seen as reflecting the views of any organisation the Author has any association with. Twitter @scottturneruon
Subscribe to:
Posts (Atom)
Remote Data Logging with V1 Microbit
In an earlier post https://robotsandphysicalcomputing.blogspot.com/2024/08/microbit-v1-datalogging.html a single microbit was used to log ...