Skip to content

Instantly share code, notes, and snippets.

@alexbonhomme
Created March 23, 2014 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexbonhomme/9723292 to your computer and use it in GitHub Desktop.
Save alexbonhomme/9723292 to your computer and use it in GitHub Desktop.
#include <SoftwareSerial.h>
SoftwareSerial BTSerial(10, 11); // RX | TX
void setup() {
pinMode(9, OUTPUT);
digitalWrite(9, HIGH);
Serial.begin(9600);
Serial.println("Enter AT commands:");
BTSerial.begin(9600);
}
void loop() {
// Keep reading from HC-06 and send to Arduino Serial Monitor
if (BTSerial.available()) {
Serial.write(BTSerial.read());
}
// Keep reading from Arduino Serial Monitor and send to HC-06
if (Serial.available()) {
BTSerial.write(Serial.read());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment