├── LICENSE ├── README.md ├── examples ├── Advanced │ ├── AdvancedChatServer │ │ └── AdvancedChatServer.ino │ ├── ConfigurationAP │ │ └── ConfigurationAP.ino │ ├── DeepSleepAndHwReset │ │ └── DeepSleepAndHwReset.ino │ ├── HelloServer │ │ └── HelloServer.ino │ ├── SDWebServer │ │ └── SDWebServer.ino │ ├── TelnetConsole │ │ └── TelnetConsole.ino │ ├── TemporaryWiFiConnect │ │ ├── TemporaryWiFiConnect.ino │ │ └── arduino_secrets.h │ ├── WebServerSSL │ │ └── WebServerSSL.ino │ └── WiFiEspAT2UDP │ │ └── WiFiEspAT2UDP.ino ├── Basic │ ├── ScanNetworksAdvanced │ │ └── ScanNetworksAdvanced.ino │ ├── UdpSendReceiveString │ │ └── UdpSendReceiveString.ino │ ├── UdpSender │ │ └── UdpSender.ino │ ├── WebClient │ │ └── WebClient.ino │ ├── WebServer │ │ └── WebServer.ino │ └── WiFiSSLClient │ │ └── WiFiSSLClient.ino ├── Special │ ├── PagerServer │ │ └── PagerServer.ino │ ├── SNTPTime │ │ └── SNTPTime.ino │ └── WiFiEspAtBlynk │ │ └── WiFiEspAtBlynk.ino └── Tools │ ├── ChangeATBaudRate │ └── ChangeATBaudRate.ino │ ├── CheckFirmware │ └── CheckFirmware.ino │ ├── PrintPersistentSettings │ └── PrintPersistentSettings.ino │ ├── SerialPassthrough │ └── SerialPassthrough.ino │ ├── SetupPersistentAP │ ├── SetupPersistentAP.ino │ └── arduino_secrets.h │ └── SetupPersistentWiFiConnection │ ├── SetupPersistentWiFiConnection.ino │ └── arduino_secrets.h ├── library.properties ├── mkrzero-esp-01s.jpg └── src ├── WiFi.cpp ├── WiFi.h ├── WiFiClient.cpp ├── WiFiClient.h ├── WiFiEspAT.h ├── WiFiEspAtBuffManager.cpp ├── WiFiEspAtBuffManager.h ├── WiFiEspAtBuffStream.cpp ├── WiFiEspAtBuffStream.h ├── WiFiEspAtConfig.h ├── WiFiEspAtSharedBuffStreamPtr.h ├── WiFiSSLClient.cpp ├── WiFiSSLClient.h ├── WiFiServer.cpp ├── WiFiServer.h ├── WiFiUdp.cpp ├── WiFiUdp.h └── utility ├── EspAtDrv.cpp ├── EspAtDrv.h ├── EspAtDrvLogging.cpp ├── EspAtDrvLogging.h └── EspAtDrvTypes.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/README.md -------------------------------------------------------------------------------- /examples/Advanced/AdvancedChatServer/AdvancedChatServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Advanced/AdvancedChatServer/AdvancedChatServer.ino -------------------------------------------------------------------------------- /examples/Advanced/ConfigurationAP/ConfigurationAP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Advanced/ConfigurationAP/ConfigurationAP.ino -------------------------------------------------------------------------------- /examples/Advanced/DeepSleepAndHwReset/DeepSleepAndHwReset.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Advanced/DeepSleepAndHwReset/DeepSleepAndHwReset.ino -------------------------------------------------------------------------------- /examples/Advanced/HelloServer/HelloServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Advanced/HelloServer/HelloServer.ino -------------------------------------------------------------------------------- /examples/Advanced/SDWebServer/SDWebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Advanced/SDWebServer/SDWebServer.ino -------------------------------------------------------------------------------- /examples/Advanced/TelnetConsole/TelnetConsole.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Advanced/TelnetConsole/TelnetConsole.ino -------------------------------------------------------------------------------- /examples/Advanced/TemporaryWiFiConnect/TemporaryWiFiConnect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Advanced/TemporaryWiFiConnect/TemporaryWiFiConnect.ino -------------------------------------------------------------------------------- /examples/Advanced/TemporaryWiFiConnect/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Advanced/TemporaryWiFiConnect/arduino_secrets.h -------------------------------------------------------------------------------- /examples/Advanced/WebServerSSL/WebServerSSL.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Advanced/WebServerSSL/WebServerSSL.ino -------------------------------------------------------------------------------- /examples/Advanced/WiFiEspAT2UDP/WiFiEspAT2UDP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Advanced/WiFiEspAT2UDP/WiFiEspAT2UDP.ino -------------------------------------------------------------------------------- /examples/Basic/ScanNetworksAdvanced/ScanNetworksAdvanced.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Basic/ScanNetworksAdvanced/ScanNetworksAdvanced.ino -------------------------------------------------------------------------------- /examples/Basic/UdpSendReceiveString/UdpSendReceiveString.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Basic/UdpSendReceiveString/UdpSendReceiveString.ino -------------------------------------------------------------------------------- /examples/Basic/UdpSender/UdpSender.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Basic/UdpSender/UdpSender.ino -------------------------------------------------------------------------------- /examples/Basic/WebClient/WebClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Basic/WebClient/WebClient.ino -------------------------------------------------------------------------------- /examples/Basic/WebServer/WebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Basic/WebServer/WebServer.ino -------------------------------------------------------------------------------- /examples/Basic/WiFiSSLClient/WiFiSSLClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Basic/WiFiSSLClient/WiFiSSLClient.ino -------------------------------------------------------------------------------- /examples/Special/PagerServer/PagerServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Special/PagerServer/PagerServer.ino -------------------------------------------------------------------------------- /examples/Special/SNTPTime/SNTPTime.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Special/SNTPTime/SNTPTime.ino -------------------------------------------------------------------------------- /examples/Special/WiFiEspAtBlynk/WiFiEspAtBlynk.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Special/WiFiEspAtBlynk/WiFiEspAtBlynk.ino -------------------------------------------------------------------------------- /examples/Tools/ChangeATBaudRate/ChangeATBaudRate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Tools/ChangeATBaudRate/ChangeATBaudRate.ino -------------------------------------------------------------------------------- /examples/Tools/CheckFirmware/CheckFirmware.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Tools/CheckFirmware/CheckFirmware.ino -------------------------------------------------------------------------------- /examples/Tools/PrintPersistentSettings/PrintPersistentSettings.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Tools/PrintPersistentSettings/PrintPersistentSettings.ino -------------------------------------------------------------------------------- /examples/Tools/SerialPassthrough/SerialPassthrough.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Tools/SerialPassthrough/SerialPassthrough.ino -------------------------------------------------------------------------------- /examples/Tools/SetupPersistentAP/SetupPersistentAP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Tools/SetupPersistentAP/SetupPersistentAP.ino -------------------------------------------------------------------------------- /examples/Tools/SetupPersistentAP/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Tools/SetupPersistentAP/arduino_secrets.h -------------------------------------------------------------------------------- /examples/Tools/SetupPersistentWiFiConnection/SetupPersistentWiFiConnection.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Tools/SetupPersistentWiFiConnection/SetupPersistentWiFiConnection.ino -------------------------------------------------------------------------------- /examples/Tools/SetupPersistentWiFiConnection/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/examples/Tools/SetupPersistentWiFiConnection/arduino_secrets.h -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/library.properties -------------------------------------------------------------------------------- /mkrzero-esp-01s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/mkrzero-esp-01s.jpg -------------------------------------------------------------------------------- /src/WiFi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/WiFi.cpp -------------------------------------------------------------------------------- /src/WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/WiFi.h -------------------------------------------------------------------------------- /src/WiFiClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/WiFiClient.cpp -------------------------------------------------------------------------------- /src/WiFiClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/WiFiClient.h -------------------------------------------------------------------------------- /src/WiFiEspAT.h: -------------------------------------------------------------------------------- 1 | #include "WiFi.h" 2 | -------------------------------------------------------------------------------- /src/WiFiEspAtBuffManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/WiFiEspAtBuffManager.cpp -------------------------------------------------------------------------------- /src/WiFiEspAtBuffManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/WiFiEspAtBuffManager.h -------------------------------------------------------------------------------- /src/WiFiEspAtBuffStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/WiFiEspAtBuffStream.cpp -------------------------------------------------------------------------------- /src/WiFiEspAtBuffStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/WiFiEspAtBuffStream.h -------------------------------------------------------------------------------- /src/WiFiEspAtConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/WiFiEspAtConfig.h -------------------------------------------------------------------------------- /src/WiFiEspAtSharedBuffStreamPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/WiFiEspAtSharedBuffStreamPtr.h -------------------------------------------------------------------------------- /src/WiFiSSLClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/WiFiSSLClient.cpp -------------------------------------------------------------------------------- /src/WiFiSSLClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/WiFiSSLClient.h -------------------------------------------------------------------------------- /src/WiFiServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/WiFiServer.cpp -------------------------------------------------------------------------------- /src/WiFiServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/WiFiServer.h -------------------------------------------------------------------------------- /src/WiFiUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/WiFiUdp.cpp -------------------------------------------------------------------------------- /src/WiFiUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/WiFiUdp.h -------------------------------------------------------------------------------- /src/utility/EspAtDrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/utility/EspAtDrv.cpp -------------------------------------------------------------------------------- /src/utility/EspAtDrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/utility/EspAtDrv.h -------------------------------------------------------------------------------- /src/utility/EspAtDrvLogging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/utility/EspAtDrvLogging.cpp -------------------------------------------------------------------------------- /src/utility/EspAtDrvLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/utility/EspAtDrvLogging.h -------------------------------------------------------------------------------- /src/utility/EspAtDrvTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JAndrassy/WiFiEspAT/HEAD/src/utility/EspAtDrvTypes.h --------------------------------------------------------------------------------