Supplement examples with new boards

This commit is contained in:
Valeriy Koval
2016-11-13 21:51:15 +02:00
parent 6e7196429e
commit f2454c07dd
15 changed files with 356 additions and 12 deletions
+2 -2
View File
@@ -29,10 +29,10 @@ How to build PlatformIO based project
> platformio run --target upload
# Build specific environment
> platformio run -e nodemcuv2
> platformio run -e quantum
# Upload firmware for the specific environment
> platformio run -e nodemcuv2 --target upload
> platformio run -e quantum --target upload
# Clean build files
> platformio run --target clean
+12 -2
View File
@@ -7,7 +7,17 @@
; Please visit documentation for the other options and examples
; http://docs.platformio.org/en/stable/projectconf.html
[env:esp32dev]
[env:nano32]
platform = espressif32
framework = arduino
board = esp32dev
board = nano32
[env:espea32]
platform = espressif32
framework = arduino
board = espea32
[env:esp320]
platform = espressif32
framework = arduino
board = esp320
+1 -1
View File
@@ -45,4 +45,4 @@ void loop()
// Wait a bit before scanning again
delay(5000);
}
}