You'll need:
- BeagleY-AI board
- microSD card (32GB+)
- USB-C power supply
- Minimum: Rated for 15W (5V 3A)
- Recommended: Official Raspberry Pi power supply or other USB PD-capable power supply
- Ethernet cable
- Active cooler is highly recommended
- Minimum: Adhesive heat sink and small 5V fan
- Recommended: Offcial Raspberry Pi active cooler
- Computer with Ethernet port and SD card reader
- Devices without built-in Ethernet ports or SD card slots may use USB dongles
The BeagleY-AI tends to run quite hot, so some kind of additional cooling is recommended.
If you have a generic fan that is rated for 5V or more, connect the power wire to pins 2 or 4 on the BeagleY and the ground wire to pin 6. Refer to the pinout diagram.
Stick the heat sink onto the main processor, the large silver chip closest to the USB ports. Ensure the fan is oriented such that air is being blown through the fins of the heat sink.
The fan can be mounted in various ways, including this joint for mounting on a DIN rail.
You could also connect the fan using the 4-pin JST cable to the board's PWM fan connector located right below the GPIO pins. Connector's pinout is identical to the Rasperry Pi 5 one.
Top-side view (USB and Ethernet connectors on the bottom)
Pins from left to right:
This option would provide the dynamic fan cooling which is better because the board can manipulate the fan for better cooling (e.g. turn the fan slower or faster). More info about active cooling on Beagle Docs ↗.
The BeagleY-AI is designed to run Debian Linux, an open-source operating system common among embedded systems and servers.
-
Locate the OS images: Go to beagleboard.org/boards/beagley-ai ↗ and click the orange "Software Images" button.
- There are three pieces of information to note for each image: the Debian version, the environment, and the Linux kernel version. For example, "BeagleY-AI Debian 12.11 2025-05-21 XFCE (v6.6.x-ti)" is Debian 12.11, with the XFCE desktop environment, and Linux kernel 6.6.
-
Download an image: The environment determines how you will interact with the board. Once you've selected a configuration that is suitable for your setup, click on the name to download it.
- XFCE ↗ is a desktop environment, meaning you will have an interface similar to Windows or MacOS. Note that you'll need a micro HDMI cable and an external monitor to make use of it.
- The minimal environment contains only a text-based command line. If you intend on running the board headless (meaning, without a dedicated display), this is the recommended configuration.
-
Flash the image
- Download and install Balena Etcher ↗.
- Insert the micro SD card into your computer, either via a built-in slot or an adapter.
- Click "Flash from file" and pick the image from Step 2.
- Click "Select target" and pick the SD card. Make sure you select the correct device-- any content on it will be deleted.
- Click "Flash!" and wait for it to copy and verify the install.
Ultimately you'll want the BeagleY-AI to be connected to the internet via Wi-Fi, but on first startup it won't know how to connect to your Wi-Fi network.
- Establish a wired connection: Plug one end of an Ethernet cable into your computer and the other end into the Beagle.
- Power on the board: Plug your BeagleY-AI into a suitable USB-C power adapter.
- Connect to the board: In a terminal on your computer, run
ssh debian@beaglebone.local. If this succeeds, you will now be running commands on the Beagle. - Connect to Wi-Fi: Run
sudo systemctl start NetworkManagerand connect to your Wi-Fi network via NetworkManager TUI:
Note
If you are SSH'ed into the Beagle over Ethernet, the connection may drop out after a few minutes. A common workaround is to SSH into the board and run sudo nmcli c m "Wired connection 1" ipv4.method link-local.
See Wiring § Motor Driver for how to wire the motors to the motor driver.
The BeagleY-AI controls the motors via the HW-231 Motor Driver.
The encoders are used to determine the rotational position of each wheel. They are connected to the Beagle using the I2C protocol. The SCUTTLE design uses a simple I2C bus board to combine the I2C connections for both encoders into a single set of wires.
See Wiring § Encoder
After successfully connecting to internet, run sudo apt update.
- Your system just grabs the newest lists of available software from all its repositories and stores them in
/var/lib/apt/lists/. - It simply makes sure that whenever you do an install or upgrade next, you’re working with the freshest info.
Warning
You could also sudo apt upgrade but be careful as on some boards (e.g. BeagleBone Black with the Debian image), running apt upgrade can actually pull in an older kernel or overwrite vendor‐customized device trees, breaking hardware support. For example, users have reported their 5.10 kernel being downgraded back to 4.19 after an unguarded apt upgrade. More info ↗
Upgrading between major OS releases (e.g. Raspberry Pi OS Bullseye → Bookworm) via apt full-upgrade is not recommended; a clean flash of the new release image is the supported path to avoid partial‐upgrade failures. See Upgrade rather than reinstall ↗ or Upgrade from 'Buster' to Raspberry Pi OS ↗.
The BeagleY-AI has hardware PWM, but to use it you'll need to import the appropriate overlays on boot.
-
Open
/boot/firmware/extlinux/extlinux.confin a text editor. For example,sudo nano /boot/firmware/extlinux/extlinux.conf. -
Locate the "microSD (default)" section at the end of the file.
-
Replace the commented
fdtoverlaysline with the following:fdtoverlays /overlays/k3-am67a-beagley-ai-pwm-epwm0-gpio12.dtbo /overlays/k3-am67a-beagley-ai-pwm-epwm1-gpio13.dtbo /overlays/k3-am67a-beagley-ai-pwm-epwm0-gpio5.dtbo /overlays/k3-am67a-beagley-ai-pwm-epwm1-gpio6.dtbo -
The full section should look like this:
label microSD (default) kernel /Image append console=ttyS2,115200n8 root=/dev/mmcblk1p2 ro rootfstype=ext4 rootwait net.ifnames=0 quiet fdtdir / fdt /ti/k3-am67a-beagley-ai.dtb fdtoverlays /overlays/k3-am67a-beagley-ai-pwm-epwm0-gpio5-gpio12.dtbo /overlays/k3-am67a-beagley-ai-pwm-epwm1-gpio6-gpio13.dtbo #initrd /initrd.img -
Save the file. For Nano, hit
Ctrl-Xand thenEnter.
The pip command available from the BeagleY-AI's core environment is locked, so you'll need to use a Python virtual environment.
- To create a new virtual enviornment:
python3 -m venv ~/YOUR_ENV - To activate an environment:
source ~/YOUR_ENV/bin/activate - To deactivate an environment:
deactivate
Note
You'll have to activate the virtual environment in every terminal you wish to run or manage your Python project from.
Within the virtual environment, install the required libraries:
pip install numpy python-periphery smbus2 inputsTo install the repo type:
git clone https://github.com/yoshiask/SCUTTLE-BeagleY-AI-DemoNavigate to the directory:
cd SCUTTLE-BeagleY-AI-DemoTo start operating SCUTTLE with the gamepad type:
python L3_gpDemo.py





