Maker Portal

View Original

Bluetooth Module with Arduino (AT-09, MLT-BT05, HM-10)

“As an Amazon Associates Program member, clicking on links may result in Maker Portal receiving a small commission that helps support future projects.”

See this content in the original post

BLExAR - Arduino and iOS Bluetooth App

A range of devices use Texas Instruments’ CC2540/CC2541 system-on-chip as a tiny Bluetooth Low Energy (BLE) interface for integrating applications into the Internet of Things (IoT). The CC2541 is compatible with both the Android and iOS platforms, and can be used to talk between a smartphone and Arduino board (see my previous posts on this: here). In this tutorial, I will dive into the variations of CC2541 BLE board such as the AT-09, MLT-BT05, HM-10, JDY-08, etc. I will use either the specific module name or a blanketed “CC2541-based module” reference to refer to the BLE modules. The general process for interfacing with each module is nearly the same, however, some particularities define how each responds and functions depending on the given firmware.

I will be using the BLExAR app for iOS to communicate with the CC2541 modules. Any iOS or Android app that allows communication over BLE can be used to communicate back and forth, so have the app downloaded before continuing.


See this content in the original post

Only an Arduino board and a CC2541 BLE module will be needed to follow along with this tutorial. Below is a list of parts that can be purchased and where to find them, along with a few peripheral components that will be used.

  • CC2541 Bluetooth Low Energy Module - $8.00 [Our Store]

  • Arduino Uno Board - $11.00 [Our Store]

  • Mini Breadboard - $ 3.00 [Our Store]

  • Jumper Wires - $5.99 (120 pcs) [Amazon]

  • 3.7V 720 mAh LiPo Battery - $11.97 (5 pcs) [Amazon]

  • LEDs - $10.99 (600 pcs) [Amazon]

  • Resistor Kit - $12.99 (1280 pcs) [Amazon]

  • Raspberry Pi 4 Kit - $99.99 [Amazon]

See this content in the original post

The CC2541 module can communicate with an Arduino board adhering to the following wiring diagram:

Next, we will explore the functions available to a given CC2541 BLE module to change settings such as device name, sleep state, and device characteristic ID.


See this content in the original post

Several datasheets exist for the various modules based on the CC2541 Bluetooth chip. A few of them are listed below with links:

Each of the datasheets outlines the electrical characteristics and firmware breakdown for each module. Every CC254x module that is mentioned above uses the ‘AT-Command’ protocol to interface with and alter different parameters specific to each module. For example, we can change the name that is displayed on a smartphone during a BLE scan by sending the following command to the CC254x module:

“AT+NAMEBLExAR”

To view all of the possible commands, the command “AT+HELP” should be used, which prints out the following list of possible commands and settings:

The code to replicate this particular printout, with the AT-09 or MLT-BT05, is given below.

See this content in the original post

The help menu printout is very helpful because it tells us which commands do what. If we wanted to know the Bluetooth address of our module such that we can search directly for our unique device, we can tell the BLE module to print out the device address using:

“AT+LADDR”

And we should see a printout similar to:

“LADDR=16:D7:3C:9B:A3:CA”

This is the 24-bit (six hex digits) address of the BLE module. In the next section, I outline the various methods for communicating with the CC254x to read and configure various parameters of the Bluetooth low energy modules.


See this content in the original post

There are a few changes that can be made with respect to the CC254x modules used here. We can change the name of the module, for example, I choose to name mine after the app being used via the AT command: “AT+NAMEBLExAR” - which was mentioned above. We can also get the Bluetooth address using the command mentioned above, “AT+LADDR” - and we can configure a range of other commands using similar protocols.

The code below carries out the following sequence of commands:

  1. Print all AT+ Commands

  2. Rename BLE module to ‘BLExAR’

  3. Print the BLE address

  4. Print the BLE UUID used for communication

  5. Print the firmware version of the device

  6. Reset the Bluetooth module to enact any changes

It is important that the BLE module is NOT connected yet. The AT+ commands can only be carried out if there is no connection yet.

See this content in the original post

An example printout from the code above is shown below as well:

In the next section, the BLExAR app will be used to connect to the CC254x module to send messages back and forth from smartphone to Arduino board.


See this content in the original post

The framework for communication between the Arduino board and smartphone is based on the methods shown above, particularly with the CC254x and the BLExAR smartphone app.

The following code should be uploaded to the Arduino board:

See this content in the original post

Once the code is uploaded, the BLExAR app should be downloaded and opened. The menu will look similar to the one shown below:

Once the smartphone and CC254x module are connected over Bluetooth, the main menu of the app should appear. Select the “Console” tab at the bottom of the app and click the area titled “Send Message.” Enter a message and click “return” to send the message. The result should be the same message you sent with a “Msg: “ in front of it.

Now we have a connected stream between smartphone and Arduino board!

If I were to send “hello!” from the message board, we would get the following in the console window:


See this content in the original post

This tutorial acts as an introduction to Bluetooth Low Energy as an interface between Arduino and a smartphone. The CC254x modules are widely used and inexpensive, which makes them great for applications in wireless communication on the maker level with Arduino. In this tutorial, I explained how to use Arduino to communicate and learn about the CC254x chip and work with the firmware on an MLT-BT05 module. The MLT-BT05 was controlled first using AT+ commands and then using the SoftwareSerial() library on Arduino. We can alter properties of the BLE module such as its name, characteristic ID, and sleep state; while also being able to read its firmware version, name, and Bluetooth address - all of which can help the user personalize and understand a given module that much more. Lastly, the BLExAR app was used to communicate between the Arduino board and a smartphone, where advanced applications can begin to form using the basics outlined in this tutorial. In other BLExAR tutorials, applications in control, data acquisition, and communication have been investigated (click here to explore BLExAR projects). In upcoming tutorials, other projects will be explored using the BLExAR app and CC254x modules.

See More in BLExAR and Bluetooth:

See this content in the original post