Shubham Shinganapure
Published © CC BY-SA

BLUE_P: Wireless Arduino Programming Shield

Program Arduino boards without using traditional USB cables.

BeginnerFull instructions provided1 hour6,513
BLUE_P: Wireless Arduino Programming Shield

Things used in this project

Hardware components

HC-05 Bluetooth Module
HC-05 Bluetooth Module
×1
Arduino UNO
Arduino UNO
×1
Resistor 1k ohm
Resistor 1k ohm
×1
Resistor 2.21k ohm
Resistor 2.21k ohm
×1
Capacitor 100 nF
Capacitor 100 nF
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

blue p

Code

program 1

Arduino
#include <SoftwareSerial.h>
SoftwareSerial BTSerial(10, 11); // RX | TX
void setup()
{
pinMode(9,OUTPUT); // this pin will pull the HC-05pin 34 (key pin) HIGH to switch module to AT mode
digitalWrite(9,HIGH);
Serial.begin(9600);
Serial.println("Enter AT commands:");
BTSerial.begin(38400); // HC-05default speed in AT command more
}
void loop()
{
// Keep reading fromHC-05 and send to Arduino Serial Monitor
if(BTSerial.available())
Serial.write(BTSerial.read());
// Keep reading fromArduino Serial Monitor and send to HC-05
if(Serial.available())
BTSerial.write(Serial.read());
}

Credits

Shubham Shinganapure

Shubham Shinganapure

19 projects • 123 followers
I am an Electronics Engineer and hobbyist. Love to work with Machines.

Comments