Among other superpowers, adding a Raspberry Pi to Marty gives Marty the ability to operate completely autonomously, without being connected to a computer or phone.
This guide explains how to add a Raspberry Pi to Marty V2 and get even more out of both. It assumes that you already know how to work with Raspberry Pi alone: you should be comfortable using the terminal and performing advanced configuration on the Pi. Adding a Raspberry Pi allows you to run Python programs on the Pi to control Marty, with all the functionality normally found in our [[martyv2:documentation:python_function_reference|Python library]]). The benefit is that there will‹ be lower latency and the code will run fully on Marty, making your robot completely autonomous. Additionally, you can make automatic programs that run whenever you turn on Marty, which ties in with the huge amount of [[https://projects.raspberrypi.org/en/projects?software%5B%5D=python|pre-existing material]] that uses Python on the Pi, for example [[https://projects.raspberrypi.org/en/projects/google-voice-aiy|voice]] or [[https://microsoft.github.io/ELL/tutorials/Getting-started-with-image-classification-on-the-Raspberry-Pi/|image]] processing. ===== Prerequisites ===== If you have never worked with Raspberry Pi before, we highly recommend you follow some of the [[https://projects.raspberrypi.org/en/pathways/getting-started-with-raspberry-pi|getting started]] guides available from [[https://www.raspberrypi.org/|raspberrypi.org]]. Additionally, the [[https://www.raspberrypi.org/documentation/|Raspberry Pi documentation]] will prove very useful: the documentation has guides on [[https://www.raspberrypi.org/documentation/linux/|Linux]], the [[https://www.raspberrypi.org/documentation/usage/terminal/README.md|terminal]], [[https://www.raspberrypi.org/documentation/usage/python/README.md|Python]], and much more. If you don't know where to begin, you can always have a look at our [[martyv2:userguides:raspberry_pi:primer|Raspberry Pi Primer]]. To follow this guide, you will need to: * Have a supported model of Raspberry Pi (we support all models except Pi 4, Pi Pico and Compute Modules) with the [[https://www.raspberrypi.org/software/|official]] OS - //Raspberry Pi OS//, previously called //Raspbian//; * Be able to power your Pi * Be able to access your Pi, ideally [[https://www.raspberrypi.org/documentation/remote-access/|wirelessly]] (e.g. using [[https://www.raspberrypi.org/documentation/remote-access/ssh/README.md|SSH]] or [[https://www.raspberrypi.org/documentation/remote-access/vnc/README.md|VNC]]); * Know how to use the Linux Terminal on your Pi; * Have a Marty V2 with a Raspberry Pi cable; * Know how to [[martyv2:userguides:python:first_steps_with_python|control Marty from Python]]. If you (or your students) are accustomed to using a Raspberry Pi with an external mouse, keyboard and monitor, and are not very comfortable using the Terminal/SSH (Secure Shell), we recommend consulting [how to set up VNC [[https://www.raspberrypi.org/documentation/remote-access/vnc/README.md|Virtual Network Computing]]. Connecting all the peripherals to the Pi will both limit Marty's movement and consume more electric current, which is already scarce: Marty can provide up to 1A and the Pi will need most of it for itself. [[https://www.raspberrypi.org/documentation/remote-access/vnc/README.md|VNC]] gives you the benefit of a physical monitor and a worthwhile graphical interface that works over WiFi: no need for cables. ===== Step 1: Mounting the Pi ===== There are 4 standoffs on the inner side of the top lid of Marty's head. These are positioned to match the mounting holes on your Pi so you can easily attach it with 2, 3 or 4 _M2.5_ screws (with a thread length of 12mm). If you are only using 2 screws, it is best to secure them on two diagonally opposite corners of the Pi rather than two adjacent corners. {{ :martyv2:userguides:rasppi_screw_assembly.jpg?700 }} ===== Step 2: Connecting the Pi to RIC ===== You will need the Raspberry Pi connector cable and a way to power your Pi. Take the Raspberry Pi cable and connect the end with the smaller, white connector to the port inside Marty's head marked _EXTENSION_. There is only one way this will fit. {{ :martyv2:userguides:rpi_ug-ric_extension_port.jpg?400&direct }} The larger end of your Raspberry Pi cable connects to the side of the Pi's GPIO (General Purpose Input/Output) header, which is closer to the microSD card slot. If your Raspberry Pi cable consists of differently coloured wires, you can locate the red ones and align them with the [[https://pinout.xyz/pinout/5v_power|5V pins]] (use a [[https://www.raspberrypi.org/documentation/usage/gpio/|pinout diagram]] to find the 5V pins). Alternatively, you can locate the corner of the connector that does not have a wire connected to it and align this with pin 1 (3V3 Power) on the Pi. **CAUTION: Make sure Marty is OFF before connecting the Raspberry Pi end of the cable and triple check that the cable has been plugged in the right way around before turning Marty on. Incorrect connection may seriously damage the Pi and/or Marty.** {{ :martyv2:userguides:rpi_ug-rpi_connection.jpg?400&direct }} ===== Step 3: Raspberry Pi Configuration ===== RIC and the Raspberry Pi communicate using UART (Universal Asynchronous Receiver-Transmitter). Unfortunately, if your Pi has Bluetooth (Pi 3 and Pi Zero W), it probably uses UART for that, so Bluetooth will need to be disabled. To disable it, follow these steps: - In terminal, type `sudoedit /boot/config.txt`. - Add a new line to the end of the file and type `dtoverlay=disable-bt`. - Save the file and exit the editor. - From terminal, run `sudo systemctl disable hciuart.service`. - Reboot the Pi: type `sudo reboot`. Finally, make sure the Serial (UART) Interface on your Pi is configured correctly: - From terminal, run `sudo raspi-config`. - Select //"3 Interface Options"//. - Then, select //"P6 Serial Port"//. - When asked //"Would you like a login shell to be accessible over serial?"//, select `< No >`. - When asked //"Would you like the serial port hardware to be enabled?"//, select `< Yes >`. - If you are asked to reboot, accept. //**Optional**: Have a look [[https://www.raspberrypi.org/documentation/configuration/uart.md|here]] for more information about UART including how to configure miniUART to use Bluetooth on the Pi while it is connected to Marty.// ===== Step 4: Raspberry Pi software ===== You will need Python (3.6 or newer), pip, and MartyPy installed on your Raspberry Pi. See [[martyv2:userguides:python:setting_up_python_on_your_computer|]] for details on how to set it up. ===== Step 5: Check that it worked ===== Now you should be able to control Marty, in Python, on your Raspberry Pi. This works the same as any other way of controlling Marty with just a small difference in how you connect to Marty. Instead of something like `my_marty = Marty("wifi", "192.168.0.42")`, you will need this: ```python my_marty = Marty("exp", "/dev/ttyAMA0") ``` //(In the command above, `"exp"` is the connection method and `"/dev/ttyAMA0"` is a special file that should be present on your Pi, if UART is configured correctly (as per section 3). Unlike the IP address with the `"wifi"` connection method, the `"/dev/ttyAMA0"` file name should always be the same.)// Click [[martyv2:userguides:python:first_steps_with_python|]] to see examples of code for Marty. The following code will make Marty walk two steps forward: ```python from martypy import Marty my_marty = Marty("exp", "/dev/ttyAMA0") my_marty.walk() my_marty.close() ``` In terminal, the above code will look like this: {{ :martyv2:userguides:rpi_ug-walk_test.png?direct }} ===== What's next? ===== Check out our [[https://learn.martytherobot.com/lesson/marty-uses-the-raspberry-pi-in-python|Raspberry Pi + Marty lesson]] for a clear demonstration of the difference adding a Pi makes to Marty. Feeling creative? We challenge you to incorporate Marty into one of [[https://projects.raspberrypi.org/en/projects?software%5B%5D=python|these awesome Raspberry Pi Python projects]]!