├── LICENSE ├── README.md ├── arduino-ide ├── filesystem-example │ └── filesystem-example.ino ├── thingspeak-data-logger │ ├── README.md │ └── thingspeak-data-logger.ino ├── thirsdee │ ├── font.h │ ├── icons.h │ ├── src │ │ ├── WiFi_Logo.gif │ │ ├── WiFi_Logo.svg │ │ ├── WiFi_Logo.xbm │ │ ├── plant0000.gif │ │ ├── plant0000.xbm │ │ ├── plant0125.gif │ │ ├── plant0125.xbm │ │ ├── plant0250.gif │ │ ├── plant0250.xbm │ │ ├── plant0375.gif │ │ ├── plant0375.xbm │ │ ├── plant0500.gif │ │ ├── plant0500.xbm │ │ ├── plant0625.gif │ │ ├── plant0625.xbm │ │ ├── plant0750.gif │ │ ├── plant0750.xbm │ │ ├── plant0875.gif │ │ ├── plant0875.xbm │ │ ├── plant1000.gif │ │ └── plant1000.xbm │ ├── ssd1306_i2c.cpp │ ├── ssd1306_i2c.h │ └── thirsdee.ino ├── weather-station-v2 │ ├── README.md │ ├── WeatherClient.cpp │ ├── WeatherClient.h │ ├── font.h │ ├── icons.h │ ├── src │ │ ├── WiFi_Logo.svg │ │ ├── WiFi_Logo.xbm │ │ ├── active.xbm │ │ ├── inactive.xbm │ │ ├── temp.xbm │ │ ├── temp2.xbm │ │ └── weather │ │ │ ├── clear_day.svg │ │ │ ├── clear_day.xbm │ │ │ ├── clear_night.svg │ │ │ ├── clear_night.xbm │ │ │ ├── cloudy.svg │ │ │ ├── cloudy.xbm │ │ │ ├── fog.svg │ │ │ ├── fog.xbm │ │ │ ├── icons.h │ │ │ ├── partly_cloudy_day.svg │ │ │ ├── partly_cloudy_day.xbm │ │ │ ├── partly_cloudy_night.svg │ │ │ ├── partly_cloudy_night.xbm │ │ │ ├── rain.svg │ │ │ ├── rain.xbm │ │ │ ├── sleet.svg │ │ │ ├── sleet.xbm │ │ │ ├── snow.svg │ │ │ ├── snow.xbm │ │ │ ├── sunset.svg │ │ │ ├── sunset.xbm │ │ │ ├── wind.svg │ │ │ └── wind.xbm │ ├── ssd1306_i2c.cpp │ ├── ssd1306_i2c.h │ ├── weather-station-v2.ino │ └── weather.php ├── wifi-car │ ├── README.md │ ├── smartcar.js │ └── wifi-car.ino ├── wifi-door-sensor │ └── wifi-door-sensor.ino └── wifi-scale │ ├── font.h │ ├── ssd1306_i2c.cpp │ ├── ssd1306_i2c.h │ └── wifi-scale.ino └── lua ├── LICENSE ├── simple-oled-example ├── clouds.png ├── clouds.xbm ├── displayXBM.lua ├── simple-oled-sketch.fzz └── simple-oled-sketch_bb.png └── weather-station ├── 01d.MONO ├── 02d.MONO ├── 03d.MONO ├── 04d.MONO ├── 09d.MONO ├── 10d.MONO ├── 11d.MONO ├── 13d.MONO ├── 50d.MONO ├── README.md ├── clouds.xbm ├── init.lua ├── simple-oled-sketch_bb.png ├── src ├── 01d.png ├── 02d.png ├── 03d.png ├── 04d.png ├── 09d.png ├── 10d.png ├── 11d.png ├── 13d.png ├── 50d.png ├── display.jpg ├── icons.psd └── simple-oled-sketch.fzz └── weatherStation.lua /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/README.md -------------------------------------------------------------------------------- /arduino-ide/filesystem-example/filesystem-example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/filesystem-example/filesystem-example.ino -------------------------------------------------------------------------------- /arduino-ide/thingspeak-data-logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thingspeak-data-logger/README.md -------------------------------------------------------------------------------- /arduino-ide/thingspeak-data-logger/thingspeak-data-logger.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thingspeak-data-logger/thingspeak-data-logger.ino -------------------------------------------------------------------------------- /arduino-ide/thirsdee/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/font.h -------------------------------------------------------------------------------- /arduino-ide/thirsdee/icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/icons.h -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/WiFi_Logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/WiFi_Logo.gif -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/WiFi_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/WiFi_Logo.svg -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/WiFi_Logo.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/WiFi_Logo.xbm -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant0000.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant0000.gif -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant0000.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant0000.xbm -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant0125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant0125.gif -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant0125.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant0125.xbm -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant0250.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant0250.gif -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant0250.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant0250.xbm -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant0375.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant0375.gif -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant0375.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant0375.xbm -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant0500.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant0500.gif -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant0500.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant0500.xbm -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant0625.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant0625.gif -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant0625.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant0625.xbm -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant0750.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant0750.gif -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant0750.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant0750.xbm -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant0875.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant0875.gif -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant0875.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant0875.xbm -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant1000.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant1000.gif -------------------------------------------------------------------------------- /arduino-ide/thirsdee/src/plant1000.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/src/plant1000.xbm -------------------------------------------------------------------------------- /arduino-ide/thirsdee/ssd1306_i2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/ssd1306_i2c.cpp -------------------------------------------------------------------------------- /arduino-ide/thirsdee/ssd1306_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/ssd1306_i2c.h -------------------------------------------------------------------------------- /arduino-ide/thirsdee/thirsdee.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/thirsdee/thirsdee.ino -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/README.md -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/WeatherClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/WeatherClient.cpp -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/WeatherClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/WeatherClient.h -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/font.h -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/icons.h -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/WiFi_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/WiFi_Logo.svg -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/WiFi_Logo.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/WiFi_Logo.xbm -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/active.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/active.xbm -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/inactive.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/inactive.xbm -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/temp.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/temp.xbm -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/temp2.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/temp2.xbm -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/clear_day.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/clear_day.svg -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/clear_day.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/clear_day.xbm -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/clear_night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/clear_night.svg -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/clear_night.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/clear_night.xbm -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/cloudy.svg -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/cloudy.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/cloudy.xbm -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/fog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/fog.svg -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/fog.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/fog.xbm -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/icons.h -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/partly_cloudy_day.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/partly_cloudy_day.svg -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/partly_cloudy_day.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/partly_cloudy_day.xbm -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/partly_cloudy_night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/partly_cloudy_night.svg -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/partly_cloudy_night.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/partly_cloudy_night.xbm -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/rain.svg -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/rain.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/rain.xbm -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/sleet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/sleet.svg -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/sleet.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/sleet.xbm -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/snow.svg -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/snow.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/snow.xbm -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/sunset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/sunset.svg -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/sunset.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/sunset.xbm -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/wind.svg -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/src/weather/wind.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/src/weather/wind.xbm -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/ssd1306_i2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/ssd1306_i2c.cpp -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/ssd1306_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/ssd1306_i2c.h -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/weather-station-v2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/weather-station-v2.ino -------------------------------------------------------------------------------- /arduino-ide/weather-station-v2/weather.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/weather-station-v2/weather.php -------------------------------------------------------------------------------- /arduino-ide/wifi-car/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/wifi-car/README.md -------------------------------------------------------------------------------- /arduino-ide/wifi-car/smartcar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/wifi-car/smartcar.js -------------------------------------------------------------------------------- /arduino-ide/wifi-car/wifi-car.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/wifi-car/wifi-car.ino -------------------------------------------------------------------------------- /arduino-ide/wifi-door-sensor/wifi-door-sensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/wifi-door-sensor/wifi-door-sensor.ino -------------------------------------------------------------------------------- /arduino-ide/wifi-scale/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/wifi-scale/font.h -------------------------------------------------------------------------------- /arduino-ide/wifi-scale/ssd1306_i2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/wifi-scale/ssd1306_i2c.cpp -------------------------------------------------------------------------------- /arduino-ide/wifi-scale/ssd1306_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/wifi-scale/ssd1306_i2c.h -------------------------------------------------------------------------------- /arduino-ide/wifi-scale/wifi-scale.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/arduino-ide/wifi-scale/wifi-scale.ino -------------------------------------------------------------------------------- /lua/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/LICENSE -------------------------------------------------------------------------------- /lua/simple-oled-example/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/simple-oled-example/clouds.png -------------------------------------------------------------------------------- /lua/simple-oled-example/clouds.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/simple-oled-example/clouds.xbm -------------------------------------------------------------------------------- /lua/simple-oled-example/displayXBM.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/simple-oled-example/displayXBM.lua -------------------------------------------------------------------------------- /lua/simple-oled-example/simple-oled-sketch.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/simple-oled-example/simple-oled-sketch.fzz -------------------------------------------------------------------------------- /lua/simple-oled-example/simple-oled-sketch_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/simple-oled-example/simple-oled-sketch_bb.png -------------------------------------------------------------------------------- /lua/weather-station/01d.MONO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/01d.MONO -------------------------------------------------------------------------------- /lua/weather-station/02d.MONO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/02d.MONO -------------------------------------------------------------------------------- /lua/weather-station/03d.MONO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/03d.MONO -------------------------------------------------------------------------------- /lua/weather-station/04d.MONO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/04d.MONO -------------------------------------------------------------------------------- /lua/weather-station/09d.MONO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/09d.MONO -------------------------------------------------------------------------------- /lua/weather-station/10d.MONO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/10d.MONO -------------------------------------------------------------------------------- /lua/weather-station/11d.MONO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/11d.MONO -------------------------------------------------------------------------------- /lua/weather-station/13d.MONO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/13d.MONO -------------------------------------------------------------------------------- /lua/weather-station/50d.MONO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/50d.MONO -------------------------------------------------------------------------------- /lua/weather-station/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/README.md -------------------------------------------------------------------------------- /lua/weather-station/clouds.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/clouds.xbm -------------------------------------------------------------------------------- /lua/weather-station/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/init.lua -------------------------------------------------------------------------------- /lua/weather-station/simple-oled-sketch_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/simple-oled-sketch_bb.png -------------------------------------------------------------------------------- /lua/weather-station/src/01d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/src/01d.png -------------------------------------------------------------------------------- /lua/weather-station/src/02d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/src/02d.png -------------------------------------------------------------------------------- /lua/weather-station/src/03d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/src/03d.png -------------------------------------------------------------------------------- /lua/weather-station/src/04d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/src/04d.png -------------------------------------------------------------------------------- /lua/weather-station/src/09d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/src/09d.png -------------------------------------------------------------------------------- /lua/weather-station/src/10d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/src/10d.png -------------------------------------------------------------------------------- /lua/weather-station/src/11d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/src/11d.png -------------------------------------------------------------------------------- /lua/weather-station/src/13d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/src/13d.png -------------------------------------------------------------------------------- /lua/weather-station/src/50d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/src/50d.png -------------------------------------------------------------------------------- /lua/weather-station/src/display.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/src/display.jpg -------------------------------------------------------------------------------- /lua/weather-station/src/icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/src/icons.psd -------------------------------------------------------------------------------- /lua/weather-station/src/simple-oled-sketch.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/src/simple-oled-sketch.fzz -------------------------------------------------------------------------------- /lua/weather-station/weatherStation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squix78/esp8266-projects/HEAD/lua/weather-station/weatherStation.lua --------------------------------------------------------------------------------