Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mpwh23/arduinowifi
base code for PlatformIO to connect ESP8266 to wifi
https://github.com/mpwh23/arduinowifi
esp8266 platformio platformio-arduino wifi
Last synced: 20 days ago
JSON representation
base code for PlatformIO to connect ESP8266 to wifi
- Host: GitHub
- URL: https://github.com/mpwh23/arduinowifi
- Owner: mpwh23
- Created: 2024-07-10T12:38:51.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-14T07:18:33.000Z (5 months ago)
- Last Synced: 2024-12-22T00:44:44.130Z (20 days ago)
- Topics: esp8266, platformio, platformio-arduino, wifi
- Language: C++
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
**!!! working but some documentation is missing!!!**
## TODO
* fill this file* add degugmode for println
def _print(*args):
if AM_DEBUG_OUTPUT:
line = ""
for txt in args:
line = line + " " + str(txt)
if len(args) > 0:
line += " > "
print(line + inspect.stack()[1].__getattribute__("function"))