Add ESP8266 settings to PIO and add default Arduino main
This commit is contained in:
parent
5a9a140710
commit
7e41b5a97e
2 changed files with 11 additions and 0 deletions
|
@ -7,3 +7,11 @@
|
||||||
;
|
;
|
||||||
; Please visit documentation for the other options and examples
|
; Please visit documentation for the other options and examples
|
||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
|
[env]
|
||||||
|
platform = espressif8266
|
||||||
|
board = esp8285
|
||||||
|
framework = arduino
|
||||||
|
|
||||||
|
[env:release]
|
||||||
|
build_flags = -D RELEASE
|
||||||
|
|
3
src/main.c
Normal file
3
src/main.c
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
void setup() {}
|
||||||
|
|
||||||
|
void loop() {}
|
Loading…
Reference in a new issue