Skip to content
This repository was archived by the owner on Nov 25, 2021. It is now read-only.

Commit e04fa7a

Browse files
authored
Add files via upload
1 parent 23d4820 commit e04fa7a

File tree

6 files changed

+64
-0
lines changed

6 files changed

+64
-0
lines changed

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 Khoi Hoang <khoih58@gmail.com>
4+
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.
22+

library.properties

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name=Blynk_WiFiManager
2+
version=1.0.0
3+
author=Khoi Hoang
4+
license=MIT
5+
maintainer=Khoi Hoang <khoih58@gmail.com>
6+
sentence=Simple WiFiManager for Blynk and ESP8266/ESP32 with or without SSL, configuration data saved in either SPIFFS or EEPROM
7+
paragraph=Library for configuring/auto(re)connecting ESP8266/ESP32 modules to WiFi and Blynk at runtime.
8+
category=Communication
9+
url=https://github.com/khoih-prog/Blynk_WM
10+
architectures=esp8266,esp32

src/BlynkSimpleEsp32_SSL_WM.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
/**
2+
* Blynk_WM is a library for the ESP8266/ESP32 Arduino platform (https://github.com/esp8266/Arduino) to enable easy
3+
* configuration/reconfiguration and autoconnect/autoreconnect of WiFi/Blynk
4+
* inspired by:
5+
* https://github.com/Barbayar/EasyBlynk8266
6+
* Forked from Blynk library v0.6.1 https://github.com/blynkkk/blynk-library/releases
7+
* Built by Khoi Hoang https://github.com/khoih-prog/Blynk_WM
8+
* Licensed under MIT license
9+
* Original Blynk Library author:
210
* @file BlynkSimpleEsp32_SSL.h
311
* @author Volodymyr Shymanskyy
412
* @license This project is released under the MIT License (MIT)

src/BlynkSimpleEsp32_WM.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
/**
2+
* Blynk_WM is a library for the ESP8266/ESP32 Arduino platform (https://github.com/esp8266/Arduino) to enable easy
3+
* configuration/reconfiguration and autoconnect/autoreconnect of WiFi/Blynk
4+
* inspired by:
5+
* https://github.com/Barbayar/EasyBlynk8266
6+
* Forked from Blynk library v0.6.1 https://github.com/blynkkk/blynk-library/releases
7+
* Built by Khoi Hoang https://github.com/khoih-prog/Blynk_WM
8+
* Licensed under MIT license
9+
* Original Blynk Library author:
210
* @file BlynkSimpleEsp32.h
311
* @author Volodymyr Shymanskyy
412
* @license This project is released under the MIT License (MIT)

src/BlynkSimpleEsp8266_SSL_WM.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
/**
2+
* Blynk_WM is a library for the ESP8266/ESP32 Arduino platform (https://github.com/esp8266/Arduino) to enable easy
3+
* configuration/reconfiguration and autoconnect/autoreconnect of WiFi/Blynk
4+
* inspired by:
5+
* https://github.com/Barbayar/EasyBlynk8266
6+
* Forked from Blynk library v0.6.1 https://github.com/blynkkk/blynk-library/releases
7+
* Built by Khoi Hoang https://github.com/khoih-prog/Blynk_WM
8+
* Licensed under MIT license
9+
* Original Blynk Library author:
210
* @file BlynkSimpleEsp8266_SSL.h
311
* @author Volodymyr Shymanskyy
412
* @license This project is released under the MIT License (MIT)

src/BlynkSimpleEsp8266_WM.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
/**
2+
* Blynk_WM is a library for the ESP8266/ESP32 Arduino platform (https://github.com/esp8266/Arduino) to enable easy
3+
* configuration/reconfiguration and autoconnect/autoreconnect of WiFi/Blynk
4+
* inspired by:
5+
* https://github.com/Barbayar/EasyBlynk8266
6+
* Forked from Blynk library v0.6.1 https://github.com/blynkkk/blynk-library/releases
7+
* Built by Khoi Hoang https://github.com/khoih-prog/Blynk_WM
8+
* Licensed under MIT license
9+
* Original Blynk Library author:
210
* @file BlynkSimpleEsp8266.h
311
* @author Volodymyr Shymanskyy
412
* @license This project is released under the MIT License (MIT)

0 commit comments

Comments
 (0)