├── .gitignore ├── CMakeLists.txt ├── boards ├── b_l4s5i_iot01a.conf └── b_l4s5i_iot01a.overlay ├── fonts ├── 04B.TTF └── COMICBD.TTF ├── prj.conf ├── readme.md └── src ├── main.c ├── open_meteo_http.c ├── open_meteo_http.h ├── wifi.c └── wifi.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeronimoagullo/Weather-Assistant-Zephyr/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeronimoagullo/Weather-Assistant-Zephyr/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /boards/b_l4s5i_iot01a.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeronimoagullo/Weather-Assistant-Zephyr/HEAD/boards/b_l4s5i_iot01a.conf -------------------------------------------------------------------------------- /boards/b_l4s5i_iot01a.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeronimoagullo/Weather-Assistant-Zephyr/HEAD/boards/b_l4s5i_iot01a.overlay -------------------------------------------------------------------------------- /fonts/04B.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeronimoagullo/Weather-Assistant-Zephyr/HEAD/fonts/04B.TTF -------------------------------------------------------------------------------- /fonts/COMICBD.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeronimoagullo/Weather-Assistant-Zephyr/HEAD/fonts/COMICBD.TTF -------------------------------------------------------------------------------- /prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeronimoagullo/Weather-Assistant-Zephyr/HEAD/prj.conf -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeronimoagullo/Weather-Assistant-Zephyr/HEAD/readme.md -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeronimoagullo/Weather-Assistant-Zephyr/HEAD/src/main.c -------------------------------------------------------------------------------- /src/open_meteo_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeronimoagullo/Weather-Assistant-Zephyr/HEAD/src/open_meteo_http.c -------------------------------------------------------------------------------- /src/open_meteo_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeronimoagullo/Weather-Assistant-Zephyr/HEAD/src/open_meteo_http.h -------------------------------------------------------------------------------- /src/wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeronimoagullo/Weather-Assistant-Zephyr/HEAD/src/wifi.c -------------------------------------------------------------------------------- /src/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeronimoagullo/Weather-Assistant-Zephyr/HEAD/src/wifi.h --------------------------------------------------------------------------------