Skip to content

Commit

Permalink
update compile-examples
Browse files Browse the repository at this point in the history
  • Loading branch information
sverreknutsen committed Sep 8, 2023
1 parent 62aff5c commit 1971262
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/compile-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ jobs:
libraries: |
- name: Arduino_DebugUtils
sketch-paths: |
- examples/OTA
- examples/OTA_Arduino_Server
- examples/OTA_GitHub_Server
- examples/LOLIN_32_Blink
- board:
type: arduino_esp32
Expand All @@ -58,7 +59,8 @@ jobs:
libraries: |
- name: Arduino_DebugUtils
sketch-paths: |
- examples/OTA
- examples/OTA_Arduino_Server
- examples/OTA_GitHub_Server
- examples/NANO_ESP32_Blink
steps:
Expand Down
2 changes: 1 addition & 1 deletion examples/OTA_GitHub_Server/OTA_GitHub_Server.ino
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ static char const PASS[] = SECRET_PASS; /* your network password (use for WPA,
#if defined(ARDUINO_NANO_ESP32)
static char const OTA_FILE_LOCATION[] = "https://raw.githubusercontent.com/arduino-libraries/Arduino_ESP32_OTA/main/examples/NANO_ESP32_Blink/NANO_ESP32_Blink.ino.ota";
#else
static char const OTA_FILE_LOCATION[] = "https://raw.githubusercontent.com/arduino-libraries/Arduino_ESP32_OTA/main/examples/LOLIN_32_Blink/LOLIN_32_Blink.ino.ota"
static char const OTA_FILE_LOCATION[] = "https://raw.githubusercontent.com/arduino-libraries/Arduino_ESP32_OTA/main/examples/LOLIN_32_Blink/LOLIN_32_Blink.ino.ota";
#endif

/******************************************************************************
Expand Down

0 comments on commit 1971262

Please sign in to comment.