ATP: Starting from Scratch

The smartphone control interface for the All-Terrain Pi is more-or-less finished, so to round off the list of things I wanted to do with it, the only thing left is to get it controlled via the Scratch programming environment.

Scratch is a great introduction to programming for kids, and the colourful drag-and-drop blocks are easy to get to grips with. Unfortunately, by default it doesn’t have the ability to talk to I2C devices like the motor control board on the All-Terrain Pi. However, it does have a (just-about documented) “Remote Sensors Protocol” that allows Scratch variables to be written and read via a TCP socket.

Scratch with the Remote Sensor interface enabled

A new Python script connects up to a running copy of Scratch, and listens for variables called “speed” and “turn” being set to numeric values. When it sees them, it sends the appropriate control messages to the motors.

The All-Terrain Pi still starts up in smartphone control mode, so in order to switch over we need to:

I’ve also knocked up a quick script to achieve this, which after a quick edit to /usr/bin/scratch can also be used remotely via X forwarding. Switching from “smartphone-controlled mode” to “Scratch mode” is now as simple as grabbing a laptop and running ssh -X pi@192.168.0.1 /home/pi/scratchmode

Here you can see the X-forwarded Scratch environment in the foreground, with debug information being printed by the Python script in the background:

Controlling the All-Terrain Pi from Scratch

Last of all, a quick video demo of a Scratch program driving the robot. The Scratch code you see in the video can also be found in my Github repository.

Add a Comment