├── .gitignore ├── IDE_32.png ├── IDE_8266.png ├── LICENSE ├── README.md ├── _icon.pdf ├── examples └── CRM-UI_v3 │ └── CRM-UI_v3.ino ├── keywords.txt ├── libraries ├── ArduinoJson.rar ├── AsyncTCP.rar ├── ESPAsyncTCP.rar └── ESPAsyncWebServer.rar ├── library.properties ├── scr1.png ├── scr2.png ├── scr3.png ├── scr4.png ├── scr5.png └── src ├── CRMui3.cpp ├── CRMui3.h ├── config.cpp ├── defines.h ├── gpio.cpp ├── ui.cpp ├── web ├── chart.js.h ├── favicon.ico.h ├── font.woff2.h ├── fonticon.woff2.h ├── gauge.js.h ├── icon-192x192.png.h ├── index.html.h ├── notif.css.h ├── notif.js.h ├── script.js.h └── style.css.h └── wi-fi.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | .ino 2 | .pio 3 | .vscode 4 | -------------------------------------------------------------------------------- /IDE_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/IDE_32.png -------------------------------------------------------------------------------- /IDE_8266.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/IDE_8266.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/README.md -------------------------------------------------------------------------------- /_icon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/_icon.pdf -------------------------------------------------------------------------------- /examples/CRM-UI_v3/CRM-UI_v3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/examples/CRM-UI_v3/CRM-UI_v3.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/keywords.txt -------------------------------------------------------------------------------- /libraries/ArduinoJson.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/libraries/ArduinoJson.rar -------------------------------------------------------------------------------- /libraries/AsyncTCP.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/libraries/AsyncTCP.rar -------------------------------------------------------------------------------- /libraries/ESPAsyncTCP.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/libraries/ESPAsyncTCP.rar -------------------------------------------------------------------------------- /libraries/ESPAsyncWebServer.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/libraries/ESPAsyncWebServer.rar -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/library.properties -------------------------------------------------------------------------------- /scr1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/scr1.png -------------------------------------------------------------------------------- /scr2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/scr2.png -------------------------------------------------------------------------------- /scr3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/scr3.png -------------------------------------------------------------------------------- /scr4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/scr4.png -------------------------------------------------------------------------------- /scr5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/scr5.png -------------------------------------------------------------------------------- /src/CRMui3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/CRMui3.cpp -------------------------------------------------------------------------------- /src/CRMui3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/CRMui3.h -------------------------------------------------------------------------------- /src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/config.cpp -------------------------------------------------------------------------------- /src/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/defines.h -------------------------------------------------------------------------------- /src/gpio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/gpio.cpp -------------------------------------------------------------------------------- /src/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/ui.cpp -------------------------------------------------------------------------------- /src/web/chart.js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/web/chart.js.h -------------------------------------------------------------------------------- /src/web/favicon.ico.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/web/favicon.ico.h -------------------------------------------------------------------------------- /src/web/font.woff2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/web/font.woff2.h -------------------------------------------------------------------------------- /src/web/fonticon.woff2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/web/fonticon.woff2.h -------------------------------------------------------------------------------- /src/web/gauge.js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/web/gauge.js.h -------------------------------------------------------------------------------- /src/web/icon-192x192.png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/web/icon-192x192.png.h -------------------------------------------------------------------------------- /src/web/index.html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/web/index.html.h -------------------------------------------------------------------------------- /src/web/notif.css.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/web/notif.css.h -------------------------------------------------------------------------------- /src/web/notif.js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/web/notif.js.h -------------------------------------------------------------------------------- /src/web/script.js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/web/script.js.h -------------------------------------------------------------------------------- /src/web/style.css.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/web/style.css.h -------------------------------------------------------------------------------- /src/wi-fi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WonderCRM/CRMui3/HEAD/src/wi-fi.cpp --------------------------------------------------------------------------------