There is a fantastic video produced by Do It Kits on how to put the kit together and another on programming using Blocks:
Using the second video as a starting point I have produced my version of it in Python (see below). Essentially go forward, backwards, turn left and turn right, as well as pause.
I have probably wired it up back to front, so my settings in the code are the other way around to the ones used in the video - you may need to swap backwards and forwards around; as well as left and right.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from microbit import * | |
pin0.set_analog_period(20) | |
pin0.set_analog_period(20) | |
def backward(N): | |
pin0.write_analog(10) | |
pin1.write_analog(100) | |
sleep(N) | |
def forward(N): | |
pin0.write_analog(100) | |
pin1.write_analog(10) | |
sleep(N) | |
def turnRight(N): | |
pin0.write_analog(100) | |
pin1.write_analog(100) | |
sleep(N) | |
def turnLeft(N): | |
pin0.write_analog(10) | |
pin1.write_analog(10) | |
sleep(N) | |
def stopIt(N): | |
pin0.write_analog(0) | |
pin1.write_analog(0) | |
sleep(N) | |
while True: | |
forward(1500) | |
backward(1500) | |
turnLeft(1500) | |
turnRight(1500) | |
stopIt(1000) | |
All of the code available at Turner, S., 2017. Robo_unicorn_python. Available at: <Robo_unicorn_python> https://doi.org/10.6084/m9.figshare.5729583.v7
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
Very informative!!!!
ReplyDeleterobot kit
This comment has been removed by a blog administrator.
ReplyDelete