Skip to content
This repository was archived by the owner on Jul 22, 2022. It is now read-only.

Commit 5c3dfda

Browse files
Merge pull request #2 from Azure/dawalton/bump
2 parents 3811269 + e660688 commit 5c3dfda

File tree

5 files changed

+31
-53
lines changed

5 files changed

+31
-53
lines changed

LICENSE

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
MIT License
1+
Microsoft Azure IoT SDKs
2+
Copyright (c) Microsoft Corporation
3+
All rights reserved.
4+
MIT License
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the ""Software""), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
211

3-
Copyright (c) Microsoft Corporation.
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
414

5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
11-
12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
14-
15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE
15+
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

Lines changed: 5 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,7 @@
1-
# Project
1+
#### Azure IoT Utility
22

3-
> This repo has been populated by an initial template to help get you started. Please
4-
> make sure to update the content to build a great experience for community-building.
3+
This is the location of the Arduino-specific source files for the
4+
[AzureIoTUtility Wi-Fi adapter Arduino published library](https://github.com/Azure/azure-iot-arduino-socket-esp32-wifi).
55

6-
As the maintainer of this project, please make a few updates:
7-
8-
- Improving this README.MD file to provide a great experience
9-
- Updating SUPPORT.MD with content about this project's support experience
10-
- Understanding the security reporting process in SECURITY.MD
11-
- Remove this section from the README
12-
13-
## Contributing
14-
15-
This project welcomes contributions and suggestions. Most contributions require you to agree to a
16-
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
17-
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
18-
19-
When you submit a pull request, a CLA bot will automatically determine whether you need to provide
20-
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
21-
provided by the bot. You will only need to do this once across all repos using our CLA.
22-
23-
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
24-
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
25-
contact [[email protected]](mailto:[email protected]) with any additional questions or comments.
26-
27-
## Trademarks
28-
29-
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft
30-
trademarks or logos is subject to and must follow
31-
[Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
32-
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
33-
Any use of third-party trademarks or logos are subject to those third-party's policies.
6+
Complete information for contributing to the Azure IoT Arduino libraries
7+
can be found [here](https://github.com/Azure/azure-iot-pal-arduino).

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name=AzureIoTSocket_WiFi
2-
version=1.0.1
2+
version=1.0.2
33
author=Microsoft
44
maintainer=Microsoft <[email protected]>
55
sentence=Azure IoT network adapter layer for use with Wi-Fi such as ESP32
66
paragraph=Microsoft Wi-Fi adaptation layer for connection to an IoT hub. Together with AzureIoTHub, it allows you to use your Arduino with the Azure IoT Hub. See readme.md for more details. Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.
77
category=Communication
8-
url=https://github.com/Azure/azure-iot-arduino-socket-wifi
8+
url=https://github.com/Azure/azure-iot-arduino-socket-esp32-wifi
99
architectures=samd,esp32

src/AzureIoTSocket_WiFi.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
#ifndef AZUREIOTSOCKETWIFI_H
55
#define AZUREIOTSOCKETWIFI_H
66

7-
#define AzureIoTSocketWiFiVersion "1.0.1"
7+
#define AzureIoTSocketWiFiVersion "1.0.2"
88

99
#ifdef ARDUINO_ARCH_ESP8266
1010
#include <ESP8266WiFi.h>
1111
#elif ARDUINO_ARCH_ESP32
1212
#include <WiFi.h>
13+
#elif WIO_TERMINAL
14+
#include <WiFi.h>
1315
#else
1416
#include <WiFi101.h>
1517
#endif

src/socketio_esp32wifi.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
#include "ESP8266WiFi.h"
77
#elif ARDUINO_ARCH_ESP32
88
#include "WiFi.h"
9+
#elif WIO_TERMINAL
10+
#include <WiFi.h>
911
#else
1012
#include "WiFi101.h"
1113
#endif

0 commit comments

Comments
 (0)