Skip to content

Commit c9c1a52

Browse files
authored
Merge branch 'arduino-libraries:master' into master
2 parents aa04757 + 0e7e65b commit c9c1a52

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+511
-379
lines changed

.github/workflows/check-arduino.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020

2121
- name: Arduino Lint
2222
uses: arduino/arduino-lint-action@v1

.github/workflows/compile-examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
steps:
4545
- name: Checkout
46-
uses: actions/checkout@v2
46+
uses: actions/checkout@v3
4747

4848
- name: Compile examples
4949
uses: arduino/compile-sketches@v1
@@ -61,7 +61,7 @@ jobs:
6161
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}
6262

6363
- name: Save memory usage change report as artifact
64-
uses: actions/upload-artifact@v2
64+
uses: actions/upload-artifact@v3
6565
with:
6666
if-no-files-found: error
6767
name: ${{ env.SKETCHES_REPORTS_PATH }}

.github/workflows/spell-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v3
2121

2222
# See: https://github.com/codespell-project/actions-codespell/blob/master/README.md
2323
- name: Spell check

.github/workflows/sync-labels.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
3131

3232
- name: Download JSON schema for labels configuration file
3333
id: download-schema
34-
uses: carlosperate/download-file-action@v1
34+
uses: carlosperate/download-file-action@v2
3535
with:
3636
file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/arduino-tooling-gh-label-configuration-schema.json
3737
location: ${{ runner.temp }}/label-configuration-schema
@@ -65,12 +65,12 @@ jobs:
6565

6666
steps:
6767
- name: Download
68-
uses: carlosperate/download-file-action@v1
68+
uses: carlosperate/download-file-action@v2
6969
with:
7070
file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/${{ matrix.filename }}
7171

7272
- name: Pass configuration files to next job via workflow artifact
73-
uses: actions/upload-artifact@v2
73+
uses: actions/upload-artifact@v3
7474
with:
7575
path: |
7676
*.yaml
@@ -105,10 +105,10 @@ jobs:
105105
echo "::set-output name=flag::--dry-run"
106106
107107
- name: Checkout repository
108-
uses: actions/checkout@v2
108+
uses: actions/checkout@v3
109109

110110
- name: Download configuration files artifact
111-
uses: actions/download-artifact@v2
111+
uses: actions/download-artifact@v3
112112
with:
113113
name: ${{ env.CONFIGURATIONS_ARTIFACT }}
114114
path: ${{ env.CONFIGURATIONS_FOLDER }}

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ WiFiNINA 1.7.0 - 2020.08.06
1616

1717
WiFiNINA 1.6.0 - 2020.07.13
1818

19-
* Adding API to make use of file storage/retieval capability available since nina-fw 1.5.0 (#74)
19+
* Adding API to make use of file storage/retrieval capability available since nina-fw 1.5.0 (#74)
2020
* Speed up of duration of function ServerDrv::getDataBuf (#84)
2121

2222
WiFiNINA 1.5.0 - 2019.12.30

README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ image:https://github.com/{repository-owner}/{repository-name}/actions/workflows/
88
image:https://github.com/{repository-owner}/{repository-name}/actions/workflows/compile-examples.yml/badge.svg["Compile Examples status", link="https://github.com/{repository-owner}/{repository-name}/actions/workflows/compile-examples.yml"]
99
image:https://github.com/{repository-owner}/{repository-name}/actions/workflows/spell-check.yml/badge.svg["Spell Check status", link="https://github.com/{repository-owner}/{repository-name}/actions/workflows/spell-check.yml"]
1010

11-
Enables network connection (local and Internet) with the Arduino MKR WiFi 1010, Arduino MKR VIDOR 4000 and Arduino UNO WiFi Rev.2.
11+
Enables network connection (local and Internet) with the Arduino MKR WiFi 1010, Arduino MKR VIDOR 4000 and Arduino Uno WiFi Rev.2.
1212

1313
With this library you can instantiate Servers, Clients and send/receive UDP packets through WiFi. The board can connect either to open or encrypted networks (WEP, WPA). The IP address can be assigned statically or through a DHCP. The library can also manage DNS.
1414

1515
For more information about this library please visit us at
16-
https://www.arduino.cc/en/Reference/{repository-name}
16+
https://www.arduino.cc/reference/en/libraries/wifinina/
1717

1818
== License ==
1919

0 commit comments

Comments
 (0)