You are on page 1of 3

instructables

Bluetooth Module(HC-05) With Raspberry Pi Pico.

by Manodeep

Wireless communication is swiftly replacing the wired importantly it can be operated in Master-Slave mode
connection when it comes to electronics and which means it will neither send or receive data from
communication. Designed to replace cable connections external sources.
HC-05 uses serial communication to communicate with
the electronics. Usually, it is used to connect small Supplies:
devices like mobile phones using a short-range wireless
1. HC 05 Bluetooth module.
connection to exchange les. It uses the 2.45GHz
frequency band. The transfer rate of the data can vary up
2. Raspberry Pi Pico
to 1Mbps and is in range of 10 meters.The HC-05 module
can be operated within 4-6V of power supply. It supports
3. Jumper wires
baud rate of 9600, 19200, 38400, 57600, etc. Most

Step 1: Connect HC05 Bluetooth Module With Raspberry Pi Pico As Shown in the
Diagram

Bluetooth Module(HC-05) With Raspberry Pi Pico.: Page 1


Step 2: Download Serial Bluetooth Terminal App

Link - https://play.google.com/store/apps/details?id=de.kai_morich.serial_bluetooth_terminal&hl=en_IN&gl=US

Step 3: Connect RPi to Your Pc ,save the Code As BT.py and Run It.

from machine import Pin,UART

uart = UART(0,9600)

while True:
# print('checking BT')
if uart.any():
command = uart.readline()
print(command)

Download

https://www.instructables.com/ORIG/F2Y/JPX6/KPEIZV0N/F2YJPX6KPEIZV0N.py

Step 4: Open Mobile App and Connect to the Bluetooth Module.

Bluetooth Module(HC-05) With Raspberry Pi Pico.: Page 2


Step 5: Output

Bluetooth Module(HC-05) With Raspberry Pi Pico.: Page 3

You might also like