Changed baud rate from 9600 to 115200

This commit is contained in:
anschrammh 2019-05-08 10:56:14 +02:00
parent 6182ee5a59
commit 27385ccab4

View File

@ -16,7 +16,7 @@ _error(0)
//We set the gpio up
initGPIO();
//Serial.begin(9600);
Serial.begin(9600, SERIAL_8N1, SERIAL_TX_ONLY);
Serial.begin(115200, SERIAL_8N1, SERIAL_TX_ONLY);
delay(200);
//We initialize the pins for the I2C communication
@ -46,7 +46,7 @@ _error(0)
//We set the gpio up
initGPIO();
//Serial.begin(9600);
Serial.begin(9600, SERIAL_8N1, SERIAL_TX_ONLY);
Serial.begin(115200, SERIAL_8N1, SERIAL_TX_ONLY);
delay(200);
//We initialize the pins for the I2C communication
Wire.begin(_pinConfig.getI2C_sda(), _pinConfig.getI2C_scl());