From d90ca42f0b79c77c54b5227c58f8c5acfa5be610 Mon Sep 17 00:00:00 2001 From: Hendrik Langer Date: Tue, 12 Dec 2017 19:22:49 +0100 Subject: [PATCH] switch to pio staging platform --- software/platformio.ini | 6 +++--- software/src/main.cpp | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/software/platformio.ini b/software/platformio.ini index e718b68..0f52080 100644 --- a/software/platformio.ini +++ b/software/platformio.ini @@ -8,7 +8,7 @@ ; Please visit documentation for the other options and examples ; http://docs.platformio.org/page/projectconf.html -[env:lolin32] -platform = espressif32 -board = lolin32 +[env:esp32dev] +platform = espressif32_stage +board = esp32dev framework = arduino diff --git a/software/src/main.cpp b/software/src/main.cpp index ac89522..9d4874f 100644 --- a/software/src/main.cpp +++ b/software/src/main.cpp @@ -10,6 +10,8 @@ void setup() { + Serial.begin(112500); + // initialize LED digital pin as an output. pinMode(LED_BUILTIN, OUTPUT); }