[JDY08] Fixed incorrect variable name

pull/13/head
Jan Gromeš 2018-09-22 18:49:27 +02:00
rodzic 724de75190
commit a7578327e8
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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());
}
}