├── .gitignore ├── LICENSE ├── README.md ├── Volna42 ├── .gitignore ├── lib │ ├── GyverBME280 │ │ ├── GyverBME280.cpp │ │ └── GyverBME280.h │ ├── KellyCanvas │ │ ├── KellyCanvas.cpp │ │ ├── KellyCanvas.h │ │ └── KellyCanvasTypes.h │ ├── KellyEInk │ │ ├── DeviceList.txt │ │ ├── KellyEInk.cpp │ │ ├── KellyEInk.h │ │ ├── KellyEInk_15_SSD1683_BW.cpp │ │ ├── KellyEInk_15_SSD1683_BW.h │ │ ├── KellyEInk_15_SSD1683_RBW.cpp │ │ ├── KellyEInk_15_SSD1683_RBW.h │ │ ├── KellyEInk_42_SSD1683_BW_2BIT.cpp │ │ ├── KellyEInk_42_SSD1683_BW_2BIT.h │ │ ├── KellyEInk_42_UC8176_BW.cpp │ │ ├── KellyEInk_42_UC8176_BW.h │ │ ├── KellyEInk_42_UC8176_RBW.cpp │ │ ├── KellyEInk_42_UC8176_RBW.h │ │ ├── KellyEInk_42_UC8176_RBW_B.cpp │ │ └── KellyEInk_42_UC8176_RBW_B.h │ ├── KellyOpenWeather │ │ ├── HTTPClient.example │ │ ├── KellyOWParserTools.cpp │ │ ├── KellyOWParserTools.h │ │ ├── KellyOpenDomoticz.cpp │ │ ├── KellyOpenDomoticz.h │ │ ├── KellyOpenHA.cpp │ │ ├── KellyOpenHA.h │ │ ├── KellyOpenMeteo.cpp │ │ ├── KellyOpenMeteo.h │ │ ├── KellyOpenWeather.cpp │ │ ├── KellyOpenWeather.h │ │ ├── KellyWeatherApi.cpp │ │ └── KellyWeatherApi.h │ └── PubSubClient │ │ ├── PubSubClient.cpp │ │ └── PubSubClient.h ├── platformio.esp32.ini ├── platformio.esp32c3.ini ├── platformio.esp32d1mini.ini ├── platformio.esp32s.wroom.ini ├── platformio.esp32s2mini.ini ├── platformio.esp32s3zero.ini ├── platformio.esp8266.ini ├── platformio.esp8266.pro.ini ├── platformio.ini └── src │ ├── Config.cpp │ ├── Config.h │ ├── Env.cpp │ ├── Env.h │ ├── EnvConfigOptions.h │ ├── EnvConfigTypes.h │ ├── EnvStructs.h │ ├── ExternalSensor.cpp │ ├── ExternalSensor.h │ ├── LocalData.h │ ├── Screen1in54UI.cpp │ ├── Screen1in54UI.h │ ├── Screen4in2UI.cpp │ ├── Screen4in2UI.h │ ├── ScreenExternData.h │ ├── SystemDefines.h │ ├── UserDefines.h │ ├── UserSettings.h │ ├── WebServerBase.cpp │ ├── WebServerBase.h │ ├── WebServerEink.cpp │ ├── WebServerEink.h │ ├── WiFiManager.cpp │ ├── WidgetController.cpp │ ├── WidgetController.h │ ├── WidgetTypes.h │ ├── WifiManager.h │ ├── esp32 │ ├── NVSMem.cpp │ └── NVSMem.h │ ├── esp8266 │ ├── deepsleepFix.cpp │ └── deepsleepFix.h │ ├── fonts │ ├── Clock54x54.h │ ├── Clock64x64.h │ ├── KellyFontC18x18.h │ ├── KellyFontC18x18JA.h │ ├── KellyFontC44x44.h │ └── KellyFontC44x44JA.h │ ├── locale │ ├── LocaleDe.h │ ├── LocaleEn.h │ ├── LocaleJa.h │ └── LocaleRu.h │ ├── main.cpp │ ├── tiles │ ├── cat_feed.h │ ├── cat_happy.h │ ├── cat_heat.h │ ├── cat_night.h │ ├── cat_rain.h │ ├── cat_vampi.h │ ├── cat_watch.h │ ├── cat_winter.h │ ├── frog_magic_hat186x141.h │ ├── frog_new_year_hat174x139.h │ ├── timages.h │ └── weather_effects.h │ └── ui │ ├── PREVIEW___MINI___client_eink_uploader.html │ └── out │ ├── KellyEnv.h │ ├── KellyEnv.js │ ├── KellyTools.h │ ├── KellyTools.js │ ├── KellyTools_list_widget.h │ ├── KellyTools_list_widget.js │ ├── KellyTools_select_widget.h │ ├── KellyTools_select_widget.js │ ├── KellyUIFileManager.h │ ├── KellyUIFileManager.js │ ├── KellyUploader.h │ ├── KellyUploader.js │ ├── KellyUploader_tools.h │ ├── KellyUploader_tools.js │ ├── client.h │ ├── client.html │ ├── client_end.h │ ├── client_end.html │ ├── client_uploader.h │ ├── client_uploader.html │ ├── env.h │ ├── env.js │ ├── init.h │ ├── init.js │ ├── initUpload.h │ ├── initUpload.js │ ├── locale_en │ ├── locale.h │ └── locale.js │ ├── locale_ru │ ├── locale.h │ └── locale.js │ ├── style.css │ ├── style.h │ ├── style_uploader.css │ └── style_uploader.h ├── _ImagesSrc ├── 128 │ ├── 2.png │ ├── 3_128.png │ ├── cat_watch.png │ ├── cat_watch1.png │ ├── cat_watch_ball.png │ ├── cat_watch_eye.png │ ├── heat128.png │ ├── rain.png │ ├── rain_128.png │ ├── rain_eff.png │ ├── rain_eff_light.png │ ├── tiles.png │ ├── tiles1.png │ ├── tiles2.png │ ├── tiles3.png │ ├── tiles36.png │ ├── tiles3_light.png │ ├── tiles4.png │ ├── tiles4_light.png │ └── tiles7.png ├── bat.png ├── bat_cels.png ├── ct.png ├── day.png ├── day_cloudy.png ├── heat.png ├── night.png ├── night_cloudy.png ├── previews │ ├── 1.png │ ├── 2.png │ ├── 3.jpg │ ├── 3.png │ ├── 5.jpg │ ├── ui1.png │ ├── ui2.png │ └── ui3.png ├── temp_block.png ├── temp_block154.png ├── temp_block154_outline.png ├── temp_meter.png ├── temp_meter154.png ├── tile_low_bat.png ├── tiles.png └── tiles_2.png └── _uiTools ├── PREVIEW___client_eink.html ├── PREVIEW___client_eink_uploader.html ├── README.md ├── htmlPack ├── Makefile ├── Makefile.bat ├── README.md ├── example.bat ├── example.sh ├── htmlpack.cpp ├── out │ └── README.md └── test.html ├── minify_einkdisplay.bat ├── minify_einkdisplay.sh ├── ui ├── KellyEnv.js ├── KellyTools.js ├── KellyTools.list.widget.js ├── KellyTools.select.widget.js ├── README.md ├── client.html ├── client_end.html └── style.css └── uiEink ├── ENV.js ├── KellyUIFileManager.js ├── KellyUploader.js ├── KellyUploader.tools.debug.js ├── KellyUploader.tools.js ├── README.md ├── client_uploader.html ├── init.js ├── initUpload.js ├── locale ├── localeEN.js └── localeRU.js └── style.uploader.css /.gitignore: -------------------------------------------------------------------------------- 1 | Docs 2 | htmlPack_bin 3 | *.exe 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/README.md -------------------------------------------------------------------------------- /Volna42/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | .vscode 3 | -------------------------------------------------------------------------------- /Volna42/lib/GyverBME280/GyverBME280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/GyverBME280/GyverBME280.cpp -------------------------------------------------------------------------------- /Volna42/lib/GyverBME280/GyverBME280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/GyverBME280/GyverBME280.h -------------------------------------------------------------------------------- /Volna42/lib/KellyCanvas/KellyCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyCanvas/KellyCanvas.cpp -------------------------------------------------------------------------------- /Volna42/lib/KellyCanvas/KellyCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyCanvas/KellyCanvas.h -------------------------------------------------------------------------------- /Volna42/lib/KellyCanvas/KellyCanvasTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyCanvas/KellyCanvasTypes.h -------------------------------------------------------------------------------- /Volna42/lib/KellyEInk/DeviceList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyEInk/DeviceList.txt -------------------------------------------------------------------------------- /Volna42/lib/KellyEInk/KellyEInk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyEInk/KellyEInk.cpp -------------------------------------------------------------------------------- /Volna42/lib/KellyEInk/KellyEInk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyEInk/KellyEInk.h -------------------------------------------------------------------------------- /Volna42/lib/KellyEInk/KellyEInk_15_SSD1683_BW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyEInk/KellyEInk_15_SSD1683_BW.cpp -------------------------------------------------------------------------------- /Volna42/lib/KellyEInk/KellyEInk_15_SSD1683_BW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyEInk/KellyEInk_15_SSD1683_BW.h -------------------------------------------------------------------------------- /Volna42/lib/KellyEInk/KellyEInk_15_SSD1683_RBW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyEInk/KellyEInk_15_SSD1683_RBW.cpp -------------------------------------------------------------------------------- /Volna42/lib/KellyEInk/KellyEInk_15_SSD1683_RBW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyEInk/KellyEInk_15_SSD1683_RBW.h -------------------------------------------------------------------------------- /Volna42/lib/KellyEInk/KellyEInk_42_SSD1683_BW_2BIT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyEInk/KellyEInk_42_SSD1683_BW_2BIT.cpp -------------------------------------------------------------------------------- /Volna42/lib/KellyEInk/KellyEInk_42_SSD1683_BW_2BIT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyEInk/KellyEInk_42_SSD1683_BW_2BIT.h -------------------------------------------------------------------------------- /Volna42/lib/KellyEInk/KellyEInk_42_UC8176_BW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyEInk/KellyEInk_42_UC8176_BW.cpp -------------------------------------------------------------------------------- /Volna42/lib/KellyEInk/KellyEInk_42_UC8176_BW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyEInk/KellyEInk_42_UC8176_BW.h -------------------------------------------------------------------------------- /Volna42/lib/KellyEInk/KellyEInk_42_UC8176_RBW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyEInk/KellyEInk_42_UC8176_RBW.cpp -------------------------------------------------------------------------------- /Volna42/lib/KellyEInk/KellyEInk_42_UC8176_RBW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyEInk/KellyEInk_42_UC8176_RBW.h -------------------------------------------------------------------------------- /Volna42/lib/KellyEInk/KellyEInk_42_UC8176_RBW_B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyEInk/KellyEInk_42_UC8176_RBW_B.cpp -------------------------------------------------------------------------------- /Volna42/lib/KellyEInk/KellyEInk_42_UC8176_RBW_B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyEInk/KellyEInk_42_UC8176_RBW_B.h -------------------------------------------------------------------------------- /Volna42/lib/KellyOpenWeather/HTTPClient.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyOpenWeather/HTTPClient.example -------------------------------------------------------------------------------- /Volna42/lib/KellyOpenWeather/KellyOWParserTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyOpenWeather/KellyOWParserTools.cpp -------------------------------------------------------------------------------- /Volna42/lib/KellyOpenWeather/KellyOWParserTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyOpenWeather/KellyOWParserTools.h -------------------------------------------------------------------------------- /Volna42/lib/KellyOpenWeather/KellyOpenDomoticz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyOpenWeather/KellyOpenDomoticz.cpp -------------------------------------------------------------------------------- /Volna42/lib/KellyOpenWeather/KellyOpenDomoticz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyOpenWeather/KellyOpenDomoticz.h -------------------------------------------------------------------------------- /Volna42/lib/KellyOpenWeather/KellyOpenHA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyOpenWeather/KellyOpenHA.cpp -------------------------------------------------------------------------------- /Volna42/lib/KellyOpenWeather/KellyOpenHA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyOpenWeather/KellyOpenHA.h -------------------------------------------------------------------------------- /Volna42/lib/KellyOpenWeather/KellyOpenMeteo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyOpenWeather/KellyOpenMeteo.cpp -------------------------------------------------------------------------------- /Volna42/lib/KellyOpenWeather/KellyOpenMeteo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyOpenWeather/KellyOpenMeteo.h -------------------------------------------------------------------------------- /Volna42/lib/KellyOpenWeather/KellyOpenWeather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyOpenWeather/KellyOpenWeather.cpp -------------------------------------------------------------------------------- /Volna42/lib/KellyOpenWeather/KellyOpenWeather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyOpenWeather/KellyOpenWeather.h -------------------------------------------------------------------------------- /Volna42/lib/KellyOpenWeather/KellyWeatherApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyOpenWeather/KellyWeatherApi.cpp -------------------------------------------------------------------------------- /Volna42/lib/KellyOpenWeather/KellyWeatherApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/KellyOpenWeather/KellyWeatherApi.h -------------------------------------------------------------------------------- /Volna42/lib/PubSubClient/PubSubClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/PubSubClient/PubSubClient.cpp -------------------------------------------------------------------------------- /Volna42/lib/PubSubClient/PubSubClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/lib/PubSubClient/PubSubClient.h -------------------------------------------------------------------------------- /Volna42/platformio.esp32.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/platformio.esp32.ini -------------------------------------------------------------------------------- /Volna42/platformio.esp32c3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/platformio.esp32c3.ini -------------------------------------------------------------------------------- /Volna42/platformio.esp32d1mini.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/platformio.esp32d1mini.ini -------------------------------------------------------------------------------- /Volna42/platformio.esp32s.wroom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/platformio.esp32s.wroom.ini -------------------------------------------------------------------------------- /Volna42/platformio.esp32s2mini.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/platformio.esp32s2mini.ini -------------------------------------------------------------------------------- /Volna42/platformio.esp32s3zero.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/platformio.esp32s3zero.ini -------------------------------------------------------------------------------- /Volna42/platformio.esp8266.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/platformio.esp8266.ini -------------------------------------------------------------------------------- /Volna42/platformio.esp8266.pro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/platformio.esp8266.pro.ini -------------------------------------------------------------------------------- /Volna42/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/platformio.ini -------------------------------------------------------------------------------- /Volna42/src/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/Config.cpp -------------------------------------------------------------------------------- /Volna42/src/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/Config.h -------------------------------------------------------------------------------- /Volna42/src/Env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/Env.cpp -------------------------------------------------------------------------------- /Volna42/src/Env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/Env.h -------------------------------------------------------------------------------- /Volna42/src/EnvConfigOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/EnvConfigOptions.h -------------------------------------------------------------------------------- /Volna42/src/EnvConfigTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/EnvConfigTypes.h -------------------------------------------------------------------------------- /Volna42/src/EnvStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/EnvStructs.h -------------------------------------------------------------------------------- /Volna42/src/ExternalSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ExternalSensor.cpp -------------------------------------------------------------------------------- /Volna42/src/ExternalSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ExternalSensor.h -------------------------------------------------------------------------------- /Volna42/src/LocalData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/LocalData.h -------------------------------------------------------------------------------- /Volna42/src/Screen1in54UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/Screen1in54UI.cpp -------------------------------------------------------------------------------- /Volna42/src/Screen1in54UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/Screen1in54UI.h -------------------------------------------------------------------------------- /Volna42/src/Screen4in2UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/Screen4in2UI.cpp -------------------------------------------------------------------------------- /Volna42/src/Screen4in2UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/Screen4in2UI.h -------------------------------------------------------------------------------- /Volna42/src/ScreenExternData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ScreenExternData.h -------------------------------------------------------------------------------- /Volna42/src/SystemDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/SystemDefines.h -------------------------------------------------------------------------------- /Volna42/src/UserDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/UserDefines.h -------------------------------------------------------------------------------- /Volna42/src/UserSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/UserSettings.h -------------------------------------------------------------------------------- /Volna42/src/WebServerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/WebServerBase.cpp -------------------------------------------------------------------------------- /Volna42/src/WebServerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/WebServerBase.h -------------------------------------------------------------------------------- /Volna42/src/WebServerEink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/WebServerEink.cpp -------------------------------------------------------------------------------- /Volna42/src/WebServerEink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/WebServerEink.h -------------------------------------------------------------------------------- /Volna42/src/WiFiManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/WiFiManager.cpp -------------------------------------------------------------------------------- /Volna42/src/WidgetController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/WidgetController.cpp -------------------------------------------------------------------------------- /Volna42/src/WidgetController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/WidgetController.h -------------------------------------------------------------------------------- /Volna42/src/WidgetTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/WidgetTypes.h -------------------------------------------------------------------------------- /Volna42/src/WifiManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/WifiManager.h -------------------------------------------------------------------------------- /Volna42/src/esp32/NVSMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/esp32/NVSMem.cpp -------------------------------------------------------------------------------- /Volna42/src/esp32/NVSMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/esp32/NVSMem.h -------------------------------------------------------------------------------- /Volna42/src/esp8266/deepsleepFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/esp8266/deepsleepFix.cpp -------------------------------------------------------------------------------- /Volna42/src/esp8266/deepsleepFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/esp8266/deepsleepFix.h -------------------------------------------------------------------------------- /Volna42/src/fonts/Clock54x54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/fonts/Clock54x54.h -------------------------------------------------------------------------------- /Volna42/src/fonts/Clock64x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/fonts/Clock64x64.h -------------------------------------------------------------------------------- /Volna42/src/fonts/KellyFontC18x18.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/fonts/KellyFontC18x18.h -------------------------------------------------------------------------------- /Volna42/src/fonts/KellyFontC18x18JA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/fonts/KellyFontC18x18JA.h -------------------------------------------------------------------------------- /Volna42/src/fonts/KellyFontC44x44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/fonts/KellyFontC44x44.h -------------------------------------------------------------------------------- /Volna42/src/fonts/KellyFontC44x44JA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/fonts/KellyFontC44x44JA.h -------------------------------------------------------------------------------- /Volna42/src/locale/LocaleDe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/locale/LocaleDe.h -------------------------------------------------------------------------------- /Volna42/src/locale/LocaleEn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/locale/LocaleEn.h -------------------------------------------------------------------------------- /Volna42/src/locale/LocaleJa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/locale/LocaleJa.h -------------------------------------------------------------------------------- /Volna42/src/locale/LocaleRu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/locale/LocaleRu.h -------------------------------------------------------------------------------- /Volna42/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/main.cpp -------------------------------------------------------------------------------- /Volna42/src/tiles/cat_feed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/tiles/cat_feed.h -------------------------------------------------------------------------------- /Volna42/src/tiles/cat_happy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/tiles/cat_happy.h -------------------------------------------------------------------------------- /Volna42/src/tiles/cat_heat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/tiles/cat_heat.h -------------------------------------------------------------------------------- /Volna42/src/tiles/cat_night.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/tiles/cat_night.h -------------------------------------------------------------------------------- /Volna42/src/tiles/cat_rain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/tiles/cat_rain.h -------------------------------------------------------------------------------- /Volna42/src/tiles/cat_vampi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/tiles/cat_vampi.h -------------------------------------------------------------------------------- /Volna42/src/tiles/cat_watch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/tiles/cat_watch.h -------------------------------------------------------------------------------- /Volna42/src/tiles/cat_winter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/tiles/cat_winter.h -------------------------------------------------------------------------------- /Volna42/src/tiles/frog_magic_hat186x141.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/tiles/frog_magic_hat186x141.h -------------------------------------------------------------------------------- /Volna42/src/tiles/frog_new_year_hat174x139.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/tiles/frog_new_year_hat174x139.h -------------------------------------------------------------------------------- /Volna42/src/tiles/timages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/tiles/timages.h -------------------------------------------------------------------------------- /Volna42/src/tiles/weather_effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/tiles/weather_effects.h -------------------------------------------------------------------------------- /Volna42/src/ui/PREVIEW___MINI___client_eink_uploader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/PREVIEW___MINI___client_eink_uploader.html -------------------------------------------------------------------------------- /Volna42/src/ui/out/KellyEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/KellyEnv.h -------------------------------------------------------------------------------- /Volna42/src/ui/out/KellyEnv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/KellyEnv.js -------------------------------------------------------------------------------- /Volna42/src/ui/out/KellyTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/KellyTools.h -------------------------------------------------------------------------------- /Volna42/src/ui/out/KellyTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/KellyTools.js -------------------------------------------------------------------------------- /Volna42/src/ui/out/KellyTools_list_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/KellyTools_list_widget.h -------------------------------------------------------------------------------- /Volna42/src/ui/out/KellyTools_list_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/KellyTools_list_widget.js -------------------------------------------------------------------------------- /Volna42/src/ui/out/KellyTools_select_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/KellyTools_select_widget.h -------------------------------------------------------------------------------- /Volna42/src/ui/out/KellyTools_select_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/KellyTools_select_widget.js -------------------------------------------------------------------------------- /Volna42/src/ui/out/KellyUIFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/KellyUIFileManager.h -------------------------------------------------------------------------------- /Volna42/src/ui/out/KellyUIFileManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/KellyUIFileManager.js -------------------------------------------------------------------------------- /Volna42/src/ui/out/KellyUploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/KellyUploader.h -------------------------------------------------------------------------------- /Volna42/src/ui/out/KellyUploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/KellyUploader.js -------------------------------------------------------------------------------- /Volna42/src/ui/out/KellyUploader_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/KellyUploader_tools.h -------------------------------------------------------------------------------- /Volna42/src/ui/out/KellyUploader_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/KellyUploader_tools.js -------------------------------------------------------------------------------- /Volna42/src/ui/out/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/client.h -------------------------------------------------------------------------------- /Volna42/src/ui/out/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/client.html -------------------------------------------------------------------------------- /Volna42/src/ui/out/client_end.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/client_end.h -------------------------------------------------------------------------------- /Volna42/src/ui/out/client_end.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Volna42/src/ui/out/client_uploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/client_uploader.h -------------------------------------------------------------------------------- /Volna42/src/ui/out/client_uploader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/client_uploader.html -------------------------------------------------------------------------------- /Volna42/src/ui/out/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/env.h -------------------------------------------------------------------------------- /Volna42/src/ui/out/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/env.js -------------------------------------------------------------------------------- /Volna42/src/ui/out/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/init.h -------------------------------------------------------------------------------- /Volna42/src/ui/out/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/init.js -------------------------------------------------------------------------------- /Volna42/src/ui/out/initUpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/initUpload.h -------------------------------------------------------------------------------- /Volna42/src/ui/out/initUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/initUpload.js -------------------------------------------------------------------------------- /Volna42/src/ui/out/locale_en/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/locale_en/locale.h -------------------------------------------------------------------------------- /Volna42/src/ui/out/locale_en/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/locale_en/locale.js -------------------------------------------------------------------------------- /Volna42/src/ui/out/locale_ru/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/locale_ru/locale.h -------------------------------------------------------------------------------- /Volna42/src/ui/out/locale_ru/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/locale_ru/locale.js -------------------------------------------------------------------------------- /Volna42/src/ui/out/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/style.css -------------------------------------------------------------------------------- /Volna42/src/ui/out/style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/style.h -------------------------------------------------------------------------------- /Volna42/src/ui/out/style_uploader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/style_uploader.css -------------------------------------------------------------------------------- /Volna42/src/ui/out/style_uploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/Volna42/src/ui/out/style_uploader.h -------------------------------------------------------------------------------- /_ImagesSrc/128/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/2.png -------------------------------------------------------------------------------- /_ImagesSrc/128/3_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/3_128.png -------------------------------------------------------------------------------- /_ImagesSrc/128/cat_watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/cat_watch.png -------------------------------------------------------------------------------- /_ImagesSrc/128/cat_watch1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/cat_watch1.png -------------------------------------------------------------------------------- /_ImagesSrc/128/cat_watch_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/cat_watch_ball.png -------------------------------------------------------------------------------- /_ImagesSrc/128/cat_watch_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/cat_watch_eye.png -------------------------------------------------------------------------------- /_ImagesSrc/128/heat128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/heat128.png -------------------------------------------------------------------------------- /_ImagesSrc/128/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/rain.png -------------------------------------------------------------------------------- /_ImagesSrc/128/rain_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/rain_128.png -------------------------------------------------------------------------------- /_ImagesSrc/128/rain_eff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/rain_eff.png -------------------------------------------------------------------------------- /_ImagesSrc/128/rain_eff_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/rain_eff_light.png -------------------------------------------------------------------------------- /_ImagesSrc/128/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/tiles.png -------------------------------------------------------------------------------- /_ImagesSrc/128/tiles1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/tiles1.png -------------------------------------------------------------------------------- /_ImagesSrc/128/tiles2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/tiles2.png -------------------------------------------------------------------------------- /_ImagesSrc/128/tiles3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/tiles3.png -------------------------------------------------------------------------------- /_ImagesSrc/128/tiles36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/tiles36.png -------------------------------------------------------------------------------- /_ImagesSrc/128/tiles3_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/tiles3_light.png -------------------------------------------------------------------------------- /_ImagesSrc/128/tiles4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/tiles4.png -------------------------------------------------------------------------------- /_ImagesSrc/128/tiles4_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/tiles4_light.png -------------------------------------------------------------------------------- /_ImagesSrc/128/tiles7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/128/tiles7.png -------------------------------------------------------------------------------- /_ImagesSrc/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/bat.png -------------------------------------------------------------------------------- /_ImagesSrc/bat_cels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/bat_cels.png -------------------------------------------------------------------------------- /_ImagesSrc/ct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/ct.png -------------------------------------------------------------------------------- /_ImagesSrc/day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/day.png -------------------------------------------------------------------------------- /_ImagesSrc/day_cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/day_cloudy.png -------------------------------------------------------------------------------- /_ImagesSrc/heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/heat.png -------------------------------------------------------------------------------- /_ImagesSrc/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/night.png -------------------------------------------------------------------------------- /_ImagesSrc/night_cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/night_cloudy.png -------------------------------------------------------------------------------- /_ImagesSrc/previews/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/previews/1.png -------------------------------------------------------------------------------- /_ImagesSrc/previews/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/previews/2.png -------------------------------------------------------------------------------- /_ImagesSrc/previews/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/previews/3.jpg -------------------------------------------------------------------------------- /_ImagesSrc/previews/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/previews/3.png -------------------------------------------------------------------------------- /_ImagesSrc/previews/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/previews/5.jpg -------------------------------------------------------------------------------- /_ImagesSrc/previews/ui1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/previews/ui1.png -------------------------------------------------------------------------------- /_ImagesSrc/previews/ui2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/previews/ui2.png -------------------------------------------------------------------------------- /_ImagesSrc/previews/ui3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/previews/ui3.png -------------------------------------------------------------------------------- /_ImagesSrc/temp_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/temp_block.png -------------------------------------------------------------------------------- /_ImagesSrc/temp_block154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/temp_block154.png -------------------------------------------------------------------------------- /_ImagesSrc/temp_block154_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/temp_block154_outline.png -------------------------------------------------------------------------------- /_ImagesSrc/temp_meter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/temp_meter.png -------------------------------------------------------------------------------- /_ImagesSrc/temp_meter154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/temp_meter154.png -------------------------------------------------------------------------------- /_ImagesSrc/tile_low_bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/tile_low_bat.png -------------------------------------------------------------------------------- /_ImagesSrc/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/tiles.png -------------------------------------------------------------------------------- /_ImagesSrc/tiles_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_ImagesSrc/tiles_2.png -------------------------------------------------------------------------------- /_uiTools/PREVIEW___client_eink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/PREVIEW___client_eink.html -------------------------------------------------------------------------------- /_uiTools/PREVIEW___client_eink_uploader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/PREVIEW___client_eink_uploader.html -------------------------------------------------------------------------------- /_uiTools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/README.md -------------------------------------------------------------------------------- /_uiTools/htmlPack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/htmlPack/Makefile -------------------------------------------------------------------------------- /_uiTools/htmlPack/Makefile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/htmlPack/Makefile.bat -------------------------------------------------------------------------------- /_uiTools/htmlPack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/htmlPack/README.md -------------------------------------------------------------------------------- /_uiTools/htmlPack/example.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/htmlPack/example.bat -------------------------------------------------------------------------------- /_uiTools/htmlPack/example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/htmlPack/example.sh -------------------------------------------------------------------------------- /_uiTools/htmlPack/htmlpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/htmlPack/htmlpack.cpp -------------------------------------------------------------------------------- /_uiTools/htmlPack/out/README.md: -------------------------------------------------------------------------------- 1 | Test folder -------------------------------------------------------------------------------- /_uiTools/htmlPack/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/htmlPack/test.html -------------------------------------------------------------------------------- /_uiTools/minify_einkdisplay.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/minify_einkdisplay.bat -------------------------------------------------------------------------------- /_uiTools/minify_einkdisplay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/minify_einkdisplay.sh -------------------------------------------------------------------------------- /_uiTools/ui/KellyEnv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/ui/KellyEnv.js -------------------------------------------------------------------------------- /_uiTools/ui/KellyTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/ui/KellyTools.js -------------------------------------------------------------------------------- /_uiTools/ui/KellyTools.list.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/ui/KellyTools.list.widget.js -------------------------------------------------------------------------------- /_uiTools/ui/KellyTools.select.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/ui/KellyTools.select.widget.js -------------------------------------------------------------------------------- /_uiTools/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/ui/README.md -------------------------------------------------------------------------------- /_uiTools/ui/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/ui/client.html -------------------------------------------------------------------------------- /_uiTools/ui/client_end.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_uiTools/ui/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/ui/style.css -------------------------------------------------------------------------------- /_uiTools/uiEink/ENV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/uiEink/ENV.js -------------------------------------------------------------------------------- /_uiTools/uiEink/KellyUIFileManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/uiEink/KellyUIFileManager.js -------------------------------------------------------------------------------- /_uiTools/uiEink/KellyUploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/uiEink/KellyUploader.js -------------------------------------------------------------------------------- /_uiTools/uiEink/KellyUploader.tools.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/uiEink/KellyUploader.tools.debug.js -------------------------------------------------------------------------------- /_uiTools/uiEink/KellyUploader.tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/uiEink/KellyUploader.tools.js -------------------------------------------------------------------------------- /_uiTools/uiEink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/uiEink/README.md -------------------------------------------------------------------------------- /_uiTools/uiEink/client_uploader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/uiEink/client_uploader.html -------------------------------------------------------------------------------- /_uiTools/uiEink/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/uiEink/init.js -------------------------------------------------------------------------------- /_uiTools/uiEink/initUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/uiEink/initUpload.js -------------------------------------------------------------------------------- /_uiTools/uiEink/locale/localeEN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/uiEink/locale/localeEN.js -------------------------------------------------------------------------------- /_uiTools/uiEink/locale/localeRU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/uiEink/locale/localeRU.js -------------------------------------------------------------------------------- /_uiTools/uiEink/style.uploader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC22/Volna42BW/HEAD/_uiTools/uiEink/style.uploader.css --------------------------------------------------------------------------------