Skip to content

Commit 714df56

Browse files
authored
Merge pull request #187 from luigigubello/selfprovisioning_example
Adding self provisioning example
2 parents ba87d72 + 9471051 commit 714df56

File tree

6 files changed

+1693
-7
lines changed

6 files changed

+1693
-7
lines changed

.github/workflows/compile-examples.yml

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535

3636
matrix:
3737
board: [
38-
{"fqbn": "arduino:samd:mkr1000", "type": "wifi"},
39-
{"fqbn": "arduino:samd:mkrwifi1010", "type": "wifi"},
40-
{"fqbn": "arduino:samd:nano_33_iot", "type": "wifi"},
38+
{"fqbn": "arduino:samd:mkr1000", "type": "mkr1000"},
39+
{"fqbn": "arduino:samd:mkrwifi1010", "type": "nina"},
40+
{"fqbn": "arduino:samd:nano_33_iot", "type": "nina"},
4141
{"fqbn": "arduino:samd:mkrwan1300", "type": "wan"},
4242
{"fqbn": "arduino:samd:mkrgsm1400", "type": "gsm"},
4343
{"fqbn": "arduino:samd:mkrnb1500", "type": "nb"},
@@ -48,19 +48,30 @@ jobs:
4848

4949
# make board type-specific customizations to the matrix jobs
5050
include:
51-
# WiFi boards
51+
# MKR 1000
5252
- board:
53-
type: "wifi"
53+
type: "mkr1000"
5454
platforms: |
5555
# Install Arduino SAMD Boards via Boards Manager for the toolchain
5656
- name: arduino:samd
5757
libraries: |
5858
- name: ArduinoECCX08
5959
- name: RTCZero
6060
- name: WiFi101
61-
- source-url: https://github.com/arduino-libraries/WiFiNINA.git
62-
- name: Arduino_MKRMEM
6361
sketch-paths: '"examples/utility/Provisioning"'
62+
# MKR WiFi 1010, Nano 33 IoT
63+
- board:
64+
type: "nina"
65+
platforms: |
66+
# Install Arduino SAMD Boards via Boards Manager for the toolchain
67+
- name: arduino:samd
68+
libraries: |
69+
- name: ArduinoECCX08
70+
- name: RTCZero
71+
- source-url: https://github.com/arduino-libraries/WiFiNINA.git
72+
- name: Arduino_JSON
73+
- name: ArduinoBearSSL
74+
sketch-paths: '"examples/utility/Provisioning" "examples/utility/SelfProvisioning"'
6475
# LoRaWAN boards
6576
- board:
6677
type: "wan"

0 commit comments

Comments
 (0)