summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2019-03-20 11:52:24 +0000
committerdakkar <dakkar@thenautilus.net>2019-03-20 11:52:24 +0000
commite9f12e0205ea33404e74d460435acc00aed98aee (patch)
tree259f3bb511c6137eed4023880487180ab7e77ea4
parentthese pins work on the ttgo/feather (diff)
downloadthermostat-e9f12e0205ea33404e74d460435acc00aed98aee.tar.gz
thermostat-e9f12e0205ea33404e74d460435acc00aed98aee.tar.bz2
thermostat-e9f12e0205ea33404e74d460435acc00aed98aee.zip
fix serial comms
the internal IDF logging is at 115200, let's all write at the same speed
-rw-r--r--sensor/thermostat.ino2
1 files changed, 1 insertions, 1 deletions
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) {