Junkbots (http://junkbots.blogspot.co.uk/) are based around using materials such as drink's cans, broken propellors and motors to produce something that moves by vibration. Previous designs be found at:
The latest tweak to the Raspberry Pi based Junkbot design is to use the combination of Python and Pimoroni's Explorer HAT PRO
Before the Explorer HAT can be used the library needs to be installed via the Terminal and the instructions below
curl get.pimoroni.com/explorerhat | bash
Python code to control the junkbot is shown below.
import explorerhat
from time import sleep
def spin1(duration):
explorerhat.motor.one.forward(100)
sleep(duration)
explorerhat.motor.one.stop()
def spin2(duration):
explorerhat.motor.one.backward(100)
sleep(duration)
explorerhat.motor.one.stop()
spin1(1)
spin2(1)
Essentially the code spins the junkbot one way and then the other.
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.