renamed source code and completed iris kit auth procedure
This commit is contained in:
12
lib/WifiManager/.github/CONTRIBUTING.md
vendored
12
lib/WifiManager/.github/CONTRIBUTING.md
vendored
@@ -1,12 +0,0 @@
|
||||
## Contributing PRs and ISSUES
|
||||
|
||||
The development branch is the active branch, no features or bugs will be fixed against master ( hotfixes may be considered ).
|
||||
|
||||
Please test against development branch before submitting issues, issues against master will be closed,
|
||||
|
||||
PRs against master may be kept open if provides something useful to other members.
|
||||
|
||||
Please open issues before sumbitting PRs against development, as commits might be occuring very frequently.
|
||||
|
||||
### Documentation is in progress
|
||||
https://github.com/tzapu/WiFiManager/issues/500
|
||||
57
lib/WifiManager/.github/ISSUE_TEMPLATE.md
vendored
57
lib/WifiManager/.github/ISSUE_TEMPLATE.md
vendored
@@ -1,57 +0,0 @@
|
||||
## PLEASE TRY DEVELOPMENT BRANCH before submitting bugs on release or master, in case they were already fixed. ##
|
||||
|
||||
Issues without basic info will be ignored or closed!
|
||||
|
||||
Please fill the info fields, it helps to get you faster support ;)
|
||||
|
||||
if you have a stack dump decode it:
|
||||
https://github.com/esp8266/Arduino/blob/master/doc/Troubleshooting/stack_dump.rst
|
||||
|
||||
for better debug messages:
|
||||
https://github.com/esp8266/Arduino/blob/master/doc/Troubleshooting/debugging.rst
|
||||
|
||||
----------------------------- Remove above -----------------------------
|
||||
|
||||
### Basic Infos
|
||||
|
||||
#### Hardware
|
||||
WiFimanager Branch/Release: Master
|
||||
|
||||
Esp8266/Esp32:
|
||||
|
||||
Hardware: ESP-12e, esp01, esp25
|
||||
|
||||
Core Version: 2.4.0, staging
|
||||
|
||||
### Description
|
||||
|
||||
Problem description
|
||||
|
||||
### Settings in IDE
|
||||
|
||||
Module: NodeMcu, Wemos D1
|
||||
|
||||
Additional libraries:
|
||||
|
||||
### Sketch
|
||||
|
||||
```cpp
|
||||
#BEGIN
|
||||
#include <Arduino.h>
|
||||
|
||||
void setup() {
|
||||
|
||||
}
|
||||
|
||||
void loop() {
|
||||
|
||||
}
|
||||
#END
|
||||
```
|
||||
|
||||
### Debug Messages
|
||||
|
||||
```
|
||||
messages here
|
||||
```
|
||||
|
||||
@@ -1,118 +0,0 @@
|
||||
name: Compile examples
|
||||
|
||||
on:
|
||||
push:
|
||||
paths-ignore:
|
||||
- '.github/workflows/cpp_lint.yml'
|
||||
- '.github/workflows/compile_library.yml'
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- '.github/workflows/cpp_lint.yml'
|
||||
- '.github/workflows/compile_library.yml'
|
||||
|
||||
jobs:
|
||||
esp8266:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
example:
|
||||
- "examples/Parameters/SPIFFS/AutoConnectWithFSParametersAndCustomIP/AutoConnectWithFSParametersAndCustomIP.ino"
|
||||
- "examples/Parameters/SPIFFS/AutoConnectWithFSParameters/AutoConnectWithFSParameters.ino"
|
||||
- "examples/NonBlocking/OnDemandNonBlocking/onDemandNonBlocking.ino"
|
||||
- "examples/NonBlocking/AutoConnectNonBlockingwParams/AutoConnectNonBlockingwParams.ino"
|
||||
- "examples/NonBlocking/AutoConnectNonBlocking/AutoConnectNonBlocking.ino"
|
||||
- "examples/Basic/Basic.ino"
|
||||
- "examples/Super/OnDemandConfigPortal/OnDemandConfigPortal.ino"
|
||||
- "examples/Advanced/Advanced.ino"
|
||||
- "examples/Old_examples/AutoConnectWithStaticIP/AutoConnectWithStaticIP.ino"
|
||||
- "examples/Old_examples/AutoConnectWithFeedback/AutoConnectWithFeedback.ino"
|
||||
- "examples/Old_examples/AutoConnectWithReset/AutoConnectWithReset.ino"
|
||||
- "examples/Old_examples/AutoConnectWithTimeout/AutoConnectWithTimeout.ino"
|
||||
- "examples/ParamsChildClass/ParamsChildClass.ino"
|
||||
- "examples/OnDemand/OnDemandConfigPortal/OnDemandConfigPortal.ino"
|
||||
- "examples/OnDemand/OnDemandWebPortal/onDemandWebPortal.ino"
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Cache pip
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/.cache/pip
|
||||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
||||
restore-keys: ${{ runner.os }}-pip-
|
||||
- name: Cache PlatformIO
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/.platformio
|
||||
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
- name: Install PlatformIO
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install --upgrade platformio
|
||||
- name: Install 3rd party dependecies
|
||||
run: |
|
||||
pio lib -g install \
|
||||
https://github.com/tzapu/WiFiManager \
|
||||
https://github.com/bblanchon/ArduinoJson \
|
||||
https://github.com/knolleary/pubsubclient
|
||||
|
||||
- name: Run PlatformIO Examples
|
||||
run: pio ci --board=nodemcuv2
|
||||
env:
|
||||
PLATFORMIO_CI_SRC: ${{ matrix.example }}
|
||||
|
||||
esp32:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
example:
|
||||
- "examples/Parameters/SPIFFS/AutoConnectWithFSParametersAndCustomIP/AutoConnectWithFSParametersAndCustomIP.ino"
|
||||
- "examples/Parameters/SPIFFS/AutoConnectWithFSParameters/AutoConnectWithFSParameters.ino"
|
||||
- "examples/NonBlocking/OnDemandNonBlocking/onDemandNonBlocking.ino"
|
||||
- "examples/NonBlocking/AutoConnectNonBlockingwParams/AutoConnectNonBlockingwParams.ino"
|
||||
- "examples/NonBlocking/AutoConnectNonBlocking/AutoConnectNonBlocking.ino"
|
||||
- "examples/Basic/Basic.ino"
|
||||
- "examples/Super/OnDemandConfigPortal/OnDemandConfigPortal.ino"
|
||||
- "examples/Advanced/Advanced.ino"
|
||||
- "examples/Old_examples/AutoConnectWithStaticIP/AutoConnectWithStaticIP.ino"
|
||||
- "examples/Old_examples/AutoConnectWithFeedback/AutoConnectWithFeedback.ino"
|
||||
- "examples/Old_examples/AutoConnectWithReset/AutoConnectWithReset.ino"
|
||||
- "examples/Old_examples/AutoConnectWithTimeout/AutoConnectWithTimeout.ino"
|
||||
- "examples/ParamsChildClass/ParamsChildClass.ino"
|
||||
- "examples/OnDemand/OnDemandConfigPortal/OnDemandConfigPortal.ino"
|
||||
- "examples/OnDemand/OnDemandWebPortal/onDemandWebPortal.ino"
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Cache pip
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/.cache/pip
|
||||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
||||
restore-keys: ${{ runner.os }}-pip-
|
||||
- name: Cache PlatformIO
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/.platformio
|
||||
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
- name: Install PlatformIO
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install --upgrade platformio
|
||||
- name: Install 3rd party dependecies
|
||||
run: |
|
||||
pio lib -g install \
|
||||
https://github.com/tzapu/WiFiManager \
|
||||
https://github.com/bblanchon/ArduinoJson \
|
||||
https://github.com/knolleary/pubsubclient
|
||||
|
||||
- name: Run PlatformIO Examples
|
||||
run: pio ci --board=esp32dev
|
||||
env:
|
||||
PLATFORMIO_CI_SRC: ${{ matrix.example }}
|
||||
@@ -1,53 +0,0 @@
|
||||
name: Compile Library
|
||||
|
||||
on:
|
||||
push:
|
||||
paths-ignore:
|
||||
- '.github/workflows/cpp_lint.yml'
|
||||
- '.github/workflows/compile_examples.yml'
|
||||
- 'examples/**'
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- '.github/workflows/cpp_lint.yml'
|
||||
- '.github/workflows/compile_examples.yml'
|
||||
- 'examples/**'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
board:
|
||||
- "nodemcuv2"
|
||||
- "lolin32"
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Cache pip
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/.cache/pip
|
||||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
||||
restore-keys: ${{ runner.os }}-pip-
|
||||
- name: Cache PlatformIO
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/.platformio
|
||||
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
- name: Install PlatformIO
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install --upgrade platformio
|
||||
|
||||
- name: Create main file
|
||||
run: |
|
||||
echo "#include <Arduino.h>" >> main.ino
|
||||
echo "void setup() {}" >> main.ino
|
||||
echo "void loop() {}" >> main.ino
|
||||
|
||||
- name: Run PlatformIO
|
||||
run: pio ci --board=${{ matrix.board }} .
|
||||
30
lib/WifiManager/.github/workflows/cpp_lint.yml
vendored
30
lib/WifiManager/.github/workflows/cpp_lint.yml
vendored
@@ -1,30 +0,0 @@
|
||||
name: cpplint
|
||||
|
||||
on:
|
||||
push:
|
||||
paths-ignore:
|
||||
- '.github/workflows/compile_*.yml'
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- '.github/workflows/compile_*.yml'
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: cpplint
|
||||
uses: reviewdog/action-cpplint@master
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
reporter: github-pr-check
|
||||
flags: --linelength=100
|
||||
target: .
|
||||
filter: "-whitespace/tab\
|
||||
,-readability/braces\
|
||||
,-whitespace/braces\
|
||||
,-whitespace/comments\
|
||||
,-whitespace/indent\
|
||||
,-whitespace/newline\
|
||||
,-whitespace/operators\
|
||||
,-whitespace/parens\
|
||||
"
|
||||
Reference in New Issue
Block a user