├── LICENSE ├── README.md ├── img ├── SettingsUI.jpg ├── WledPixel Wiring.png ├── WledPixel Wiring800.png ├── main.jpg └── wledPixel-white.jpg ├── lib ├── README ├── htmlFiles │ ├── indexPage.h │ └── settingsPage.h ├── httpsRequestJson │ ├── httpsRequestJson.cpp │ └── httpsRequestJson.h ├── owm │ ├── owm.cpp │ └── owm.h └── wledFont │ └── wledFont.h ├── platformio.ini └── src └── main.cpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widapro/wledPixel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widapro/wledPixel/HEAD/README.md -------------------------------------------------------------------------------- /img/SettingsUI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widapro/wledPixel/HEAD/img/SettingsUI.jpg -------------------------------------------------------------------------------- /img/WledPixel Wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widapro/wledPixel/HEAD/img/WledPixel Wiring.png -------------------------------------------------------------------------------- /img/WledPixel Wiring800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widapro/wledPixel/HEAD/img/WledPixel Wiring800.png -------------------------------------------------------------------------------- /img/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widapro/wledPixel/HEAD/img/main.jpg -------------------------------------------------------------------------------- /img/wledPixel-white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widapro/wledPixel/HEAD/img/wledPixel-white.jpg -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widapro/wledPixel/HEAD/lib/README -------------------------------------------------------------------------------- /lib/htmlFiles/indexPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widapro/wledPixel/HEAD/lib/htmlFiles/indexPage.h -------------------------------------------------------------------------------- /lib/htmlFiles/settingsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widapro/wledPixel/HEAD/lib/htmlFiles/settingsPage.h -------------------------------------------------------------------------------- /lib/httpsRequestJson/httpsRequestJson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widapro/wledPixel/HEAD/lib/httpsRequestJson/httpsRequestJson.cpp -------------------------------------------------------------------------------- /lib/httpsRequestJson/httpsRequestJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widapro/wledPixel/HEAD/lib/httpsRequestJson/httpsRequestJson.h -------------------------------------------------------------------------------- /lib/owm/owm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widapro/wledPixel/HEAD/lib/owm/owm.cpp -------------------------------------------------------------------------------- /lib/owm/owm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widapro/wledPixel/HEAD/lib/owm/owm.h -------------------------------------------------------------------------------- /lib/wledFont/wledFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widapro/wledPixel/HEAD/lib/wledFont/wledFont.h -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widapro/wledPixel/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widapro/wledPixel/HEAD/src/main.cpp --------------------------------------------------------------------------------