Skip to content

Instantly share code, notes, and snippets.

@samilkorkmaz
Last active October 18, 2021 14:17
Show Gist options
  • Save samilkorkmaz/9ade5b137253f535c07153b084d7c8b2 to your computer and use it in GitHub Desktop.
Save samilkorkmaz/9ade5b137253f535c07153b084d7c8b2 to your computer and use it in GitHub Desktop.
Bluetooh test with HC-05/06 and Arduino Bluetooth RC Car app
// Bluetooh test with HC-05/06 and Arduino Bluetooth RC Car app. https://play.google.com/store/apps/details?id=braulio.calle.bluetoothRCcontroller&hl=en
void setup() {
Serial.begin(9600);
}
void loop() {
if(Serial.available() > 0) {
char val = Serial.read();
Serial.println(val);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment