[JDY08] Fixed incorrect variable name

This commit is contained in:
Jan Gromeš 2018-09-22 18:49:27 +02:00
parent 724de75190
commit a7578327e8

View file

@ -26,7 +26,7 @@ void loop() {
}
// read data incoming from Bluetooth and write them to Serial port
while (bluetooth.available() > 0) {
while (ble.available() > 0) {
Serial.write(ble.read());
}
}