Sending
Sends out messages via the microbit's radio module, e.g. fwd for forward or tr for turn right; as well the name of the actions scrolls across the microbit.
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 * | |
import radio | |
radio.on() | |
while True: | |
radio.send("fwd") | |
display.scroll("forward") | |
sleep(2000); | |
radio.send("bwd") | |
display.scroll("backward") | |
sleep(2000); | |
radio.send("tl") | |
display.scroll("Left") | |
sleep(2000); | |
radio.send("tr") | |
display.scroll("right") | |
sleep(2000); | |
radio.send("stp") | |
display.scroll("stop") | |
sleep(2000); |
On the Unicorn
Revieves messages via the microbits radio module, e.g. bwd for backward or tl for turn left; then carries out the action for 500ms. The time was selected to give the system enough time to finish the action before the next message is expected.
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 * | |
import radio | |
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) | |
radio.on() | |
while True: | |
incoming = radio.receive() | |
stopIt(100); | |
if incoming == 'fwd': | |
forward(500) | |
if incoming == 'bwd': | |
backward(500) | |
if incoming == 'tl': | |
turnLeft(500) | |
if incoming == 'tr': | |
turnRight(500) | |
if incoming == 'stp': | |
stopIt(100) |
All 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
Thanks.....
ReplyDeleterobot kit
Robotics in Education
Educational robotics
This comment has been removed by a blog administrator.
ReplyDelete