From e9f12e0205ea33404e74d460435acc00aed98aee Mon Sep 17 00:00:00 2001 From: dakkar Date: Wed, 20 Mar 2019 11:52:24 +0000 Subject: fix serial comms the internal IDF logging is at 115200, let's all write at the same speed --- sensor/thermostat.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sensor/thermostat.ino b/sensor/thermostat.ino index d2b8bce..9dbccf8 100644 --- a/sensor/thermostat.ino +++ b/sensor/thermostat.ino @@ -114,7 +114,7 @@ void setup() { esp_ble_tx_power_set(ESP_BLE_PWR_TYPE_SCAN, BLE_POWER); esp_ble_tx_power_set(ESP_BLE_PWR_TYPE_DEFAULT, BLE_POWER); enable_sensor(true); - Serial.begin(9600); + Serial.begin(115200); } void teardown_and_sleep(int next_time) { -- cgit v1.2.3