├── .github └── workflows │ └── build.yml ├── BIN ├── firmware.bin └── spiffs.bin ├── LICENSE ├── Platformio ├── .gitignore ├── data │ ├── function.js │ ├── help.html │ ├── img │ │ └── favicon.png │ ├── index.html │ ├── lang_BG.js │ ├── lang_EN.js │ ├── lang_RU.js │ ├── rdata.html │ ├── setup.html │ ├── shop.html │ ├── style.css │ ├── time.html │ └── wifi.html ├── include │ ├── 01d.c │ ├── 01n.c │ ├── 02d.c │ ├── 02n.c │ ├── 03d.c │ ├── 04d.c │ ├── 09d.c │ ├── 09n.c │ ├── 11d.c │ ├── 11n.c │ ├── 13d.c │ ├── 3d_bar_chart.c │ ├── 50d.c │ ├── Alarm_clock.c │ ├── FranklinGothicMediumCond14pt7b.h │ ├── FranklinGothicMediumCond15pt7b.h │ ├── FranklinGothicMediumCond7pt7b.h │ ├── FranklinGothicMediumCond9pt7b.h │ ├── FreeSans6.h │ ├── FreeSansBold6.h │ ├── FreeSansBold6pt8b.h │ ├── FreeSansBold7pt8b.h │ ├── FreeSerifBold10.h │ ├── Heart.c │ ├── README │ ├── arial_black9pt7b-mm.h │ ├── bell16.c │ ├── bell32.c │ ├── heart16.c │ ├── heart32.c │ ├── logo-diy.c │ ├── wbee_icon.c │ ├── wind10.c │ ├── wind16.c │ ├── wind_icon.c │ ├── youtube16.c │ └── youtube32.c ├── lib │ ├── README │ └── newsAp │ │ ├── newsAp.cpp │ │ └── newsAp.h ├── platformio.ini └── src │ ├── config.h │ ├── configFile.h │ ├── configMP.h │ ├── display.h │ ├── displayZone.h │ ├── fwareupd.h │ ├── fwareupdAWS.h │ ├── gimpbitmap.h │ ├── httpAWServer.h │ ├── httpServer.h │ ├── main.cpp │ ├── weather.h │ ├── youtube.h │ └── youtubeDisp.h ├── README.md └── images ├── P4LMClock01-1.jpg ├── P4LMClock02-1.jpg ├── P4LMClock03-1.jpg ├── help.png ├── index.png ├── setup.png ├── time.png └── wifi.png /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /BIN/firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/BIN/firmware.bin -------------------------------------------------------------------------------- /BIN/spiffs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/BIN/spiffs.bin -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/LICENSE -------------------------------------------------------------------------------- /Platformio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/.gitignore -------------------------------------------------------------------------------- /Platformio/data/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/data/function.js -------------------------------------------------------------------------------- /Platformio/data/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/data/help.html -------------------------------------------------------------------------------- /Platformio/data/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/data/img/favicon.png -------------------------------------------------------------------------------- /Platformio/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/data/index.html -------------------------------------------------------------------------------- /Platformio/data/lang_BG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/data/lang_BG.js -------------------------------------------------------------------------------- /Platformio/data/lang_EN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/data/lang_EN.js -------------------------------------------------------------------------------- /Platformio/data/lang_RU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/data/lang_RU.js -------------------------------------------------------------------------------- /Platformio/data/rdata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/data/rdata.html -------------------------------------------------------------------------------- /Platformio/data/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/data/setup.html -------------------------------------------------------------------------------- /Platformio/data/shop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/data/shop.html -------------------------------------------------------------------------------- /Platformio/data/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/data/style.css -------------------------------------------------------------------------------- /Platformio/data/time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/data/time.html -------------------------------------------------------------------------------- /Platformio/data/wifi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/data/wifi.html -------------------------------------------------------------------------------- /Platformio/include/01d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/01d.c -------------------------------------------------------------------------------- /Platformio/include/01n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/01n.c -------------------------------------------------------------------------------- /Platformio/include/02d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/02d.c -------------------------------------------------------------------------------- /Platformio/include/02n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/02n.c -------------------------------------------------------------------------------- /Platformio/include/03d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/03d.c -------------------------------------------------------------------------------- /Platformio/include/04d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/04d.c -------------------------------------------------------------------------------- /Platformio/include/09d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/09d.c -------------------------------------------------------------------------------- /Platformio/include/09n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/09n.c -------------------------------------------------------------------------------- /Platformio/include/11d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/11d.c -------------------------------------------------------------------------------- /Platformio/include/11n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/11n.c -------------------------------------------------------------------------------- /Platformio/include/13d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/13d.c -------------------------------------------------------------------------------- /Platformio/include/3d_bar_chart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/3d_bar_chart.c -------------------------------------------------------------------------------- /Platformio/include/50d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/50d.c -------------------------------------------------------------------------------- /Platformio/include/Alarm_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/Alarm_clock.c -------------------------------------------------------------------------------- /Platformio/include/FranklinGothicMediumCond14pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/FranklinGothicMediumCond14pt7b.h -------------------------------------------------------------------------------- /Platformio/include/FranklinGothicMediumCond15pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/FranklinGothicMediumCond15pt7b.h -------------------------------------------------------------------------------- /Platformio/include/FranklinGothicMediumCond7pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/FranklinGothicMediumCond7pt7b.h -------------------------------------------------------------------------------- /Platformio/include/FranklinGothicMediumCond9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/FranklinGothicMediumCond9pt7b.h -------------------------------------------------------------------------------- /Platformio/include/FreeSans6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/FreeSans6.h -------------------------------------------------------------------------------- /Platformio/include/FreeSansBold6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/FreeSansBold6.h -------------------------------------------------------------------------------- /Platformio/include/FreeSansBold6pt8b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/FreeSansBold6pt8b.h -------------------------------------------------------------------------------- /Platformio/include/FreeSansBold7pt8b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/FreeSansBold7pt8b.h -------------------------------------------------------------------------------- /Platformio/include/FreeSerifBold10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/FreeSerifBold10.h -------------------------------------------------------------------------------- /Platformio/include/Heart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/Heart.c -------------------------------------------------------------------------------- /Platformio/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/README -------------------------------------------------------------------------------- /Platformio/include/arial_black9pt7b-mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/arial_black9pt7b-mm.h -------------------------------------------------------------------------------- /Platformio/include/bell16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/bell16.c -------------------------------------------------------------------------------- /Platformio/include/bell32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/bell32.c -------------------------------------------------------------------------------- /Platformio/include/heart16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/heart16.c -------------------------------------------------------------------------------- /Platformio/include/heart32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/heart32.c -------------------------------------------------------------------------------- /Platformio/include/logo-diy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/logo-diy.c -------------------------------------------------------------------------------- /Platformio/include/wbee_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/wbee_icon.c -------------------------------------------------------------------------------- /Platformio/include/wind10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/wind10.c -------------------------------------------------------------------------------- /Platformio/include/wind16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/wind16.c -------------------------------------------------------------------------------- /Platformio/include/wind_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/wind_icon.c -------------------------------------------------------------------------------- /Platformio/include/youtube16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/youtube16.c -------------------------------------------------------------------------------- /Platformio/include/youtube32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/include/youtube32.c -------------------------------------------------------------------------------- /Platformio/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/lib/README -------------------------------------------------------------------------------- /Platformio/lib/newsAp/newsAp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/lib/newsAp/newsAp.cpp -------------------------------------------------------------------------------- /Platformio/lib/newsAp/newsAp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/lib/newsAp/newsAp.h -------------------------------------------------------------------------------- /Platformio/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/platformio.ini -------------------------------------------------------------------------------- /Platformio/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/src/config.h -------------------------------------------------------------------------------- /Platformio/src/configFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/src/configFile.h -------------------------------------------------------------------------------- /Platformio/src/configMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/src/configMP.h -------------------------------------------------------------------------------- /Platformio/src/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/src/display.h -------------------------------------------------------------------------------- /Platformio/src/displayZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/src/displayZone.h -------------------------------------------------------------------------------- /Platformio/src/fwareupd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/src/fwareupd.h -------------------------------------------------------------------------------- /Platformio/src/fwareupdAWS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/src/fwareupdAWS.h -------------------------------------------------------------------------------- /Platformio/src/gimpbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/src/gimpbitmap.h -------------------------------------------------------------------------------- /Platformio/src/httpAWServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/src/httpAWServer.h -------------------------------------------------------------------------------- /Platformio/src/httpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/src/httpServer.h -------------------------------------------------------------------------------- /Platformio/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/src/main.cpp -------------------------------------------------------------------------------- /Platformio/src/weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/src/weather.h -------------------------------------------------------------------------------- /Platformio/src/youtube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/src/youtube.h -------------------------------------------------------------------------------- /Platformio/src/youtubeDisp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/Platformio/src/youtubeDisp.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/README.md -------------------------------------------------------------------------------- /images/P4LMClock01-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/images/P4LMClock01-1.jpg -------------------------------------------------------------------------------- /images/P4LMClock02-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/images/P4LMClock02-1.jpg -------------------------------------------------------------------------------- /images/P4LMClock03-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/images/P4LMClock03-1.jpg -------------------------------------------------------------------------------- /images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/images/help.png -------------------------------------------------------------------------------- /images/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/images/index.png -------------------------------------------------------------------------------- /images/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/images/setup.png -------------------------------------------------------------------------------- /images/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/images/time.png -------------------------------------------------------------------------------- /images/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightwell-bg/RGB-P4-Led-Matrix-Clock-based-on-ESP32/HEAD/images/wifi.png --------------------------------------------------------------------------------