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 68
68
type : renesas_portenta
69
69
- fqbn : arduino:renesas_uno:unor4wifi
70
70
type : renesas_uno
71
+ - fqbn : arduino:esp32:nano_nora
72
+ type : arduino_esp32
71
73
72
74
73
75
# make board type-specific customizations to the matrix jobs
@@ -200,6 +202,16 @@ jobs:
200
202
platforms : |
201
203
# Install renesas_uno platform via Boards Manager
202
204
- 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
203
215
# ESP8266 boards
204
216
- board :
205
217
type : esp8266
Original file line number Diff line number Diff line change 17
17
#include " arduino_secrets.h"
18
18
#include " thingProperties.h"
19
19
20
- #if !defined(LED_BUILTIN)
20
+ #if !defined(LED_BUILTIN) && !defined(ARDUINO_NANO_ESP32)
21
21
static int const LED_BUILTIN = 2 ;
22
22
#endif
23
23
Original file line number Diff line number Diff line change 19
19
#include " arduino_secrets.h"
20
20
#include " thingProperties.h"
21
21
22
- #if defined(ESP32 )
22
+ #if ! defined(LED_BUILTIN) && !defined(ARDUINO_NANO_ESP32 )
23
23
static int const LED_BUILTIN = 2 ;
24
24
#endif
25
25
Original file line number Diff line number Diff line change 9
9
#include " arduino_secrets.h"
10
10
#include " thingProperties.h"
11
11
12
- #if defined(ESP32 )
12
+ #if ! defined(LED_BUILTIN) && !defined(ARDUINO_NANO_ESP32 )
13
13
static int const LED_BUILTIN = 2 ;
14
14
#endif
15
15
You can’t perform that action at this time.
0 commit comments