File tree Expand file tree Collapse file tree 4 files changed +15
-3
lines changed
ArduinoIoTCloud-DeferredOTA Expand file tree Collapse file tree 4 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 6868 type : renesas_portenta
6969 - fqbn : arduino:renesas_uno:unor4wifi
7070 type : renesas_uno
71+ - fqbn : arduino:esp32:nano_nora
72+ type : arduino_esp32
7173
7274
7375 # make board type-specific customizations to the matrix jobs
@@ -200,6 +202,16 @@ jobs:
200202 platforms : |
201203 # Install renesas_uno platform via Boards Manager
202204 - name: arduino:renesas_uno
205+ # Nano ESP32
206+ - board :
207+ type : arduino_esp32
208+ platforms : |
209+ # Install arduino_esp32 platform via Boards Manager
210+ - name: arduino:esp32
211+ libraries : |
212+ - name: Arduino_ESP32_OTA
213+ sketch-paths : |
214+ - examples/ArduinoIoTCloud-DeferredOTA
203215 # ESP8266 boards
204216 - board :
205217 type : esp8266
Original file line number Diff line number Diff line change 1717#include " arduino_secrets.h"
1818#include " thingProperties.h"
1919
20- #if !defined(LED_BUILTIN)
20+ #if !defined(LED_BUILTIN) && !defined(ARDUINO_NANO_ESP32)
2121static int const LED_BUILTIN = 2 ;
2222#endif
2323
Original file line number Diff line number Diff line change 1919#include " arduino_secrets.h"
2020#include " thingProperties.h"
2121
22- #if defined(ESP32 )
22+ #if ! defined(LED_BUILTIN) && !defined(ARDUINO_NANO_ESP32 )
2323static int const LED_BUILTIN = 2 ;
2424#endif
2525
Original file line number Diff line number Diff line change 99#include " arduino_secrets.h"
1010#include " thingProperties.h"
1111
12- #if defined(ESP32 )
12+ #if ! defined(LED_BUILTIN) && !defined(ARDUINO_NANO_ESP32 )
1313static int const LED_BUILTIN = 2 ;
1414#endif
1515
You can’t perform that action at this time.
0 commit comments