Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 29, 2021 01:26 pm GMT

Bluetooth Low Energy (BLE) Tutorial for Beaglebone

1. Introduction

This is a simple example showcasing how to control a BleuIO dongle connected to Beaglebone Black using a python script.

When running the script, it will first ask for the com port where the dongle is connected (usually '/dev/ttyACM0'). After that, the BleuIO will start advertising. Every 8th second it will turn on one of the onboard Beaglebone Black LEDs whilst changing the BLE advertising name to indicate which LED is on.

We are using the Linux debian image: 'OMAP3/DM3730 Debian 9.5 2018-10-07 4GB SD LXQT' (https://beagleboard.org/latest-images).
Beaglebone BLE project

2. About the Code

You can get access to the project HERE
https://github.com/smart-sensor-devices-ab/beaglebone_bleuio_example

We are using the Adafruit_BBIO python library that comes with the Beaglebone to control the onboard LEDs. First we define the LEDs names and then set them as GPIO Outputs.
Then we define the advertising messages that the BleuIO will switch between.
Lets break one down:

"10:09:42:6C:65:75:49:4F:20:4C:45:44:20:30:20:4F:4E:"

"10" is the size of the advertising packet in HEX.

"09" is the flag for device name (Complete Local Name).

"42:6C:65:75:49:4F:20:4C:45:44:20:30:20:4F:4E" is the packet itself, translated from HEX to ASCII it says: "BleuIO LED 0 ON"

Afterwards the user is presented with a message to input the com port the BleuIO is connected to. If you are not using a USB Hub the port should be '/dev/ttyACM0'.

You can change the comport name in the Python script and fill in your COM port.

com_input = "/dev/ttyACM0"

The script continues into the main loop, where it will first make sure all LEDs are off and then start BLE advertising.

The loop iterates through all four LEDs. In every iteration it turns one LED on and advertise the LED name then continue to the next LED.
This will continue until the script is aborted.

import serialimport timeimport Adafruit_BBIO.GPIO as GPIOLED_USR0 = "USR0"LED_USR1 = "USR1"LED_USR2 = "USR2"LED_USR3 = "USR3"GPIO.setup(LED_USR0, GPIO.OUT)GPIO.setup(LED_USR1, GPIO.OUT)GPIO.setup(LED_USR2, GPIO.OUT)GPIO.setup(LED_USR3, GPIO.OUT)LED0_ON_ADV_MSG = "10:09:42:6C:65:75:49:4F:20:4C:45:44:20:30:20:4F:4E:"LED1_ON_ADV_MSG = "10:09:42:6C:65:75:49:4F:20:4C:45:44:20:31:20:4F:4E:"LED2_ON_ADV_MSG = "10:09:42:6C:65:75:49:4F:20:4C:45:44:20:32:20:4F:4E:"LED3_ON_ADV_MSG = "10:09:42:6C:65:75:49:4F:20:4C:45:44:20:33:20:4F:4E:"# Turn off all LEDsGPIO.output(LED_USR0, GPIO.LOW)time.sleep(0.1)GPIO.output(LED_USR1, GPIO.LOW)time.sleep(0.1)GPIO.output(LED_USR2, GPIO.LOW)time.sleep(0.1)GPIO.output(LED_USR3, GPIO.LOW)time.sleep(0.1)print("
BlueIO BeagleBone Example!

")connecting_to_dongle = 0com_input = ""start_input = 0valid_input = 0while start_input == 0: com_input = input( "Enter Com port of Dongle (default for BeagleBone: '/dev/ttyACM0'):
>>" ) print("
Comport to use: " + com_input) input_continue = input( "If your happy with your choice just press Enter to continue the script. Else type E to exit or R to redo your choice.
>>" ) if input_continue.upper() == "E": start_input = 1 elif input_continue.upper() == "": start_input = 1 elif input_continue.upper() == "R": valid_input = 0 start_input = 0if input_continue.upper() == "E": print("Exiting script...") exit()console = Nonewhile 1: try: print("Please wait...") time.sleep(0.5) console.write(str.encode("AT+DUAL")) console.write("\r".encode()) time.sleep(0.5) print("Starting Advertising...") console.write(str.encode("AT+ADVSTART")) console.write("\r".encode()) time.sleep(0.5) led_turn = 0 # Turn off all LEDs GPIO.output(LED_USR0, GPIO.LOW) time.sleep(0.1) GPIO.output(LED_USR1, GPIO.LOW) time.sleep(0.1) GPIO.output(LED_USR2, GPIO.LOW) time.sleep(0.1) GPIO.output(LED_USR3, GPIO.LOW) time.sleep(0.1) while True: if led_turn == 0: print("
Turning LED USR0 ON") console.write(str.encode("AT+ADVRESP=")) console.write(LED0_ON_ADV_MSG.encode()) console.write("\r".encode()) GPIO.output(LED_USR0, GPIO.HIGH) GPIO.output(LED_USR1, GPIO.LOW) GPIO.output(LED_USR2, GPIO.LOW) GPIO.output(LED_USR3, GPIO.LOW) led_turn = led_turn + 1 elif led_turn == 1: print("
Turning LED USR1 ON") console.write(str.encode("AT+ADVRESP=")) console.write(LED1_ON_ADV_MSG.encode()) console.write("\r".encode()) GPIO.output(LED_USR0, GPIO.LOW) GPIO.output(LED_USR1, GPIO.HIGH) GPIO.output(LED_USR2, GPIO.LOW) GPIO.output(LED_USR3, GPIO.LOW) led_turn = led_turn + 1 elif led_turn == 2: print("
Turning LED USR2 ON") console.write(str.encode("AT+ADVRESP=")) console.write(LED2_ON_ADV_MSG.encode()) console.write("\r".encode()) GPIO.output(LED_USR0, GPIO.LOW) GPIO.output(LED_USR1, GPIO.LOW) GPIO.output(LED_USR2, GPIO.HIGH) GPIO.output(LED_USR3, GPIO.LOW) led_turn = led_turn + 1 elif led_turn == 3: print("
Turning LED USR3 ON") console.write(str.encode("AT+ADVRESP=")) console.write(LED3_ON_ADV_MSG.encode()) console.write("\r".encode()) GPIO.output(LED_USR0, GPIO.LOW) GPIO.output(LED_USR1, GPIO.LOW) GPIO.output(LED_USR2, GPIO.LOW) GPIO.output(LED_USR3, GPIO.HIGH) led_turn = 0 time.sleep(8) except KeyboardInterrupt: GPIO.output(LED_USR0, GPIO.LOW) time.sleep(0.1) GPIO.output(LED_USR1, GPIO.LOW) time.sleep(0.1) GPIO.output(LED_USR2, GPIO.LOW) time.sleep(0.1) GPIO.output(LED_USR3, GPIO.LOW) time.sleep(0.1) print("Exiting script...") exit() except: print("

Dongle not connected.
") connecting_to_dongle = 0 while connecting_to_dongle == 0: try: print("Trying to connect to dongle...") console = serial.Serial( port=com_input, baudrate=57600, parity="N", stopbits=1, bytesize=8, timeout=0, ) if console.is_open.__bool__(): connecting_to_dongle = 1 print("

Connected to Dongle in port: " + com_input + ".
") except: print( "Dongle not found. Retrying connection to port: " + com_input + "..." ) time.sleep(5)

3. Using the example project

3.1 What you will need

4. How to setup project

4.1 Downloading the project from GitHub

Get access to the project HERE

https://github.com/smart-sensor-devices-ab/beaglebone_bleuio_example


Either clone the project, or download it as a zip file and unzip it, into a folder on your BeagleBone.

You can also create a new python file using the Cloud9 IDE from the BeagleBone (run by going to http://192.168.7.2:3000/).


Beaglebone Bluetooth Low Energy
Copy the code and pasting it into the newly created file.


Beaglebone Bluetooth Low Energy application

4.2 Installing pyserial

To run the script you will need to install the python library pyserial.

The easiest way of doing this is just connecting to the BeagleBone via shh (the default password is temppwd):


Beaglebone BLE application

or using the bash tab in the Cloud9 IDE and type:

 sudo pip3 install pyserial

Beaglebone BleuIO Bluetooth Low Energy

5. Running the example

Go to the folder where you have the python script file and run:

(Pyserial needs sudo-privileges to function.)

sudo python3 name_of_script.py

Original Link: https://dev.to/bleuiot/bluetooth-low-energy-ble-tutorial-for-beaglebone-45i5

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To