We believe in making computers open again to democratize technology and empower individuals and organizations to explore, experiment, and create without the constraints of proprietary systems.
What are we doing?
We design versatile and affordable single-board computers to provide developers, hobbyists, and educators with a platform for prototyping, experimentation, and production of embedded systems. Our comprehensive documentation, tutorials, and vibrant online community support users in their projects and foster knowledge sharing.
How are we doing it?
Through open-source hardware designs, diverse software support, and active community engagement, we enable users to customize, innovate, and collaborate effortlessly in embedded computing.
Support us
The BeagleBoard.org Foundation is a Michigan, USA-based 501(c)(3) non-profit corporation existing to provide education in and collaboration around the design and use of open-source software and hardware in embedded computing.
For this step you need to get a USB cable and attach your Beagle
to your host computer with it. Where you attached the cable
depends on which Beagle you have. Click on the tab for your board.
Once attached you will see some LEDs blinking.
Wait a bit and the blinking will settle down to a steady
heart beat.
The Beagle is now up and running, but you didn’t have to
load up Linux. This is because all Beagles
have built-in flash memory
that has the Debian distribution of Linux preinstalled.
Note
The one exception is the PocketBeagle which has no built-in
flash memory. See Update board with latest software
to install an image on the Pocket
If VS code is not installed on your board please skip this section and refer
to next section on how to login and run the code via command line.
Recent Beagles come with the IDE Visual Studio Code (https://code.visualstudio.com/) installed and
running. To access it, open a web browser on your host computer and browse to: 192.168.7.2:3000
(use 192.168.6.2:3000 for the Mac) and you will see something like:
At this point you can either run the scripts via a command line within VS Code, or
run them by clicking the RUNCode button.
Open a terminal window in VS Code by dropping down the Terminal menu and selecting NewTerminal
(or entering Ctrl+`). The terminal window appears at the bottom of the screen as shown below.
You can now enter commands and see them run as shown below.
Use the file navigator on the left to navigate to examples/BeagleBone/Black/blinkInternalLED.sh and you will see:
This code blinks one of the USR LEDs built into the board. Click on the RUNCode triangle on the upper right of the
screen (see red arrow) to run the code. (You could also enter Ctrl+Alt+N) The USR3 LED should now be blinking.
Click on the StopCodeRun (Ctrl+Alt+M) square to the right of the RunCode button.
Time to play! Try changing the LED number (on line 10) from 3 to something else. Click the RunCode
button (no need to save the file, autosave is on by default).
To access the command line and your host is a Mac, take the ssh(Mac) tab. If you
are running Linux on your host, take the ssh(Linux) tab. Finally take the
putty(Windows) tab for command line from Windows.
Recent Beagles come with the IDE Visual Studio Code
(https://code.visualstudio.com/) installed and
running. To access it, open a web browser on
your host computer and browse to: 192.168.7.2:3000
(use 192.168.6.2:3000 for the Mac)
and you will see something like:
At this point you can either run the scripts via a command
line within VS Code, or run them by clicking the
RUNCode button.
Running via the command line
Open a terminal window in VS Code by dropping down the
Terminal menu and selecting NewTerminal (or entering
Ctrl+Shift+`). The terminal window appears at the
bottom of the screen as shown below.
You can now enter commands and see them run as shown below.
Running via the RUN button
Use the file navigator on the left to navigate to
examples/BeagleBone/Black/blinkInternalLED.sh
and you will see:
This code blinks one of the USR LEDs built into the board.
Click on the RUNCode triangle on the upper right of
the screen (see red arrow) to run the code. (You could also enter Ctrl+Alt+N)
The USR3 LED should now be blinking.
Click on the StopCodeRun (Ctrl+Alt+M) square to the right of the
RunCode button.
Time to play! Try changing the LED number (on line 10) from
3 to something else. Click the RunCode button (no
need to save the file, autosave is on by default).
Try running seqLEDs.py.
If you are running a Mac host, open a terminal widow and run
host:~$ sshdebian@192.168.6.2
Use the password temppwd.
If you are running a Linux host, open a terminal widow and run
host:~$ sshdebian@192.168.7.2
Use the password temppwd.
If you are running Window you need to run an ssh client
to connect to the Beagle. I suggest you use putty.
You can download it here: https://www.putty.org/.
Once installed, launch it and connect to your Beagle
by sshing to 192.168.7.2.
Now that you have an LED blinking, try blinking a different LED.
Or, blink more than one LED at a time. Try slowing down, or speeding up
the blink rate.
Here’s a script that sequences the LEDs on and off.
bone:~$ catseqLEDs.py
import timeimport osLEDs=4LEDPATH='/sys/class/leds/beaglebone:green:usr'# OpenafileforeachLED
f = []for i in range(LEDs): f.append(open(LEDPATH+str(i)+"/brightness", "w"))# Sequence
while True: for i in range(LEDs): f[i].seek(0) f[i].write("1") # 1 turns the LED on time.sleep(0.25) for i in range(LEDs): f[i].seek(0) f[i].write("0") # 0 turns the LED off time.sleep(0.25)bone:~$ ./seqLEDs.py
^c
This python script is a bit more complicated that the previous bash
script. Note that LEDPATH is the same in both scripts. They use the
same interface to control the built-in LEDs. The python script opens a
file for each of the LEDs and then writes a 1 to the file to turn on
the LED. A 0 is writen to turn it off. The for loop allows it to turn
on (or off) all four LEDs in sequence.
Try speeding up, or slowing down the sequencing by changing the sleep times.
If you have programming experience, make a single LED sequence back and forth.
An interesting thing about Linux is there are often many ways
to do the same thing. For example, I can think of at least five ways to blink
an LED. Here’s another way using the gpiod system.
Here we asked how the LEDs are attached to the General Purpose
IO (gpio) system. The answer is, (yours will be different for a
different Beagle)
there are four interface chips and the LEDs are attached to
chip 1. You can control the gpios (and thus the LEDs) using
the gpioset command.
Some Beagles have a USR button that can be used to control the LEDs.
You can test the USR button with evtest
bone:~$ sudoaptinstallevtest
bone:~$ evtest
No device specified, trying to scan all of /dev/input/event*Not running as root, no devices may be available.Available devices:/dev/input/event0: tps65219-pwrbutton/dev/input/event1: gpio-keysSelect the device event number [0-1]: 1
We want to use gpio-keys, so enter 1. Press and release
the USR button and you’ll see:
Input driver version is 1.0.1Input device ID: bus 0x19 vendor 0x1 product 0x1 version 0x100Input device name: "gpio-keys"Supported events:Event type 0 (EV_SYN)Event type 1 (EV_KEY) Event code 256 (BTN_0)Key repeat handling:Repeat type 20 (EV_REP) Repeat code 0 (REP_DELAY) Value 250 Repeat code 1 (REP_PERIOD) Value 33Properties:Testing ... (interrupt to exit)Event: time 1692994988.305846, type 1 (EV_KEY), code 256 (BTN_0), value 1Event: time 1692994988.305846, -------------- SYN_REPORT ------------Event: time 1692994988.561786, type 1 (EV_KEY), code 256 (BTN_0), value 2Event: time 1692994988.561786, -------------- SYN_REPORT ------------Event: time 1692994988.601883, type 1 (EV_KEY), code 256 (BTN_0), value 2Event: time 1692994988.601883, -------------- SYN_REPORT ------------Event: time 1692994988.641754, type 1 (EV_KEY), code 256 (BTN_0), value 2Event: time 1692994988.641754, -------------- SYN_REPORT ------------Event: time 1692994988.641754, type 1 (EV_KEY), code 256 (BTN_0), value 0Event: time 1692994988.641754, -------------- SYN_REPORT ------------Ctrl+c
The value 1 means the USR button was pressed, the 0 means it
was released. The value 2 means the button is being held.
The following script uses evtest to wait for the USR button to be
pressed and then turns on the LED.
Try modifying the code to turn on a different LED. Try blinking 2 or 3
LEDs when the button is pressed. Can you toggle an LED each time the
button is pressed?
1#!/usr/bin/env bash 2#////////////////////////////////////// 3# buttonLED.sh 4# Blinks a USR LED when USR button is pressed 5# Polls the button 6# Wiring: 7# Setup: 8# See: 9#//////////////////////////////////////1011LED="3"1213BUTTONPATH='/dev/input/by-path/platform-gpio-keys-event'14LEDPATH='/sys/class/leds/beaglebone:green:usr'1516whiletrue;do17# evtest returns 0 if not pressed and a non-0 value if pressed.18evtest--query$BUTTONPATHEV_KEYBTN_0
19echo$?>${LEDPATH}${LED}/brightness
20sleep0.1
21done