├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── docs ├── closeup.jpg ├── scene.jpg └── sunset-product.jpg ├── output └── .gitkeep ├── random-notes.md ├── rasp ├── .env.example ├── IT8951-ePaper │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ └── settings.json │ ├── README.md │ ├── Raspberry │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── examples │ │ │ ├── example.c │ │ │ ├── example.h │ │ │ └── main.c │ │ ├── lib │ │ │ ├── Config │ │ │ │ ├── DEV_Config.c │ │ │ │ ├── DEV_Config.h │ │ │ │ └── Debug.h │ │ │ ├── Fonts │ │ │ │ ├── font12.c │ │ │ │ ├── font12CN.c │ │ │ │ ├── font16.c │ │ │ │ ├── font20.c │ │ │ │ ├── font24.c │ │ │ │ ├── font24CN.c │ │ │ │ ├── font8.c │ │ │ │ └── fonts.h │ │ │ ├── GUI │ │ │ │ ├── GUI_BMPfile.c │ │ │ │ ├── GUI_BMPfile.h │ │ │ │ ├── GUI_Paint.c │ │ │ │ └── GUI_Paint.h │ │ │ └── e-Paper │ │ │ │ ├── EPD_IT8951.c │ │ │ │ └── EPD_IT8951.h │ │ ├── readme_CN.txt │ │ └── readme_EN.txt │ └── Updated.md ├── IT8951-python │ ├── .gitignore │ ├── CHANGELOG.md │ ├── IT8951 │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── display.py │ │ ├── img_manip.c │ │ ├── img_manip.pyx │ │ ├── interface.py │ │ ├── spi.c │ │ └── spi.pyx │ ├── LICENSE │ ├── README.md │ ├── requirements.txt │ ├── setup.py │ └── test │ │ ├── integration │ │ ├── images │ │ │ └── sleeping_penguin.png │ │ ├── test.py │ │ ├── test_functions.py │ │ ├── time_full.py │ │ └── time_partial.py │ │ └── unit │ │ └── test_img_manip.py ├── Pipfile ├── battery-graph.sh ├── config.py ├── image.py ├── images │ ├── battery-empty.png │ └── error.png ├── main.py ├── shutdown.py ├── shutdown_if_on_battery.py ├── usb-it8951 │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── main.c │ ├── test.c │ └── vcom.c └── wait-for-network.sh └── render ├── .env.example ├── .eslintrc.json ├── .node-version ├── .prettierrc.json ├── bin └── ts-node ├── fixtures ├── fmi-ecmwf-full-parsed-data.json ├── fmi-ecmwf-full-response.xml ├── fmi-harmonie-full-parsed-data.json ├── fmi-harmonie-full-response.xml └── fmi-response-1.xml ├── jest.config.js ├── package-lock.json ├── package.json ├── src ├── entrypoints │ ├── cli.ts │ └── cloudFunction.ts ├── environment.ts ├── jestSetup.ts ├── libTypes │ └── posthtml-inline-assets │ │ └── index.d.ts ├── rendering │ ├── core.ts │ ├── posthtmlInlineStyleCssImports.ts │ ├── posthtmlReplace.ts │ └── puppeteer.ts ├── templates │ ├── assets │ │ ├── battery_0.svg │ │ ├── battery_100.svg │ │ ├── battery_25.svg │ │ ├── battery_50.svg │ │ ├── battery_75.svg │ │ ├── battery_charging.svg │ │ ├── humidity.svg │ │ └── refresh.svg │ ├── css │ │ ├── layout.css │ │ ├── main.css │ │ ├── reset.css │ │ ├── top-bar.css │ │ ├── typography.css │ │ └── variables.css │ ├── fonts │ │ ├── Atkinson-Hyperlegible-Bold-102a.woff2 │ │ ├── Atkinson-Hyperlegible-BoldItalic-102a.woff2 │ │ ├── Atkinson-Hyperlegible-Italic-102a.woff2 │ │ ├── Atkinson-Hyperlegible-Regular-102a.woff2 │ │ └── weathericons-regular-webfont.woff2 │ ├── index.html │ ├── js │ │ ├── d3.v7.js │ │ ├── d3.v7.min.js │ │ └── main.js │ └── weather-icons │ │ ├── svg-icons │ │ ├── wi-alien.svg │ │ ├── wi-barometer.svg │ │ ├── wi-celsius.svg │ │ ├── wi-cloud-down.svg │ │ ├── wi-cloud-refresh.svg │ │ ├── wi-cloud-up.svg │ │ ├── wi-cloud.svg │ │ ├── wi-cloudy-gusts.svg │ │ ├── wi-cloudy-windy.svg │ │ ├── wi-cloudy.svg │ │ ├── wi-day-cloudy-gusts.svg │ │ ├── wi-day-cloudy-high.svg │ │ ├── wi-day-cloudy-windy.svg │ │ ├── wi-day-cloudy.svg │ │ ├── wi-day-fog.svg │ │ ├── wi-day-hail.svg │ │ ├── wi-day-haze.svg │ │ ├── wi-day-light-wind.svg │ │ ├── wi-day-lightning.svg │ │ ├── wi-day-rain-mix.svg │ │ ├── wi-day-rain-wind.svg │ │ ├── wi-day-rain.svg │ │ ├── wi-day-showers.svg │ │ ├── wi-day-sleet-storm.svg │ │ ├── wi-day-sleet.svg │ │ ├── wi-day-snow-thunderstorm.svg │ │ ├── wi-day-snow-wind.svg │ │ ├── wi-day-snow.svg │ │ ├── wi-day-sprinkle.svg │ │ ├── wi-day-storm-showers.svg │ │ ├── wi-day-sunny-overcast.svg │ │ ├── wi-day-sunny.svg │ │ ├── wi-day-thunderstorm.svg │ │ ├── wi-day-windy.svg │ │ ├── wi-degrees.svg │ │ ├── wi-direction-down-left.svg │ │ ├── wi-direction-down-right.svg │ │ ├── wi-direction-down.svg │ │ ├── wi-direction-left.svg │ │ ├── wi-direction-right.svg │ │ ├── wi-direction-up-left.svg │ │ ├── wi-direction-up-right.svg │ │ ├── wi-direction-up.svg │ │ ├── wi-dust.svg │ │ ├── wi-earthquake.svg │ │ ├── wi-fahrenheit.svg │ │ ├── wi-fire.svg │ │ ├── wi-flood.svg │ │ ├── wi-fog.svg │ │ ├── wi-gale-warning.svg │ │ ├── wi-hail.svg │ │ ├── wi-horizon-alt.svg │ │ ├── wi-horizon.svg │ │ ├── wi-hot.svg │ │ ├── wi-humidity.svg │ │ ├── wi-hurricane-warning.svg │ │ ├── wi-hurricane.svg │ │ ├── wi-lightning.svg │ │ ├── wi-lunar-eclipse.svg │ │ ├── wi-meteor.svg │ │ ├── wi-moon-alt-first-quarter.svg │ │ ├── wi-moon-alt-full.svg │ │ ├── wi-moon-alt-new.svg │ │ ├── wi-moon-alt-third-quarter.svg │ │ ├── wi-moon-alt-waning-crescent-1.svg │ │ ├── wi-moon-alt-waning-crescent-2.svg │ │ ├── wi-moon-alt-waning-crescent-3.svg │ │ ├── wi-moon-alt-waning-crescent-4.svg │ │ ├── wi-moon-alt-waning-crescent-5.svg │ │ ├── wi-moon-alt-waning-crescent-6.svg │ │ ├── wi-moon-alt-waning-gibbous-1.svg │ │ ├── wi-moon-alt-waning-gibbous-2.svg │ │ ├── wi-moon-alt-waning-gibbous-3.svg │ │ ├── wi-moon-alt-waning-gibbous-4.svg │ │ ├── wi-moon-alt-waning-gibbous-5.svg │ │ ├── wi-moon-alt-waning-gibbous-6.svg │ │ ├── wi-moon-alt-waxing-crescent-1.svg │ │ ├── wi-moon-alt-waxing-crescent-2.svg │ │ ├── wi-moon-alt-waxing-crescent-3.svg │ │ ├── wi-moon-alt-waxing-crescent-4.svg │ │ ├── wi-moon-alt-waxing-crescent-5.svg │ │ ├── wi-moon-alt-waxing-crescent-6.svg │ │ ├── wi-moon-alt-waxing-gibbous-1.svg │ │ ├── wi-moon-alt-waxing-gibbous-2.svg │ │ ├── wi-moon-alt-waxing-gibbous-3.svg │ │ ├── wi-moon-alt-waxing-gibbous-4.svg │ │ ├── wi-moon-alt-waxing-gibbous-5.svg │ │ ├── wi-moon-alt-waxing-gibbous-6.svg │ │ ├── wi-moon-first-quarter.svg │ │ ├── wi-moon-full.svg │ │ ├── wi-moon-new.svg │ │ ├── wi-moon-third-quarter.svg │ │ ├── wi-moon-waning-crescent-1.svg │ │ ├── wi-moon-waning-crescent-2.svg │ │ ├── wi-moon-waning-crescent-3.svg │ │ ├── wi-moon-waning-crescent-4.svg │ │ ├── wi-moon-waning-crescent-5.svg │ │ ├── wi-moon-waning-crescent-6.svg │ │ ├── wi-moon-waning-gibbous-1.svg │ │ ├── wi-moon-waning-gibbous-2.svg │ │ ├── wi-moon-waning-gibbous-3.svg │ │ ├── wi-moon-waning-gibbous-4.svg │ │ ├── wi-moon-waning-gibbous-5.svg │ │ ├── wi-moon-waning-gibbous-6.svg │ │ ├── wi-moon-waxing-6.svg │ │ ├── wi-moon-waxing-crescent-1.svg │ │ ├── wi-moon-waxing-crescent-2.svg │ │ ├── wi-moon-waxing-crescent-3.svg │ │ ├── wi-moon-waxing-crescent-4.svg │ │ ├── wi-moon-waxing-crescent-5.svg │ │ ├── wi-moon-waxing-gibbous-1.svg │ │ ├── wi-moon-waxing-gibbous-2.svg │ │ ├── wi-moon-waxing-gibbous-3.svg │ │ ├── wi-moon-waxing-gibbous-4.svg │ │ ├── wi-moon-waxing-gibbous-5.svg │ │ ├── wi-moon-waxing-gibbous-6.svg │ │ ├── wi-moonrise.svg │ │ ├── wi-moonset.svg │ │ ├── wi-na.svg │ │ ├── wi-night-alt-cloudy-gusts.svg │ │ ├── wi-night-alt-cloudy-high.svg │ │ ├── wi-night-alt-cloudy-windy.svg │ │ ├── wi-night-alt-cloudy.svg │ │ ├── wi-night-alt-hail.svg │ │ ├── wi-night-alt-lightning.svg │ │ ├── wi-night-alt-partly-cloudy.svg │ │ ├── wi-night-alt-rain-mix.svg │ │ ├── wi-night-alt-rain-wind.svg │ │ ├── wi-night-alt-rain.svg │ │ ├── wi-night-alt-showers.svg │ │ ├── wi-night-alt-sleet-storm.svg │ │ ├── wi-night-alt-sleet.svg │ │ ├── wi-night-alt-snow-thunderstorm.svg │ │ ├── wi-night-alt-snow-wind.svg │ │ ├── wi-night-alt-snow.svg │ │ ├── wi-night-alt-sprinkle.svg │ │ ├── wi-night-alt-storm-showers.svg │ │ ├── wi-night-alt-thunderstorm.svg │ │ ├── wi-night-clear.svg │ │ ├── wi-night-cloudy-gusts.svg │ │ ├── wi-night-cloudy-high.svg │ │ ├── wi-night-cloudy-windy.svg │ │ ├── wi-night-cloudy.svg │ │ ├── wi-night-fog.svg │ │ ├── wi-night-hail.svg │ │ ├── wi-night-lightning.svg │ │ ├── wi-night-partly-cloudy.svg │ │ ├── wi-night-rain-mix.svg │ │ ├── wi-night-rain-wind.svg │ │ ├── wi-night-rain.svg │ │ ├── wi-night-showers.svg │ │ ├── wi-night-sleet-storm.svg │ │ ├── wi-night-sleet.svg │ │ ├── wi-night-snow-thunderstorm.svg │ │ ├── wi-night-snow-wind.svg │ │ ├── wi-night-snow.svg │ │ ├── wi-night-sprinkle.svg │ │ ├── wi-night-storm-showers.svg │ │ ├── wi-night-thunderstorm.svg │ │ ├── wi-rain-mix.svg │ │ ├── wi-rain-wind.svg │ │ ├── wi-rain.svg │ │ ├── wi-raindrop.svg │ │ ├── wi-raindrops.svg │ │ ├── wi-refresh-alt.svg │ │ ├── wi-refresh.svg │ │ ├── wi-sandstorm.svg │ │ ├── wi-showers.svg │ │ ├── wi-sleet.svg │ │ ├── wi-small-craft-advisory.svg │ │ ├── wi-smog.svg │ │ ├── wi-smoke.svg │ │ ├── wi-snow-wind.svg │ │ ├── wi-snow.svg │ │ ├── wi-snowflake-cold.svg │ │ ├── wi-solar-eclipse.svg │ │ ├── wi-sprinkle.svg │ │ ├── wi-stars.svg │ │ ├── wi-storm-showers.svg │ │ ├── wi-storm-warning.svg │ │ ├── wi-strong-wind.svg │ │ ├── wi-sunrise.svg │ │ ├── wi-sunset.svg │ │ ├── wi-thermometer-exterior.svg │ │ ├── wi-thermometer-internal.svg │ │ ├── wi-thermometer.svg │ │ ├── wi-thunderstorm.svg │ │ ├── wi-time-1.svg │ │ ├── wi-time-10.svg │ │ ├── wi-time-11.svg │ │ ├── wi-time-12.svg │ │ ├── wi-time-2.svg │ │ ├── wi-time-3.svg │ │ ├── wi-time-4.svg │ │ ├── wi-time-5.svg │ │ ├── wi-time-6.svg │ │ ├── wi-time-7.svg │ │ ├── wi-time-8.svg │ │ ├── wi-time-9.svg │ │ ├── wi-tornado.svg │ │ ├── wi-train.svg │ │ ├── wi-tsunami.svg │ │ ├── wi-umbrella.svg │ │ ├── wi-volcano.svg │ │ ├── wi-wind-beaufort-0.svg │ │ ├── wi-wind-beaufort-1.svg │ │ ├── wi-wind-beaufort-10.svg │ │ ├── wi-wind-beaufort-11.svg │ │ ├── wi-wind-beaufort-12.svg │ │ ├── wi-wind-beaufort-2.svg │ │ ├── wi-wind-beaufort-3.svg │ │ ├── wi-wind-beaufort-4.svg │ │ ├── wi-wind-beaufort-5.svg │ │ ├── wi-wind-beaufort-6.svg │ │ ├── wi-wind-beaufort-7.svg │ │ ├── wi-wind-beaufort-8.svg │ │ ├── wi-wind-beaufort-9.svg │ │ ├── wi-wind-deg.svg │ │ └── wi-windy.svg │ │ ├── weather-icons-wind.css │ │ ├── weather-icons.css │ │ ├── wind-warning.png │ │ └── wind-warning.svg ├── types.ts ├── utils │ ├── HttpError.ts │ ├── logger.ts │ ├── utils.test.ts │ └── utils.ts └── weather │ ├── fmiApi.test.ts │ ├── fmiApi.ts │ ├── meteoApi.ts │ ├── random.ts │ ├── weather.test.ts │ ├── weather.ts │ ├── weatherSymbol.test.ts │ └── weatherSymbol.ts └── tsconfig.json /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/README.md -------------------------------------------------------------------------------- /docs/closeup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/docs/closeup.jpg -------------------------------------------------------------------------------- /docs/scene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/docs/scene.jpg -------------------------------------------------------------------------------- /docs/sunset-product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/docs/sunset-product.jpg -------------------------------------------------------------------------------- /output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /random-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/random-notes.md -------------------------------------------------------------------------------- /rasp/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/.env.example -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/.vscode/settings.json -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/README.md -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/Makefile -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/examples/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/examples/example.c -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/examples/example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/examples/example.h -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/examples/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/examples/main.c -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/lib/Config/DEV_Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/lib/Config/DEV_Config.c -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/lib/Config/DEV_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/lib/Config/DEV_Config.h -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/lib/Config/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/lib/Config/Debug.h -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/lib/Fonts/font12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/lib/Fonts/font12.c -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/lib/Fonts/font12CN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/lib/Fonts/font12CN.c -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/lib/Fonts/font16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/lib/Fonts/font16.c -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/lib/Fonts/font20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/lib/Fonts/font20.c -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/lib/Fonts/font24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/lib/Fonts/font24.c -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/lib/Fonts/font24CN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/lib/Fonts/font24CN.c -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/lib/Fonts/font8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/lib/Fonts/font8.c -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/lib/Fonts/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/lib/Fonts/fonts.h -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/lib/GUI/GUI_BMPfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/lib/GUI/GUI_BMPfile.c -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/lib/GUI/GUI_BMPfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/lib/GUI/GUI_BMPfile.h -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/lib/GUI/GUI_Paint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/lib/GUI/GUI_Paint.c -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/lib/GUI/GUI_Paint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/lib/GUI/GUI_Paint.h -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/lib/e-Paper/EPD_IT8951.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/lib/e-Paper/EPD_IT8951.c -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/lib/e-Paper/EPD_IT8951.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/lib/e-Paper/EPD_IT8951.h -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/readme_CN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/readme_CN.txt -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Raspberry/readme_EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Raspberry/readme_EN.txt -------------------------------------------------------------------------------- /rasp/IT8951-ePaper/Updated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-ePaper/Updated.md -------------------------------------------------------------------------------- /rasp/IT8951-python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/.gitignore -------------------------------------------------------------------------------- /rasp/IT8951-python/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/CHANGELOG.md -------------------------------------------------------------------------------- /rasp/IT8951-python/IT8951/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/IT8951/__init__.py -------------------------------------------------------------------------------- /rasp/IT8951-python/IT8951/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/IT8951/constants.py -------------------------------------------------------------------------------- /rasp/IT8951-python/IT8951/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/IT8951/display.py -------------------------------------------------------------------------------- /rasp/IT8951-python/IT8951/img_manip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/IT8951/img_manip.c -------------------------------------------------------------------------------- /rasp/IT8951-python/IT8951/img_manip.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/IT8951/img_manip.pyx -------------------------------------------------------------------------------- /rasp/IT8951-python/IT8951/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/IT8951/interface.py -------------------------------------------------------------------------------- /rasp/IT8951-python/IT8951/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/IT8951/spi.c -------------------------------------------------------------------------------- /rasp/IT8951-python/IT8951/spi.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/IT8951/spi.pyx -------------------------------------------------------------------------------- /rasp/IT8951-python/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/LICENSE -------------------------------------------------------------------------------- /rasp/IT8951-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/README.md -------------------------------------------------------------------------------- /rasp/IT8951-python/requirements.txt: -------------------------------------------------------------------------------- 1 | RPi.GPIO 2 | pillow 3 | -------------------------------------------------------------------------------- /rasp/IT8951-python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/setup.py -------------------------------------------------------------------------------- /rasp/IT8951-python/test/integration/images/sleeping_penguin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/test/integration/images/sleeping_penguin.png -------------------------------------------------------------------------------- /rasp/IT8951-python/test/integration/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/test/integration/test.py -------------------------------------------------------------------------------- /rasp/IT8951-python/test/integration/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/test/integration/test_functions.py -------------------------------------------------------------------------------- /rasp/IT8951-python/test/integration/time_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/test/integration/time_full.py -------------------------------------------------------------------------------- /rasp/IT8951-python/test/integration/time_partial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/test/integration/time_partial.py -------------------------------------------------------------------------------- /rasp/IT8951-python/test/unit/test_img_manip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/IT8951-python/test/unit/test_img_manip.py -------------------------------------------------------------------------------- /rasp/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/Pipfile -------------------------------------------------------------------------------- /rasp/battery-graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/battery-graph.sh -------------------------------------------------------------------------------- /rasp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/config.py -------------------------------------------------------------------------------- /rasp/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/image.py -------------------------------------------------------------------------------- /rasp/images/battery-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/images/battery-empty.png -------------------------------------------------------------------------------- /rasp/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/images/error.png -------------------------------------------------------------------------------- /rasp/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/main.py -------------------------------------------------------------------------------- /rasp/shutdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/shutdown.py -------------------------------------------------------------------------------- /rasp/shutdown_if_on_battery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/shutdown_if_on_battery.py -------------------------------------------------------------------------------- /rasp/usb-it8951/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/usb-it8951/CMakeLists.txt -------------------------------------------------------------------------------- /rasp/usb-it8951/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/usb-it8951/LICENSE -------------------------------------------------------------------------------- /rasp/usb-it8951/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/usb-it8951/README.md -------------------------------------------------------------------------------- /rasp/usb-it8951/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/usb-it8951/main.c -------------------------------------------------------------------------------- /rasp/usb-it8951/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/usb-it8951/test.c -------------------------------------------------------------------------------- /rasp/usb-it8951/vcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/usb-it8951/vcom.c -------------------------------------------------------------------------------- /rasp/wait-for-network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/rasp/wait-for-network.sh -------------------------------------------------------------------------------- /render/.env.example: -------------------------------------------------------------------------------- 1 | API_KEY="" 2 | TZ=UTC -------------------------------------------------------------------------------- /render/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/.eslintrc.json -------------------------------------------------------------------------------- /render/.node-version: -------------------------------------------------------------------------------- 1 | 18.12.0 2 | -------------------------------------------------------------------------------- /render/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/.prettierrc.json -------------------------------------------------------------------------------- /render/bin/ts-node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/bin/ts-node -------------------------------------------------------------------------------- /render/fixtures/fmi-ecmwf-full-parsed-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/fixtures/fmi-ecmwf-full-parsed-data.json -------------------------------------------------------------------------------- /render/fixtures/fmi-ecmwf-full-response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/fixtures/fmi-ecmwf-full-response.xml -------------------------------------------------------------------------------- /render/fixtures/fmi-harmonie-full-parsed-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/fixtures/fmi-harmonie-full-parsed-data.json -------------------------------------------------------------------------------- /render/fixtures/fmi-harmonie-full-response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/fixtures/fmi-harmonie-full-response.xml -------------------------------------------------------------------------------- /render/fixtures/fmi-response-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/fixtures/fmi-response-1.xml -------------------------------------------------------------------------------- /render/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/jest.config.js -------------------------------------------------------------------------------- /render/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/package-lock.json -------------------------------------------------------------------------------- /render/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/package.json -------------------------------------------------------------------------------- /render/src/entrypoints/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/entrypoints/cli.ts -------------------------------------------------------------------------------- /render/src/entrypoints/cloudFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/entrypoints/cloudFunction.ts -------------------------------------------------------------------------------- /render/src/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/environment.ts -------------------------------------------------------------------------------- /render/src/jestSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/jestSetup.ts -------------------------------------------------------------------------------- /render/src/libTypes/posthtml-inline-assets/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/libTypes/posthtml-inline-assets/index.d.ts -------------------------------------------------------------------------------- /render/src/rendering/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/rendering/core.ts -------------------------------------------------------------------------------- /render/src/rendering/posthtmlInlineStyleCssImports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/rendering/posthtmlInlineStyleCssImports.ts -------------------------------------------------------------------------------- /render/src/rendering/posthtmlReplace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/rendering/posthtmlReplace.ts -------------------------------------------------------------------------------- /render/src/rendering/puppeteer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/rendering/puppeteer.ts -------------------------------------------------------------------------------- /render/src/templates/assets/battery_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/assets/battery_0.svg -------------------------------------------------------------------------------- /render/src/templates/assets/battery_100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/assets/battery_100.svg -------------------------------------------------------------------------------- /render/src/templates/assets/battery_25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/assets/battery_25.svg -------------------------------------------------------------------------------- /render/src/templates/assets/battery_50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/assets/battery_50.svg -------------------------------------------------------------------------------- /render/src/templates/assets/battery_75.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/assets/battery_75.svg -------------------------------------------------------------------------------- /render/src/templates/assets/battery_charging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/assets/battery_charging.svg -------------------------------------------------------------------------------- /render/src/templates/assets/humidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/assets/humidity.svg -------------------------------------------------------------------------------- /render/src/templates/assets/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/assets/refresh.svg -------------------------------------------------------------------------------- /render/src/templates/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/css/layout.css -------------------------------------------------------------------------------- /render/src/templates/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/css/main.css -------------------------------------------------------------------------------- /render/src/templates/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/css/reset.css -------------------------------------------------------------------------------- /render/src/templates/css/top-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/css/top-bar.css -------------------------------------------------------------------------------- /render/src/templates/css/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/css/typography.css -------------------------------------------------------------------------------- /render/src/templates/css/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/css/variables.css -------------------------------------------------------------------------------- /render/src/templates/fonts/Atkinson-Hyperlegible-Bold-102a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/fonts/Atkinson-Hyperlegible-Bold-102a.woff2 -------------------------------------------------------------------------------- /render/src/templates/fonts/Atkinson-Hyperlegible-BoldItalic-102a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/fonts/Atkinson-Hyperlegible-BoldItalic-102a.woff2 -------------------------------------------------------------------------------- /render/src/templates/fonts/Atkinson-Hyperlegible-Italic-102a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/fonts/Atkinson-Hyperlegible-Italic-102a.woff2 -------------------------------------------------------------------------------- /render/src/templates/fonts/Atkinson-Hyperlegible-Regular-102a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/fonts/Atkinson-Hyperlegible-Regular-102a.woff2 -------------------------------------------------------------------------------- /render/src/templates/fonts/weathericons-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/fonts/weathericons-regular-webfont.woff2 -------------------------------------------------------------------------------- /render/src/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/index.html -------------------------------------------------------------------------------- /render/src/templates/js/d3.v7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/js/d3.v7.js -------------------------------------------------------------------------------- /render/src/templates/js/d3.v7.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/js/d3.v7.min.js -------------------------------------------------------------------------------- /render/src/templates/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/js/main.js -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-alien.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-alien.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-barometer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-barometer.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-celsius.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-celsius.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-cloud-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-cloud-down.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-cloud-refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-cloud-refresh.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-cloud-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-cloud-up.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-cloud.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-cloudy-gusts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-cloudy-gusts.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-cloudy-windy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-cloudy-windy.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-cloudy.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-cloudy-gusts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-cloudy-gusts.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-cloudy-high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-cloudy-high.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-cloudy-windy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-cloudy-windy.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-cloudy.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-fog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-fog.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-hail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-hail.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-haze.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-haze.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-light-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-light-wind.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-lightning.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-rain-mix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-rain-mix.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-rain-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-rain-wind.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-rain.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-showers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-showers.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-sleet-storm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-sleet-storm.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-sleet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-sleet.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-snow-thunderstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-snow-thunderstorm.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-snow-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-snow-wind.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-snow.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-sprinkle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-sprinkle.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-storm-showers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-storm-showers.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-sunny-overcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-sunny-overcast.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-sunny.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-thunderstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-thunderstorm.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-day-windy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-day-windy.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-degrees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-degrees.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-direction-down-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-direction-down-left.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-direction-down-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-direction-down-right.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-direction-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-direction-down.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-direction-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-direction-left.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-direction-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-direction-right.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-direction-up-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-direction-up-left.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-direction-up-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-direction-up-right.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-direction-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-direction-up.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-dust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-dust.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-earthquake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-earthquake.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-fahrenheit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-fahrenheit.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-fire.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-flood.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-flood.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-fog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-fog.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-gale-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-gale-warning.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-hail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-hail.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-horizon-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-horizon-alt.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-horizon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-horizon.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-hot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-hot.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-humidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-humidity.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-hurricane-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-hurricane-warning.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-hurricane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-hurricane.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-lightning.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-lunar-eclipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-lunar-eclipse.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-meteor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-meteor.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-first-quarter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-first-quarter.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-full.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-new.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-third-quarter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-third-quarter.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-crescent-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-crescent-1.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-crescent-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-crescent-2.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-crescent-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-crescent-3.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-crescent-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-crescent-4.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-crescent-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-crescent-5.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-crescent-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-crescent-6.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-gibbous-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-gibbous-1.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-gibbous-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-gibbous-2.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-gibbous-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-gibbous-3.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-gibbous-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-gibbous-4.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-gibbous-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-gibbous-5.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-gibbous-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waning-gibbous-6.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-crescent-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-crescent-1.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-crescent-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-crescent-2.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-crescent-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-crescent-3.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-crescent-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-crescent-4.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-crescent-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-crescent-5.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-crescent-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-crescent-6.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-gibbous-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-gibbous-1.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-gibbous-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-gibbous-2.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-gibbous-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-gibbous-3.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-gibbous-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-gibbous-4.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-gibbous-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-gibbous-5.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-gibbous-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-alt-waxing-gibbous-6.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-first-quarter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-first-quarter.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-full.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-new.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-third-quarter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-third-quarter.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waning-crescent-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waning-crescent-1.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waning-crescent-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waning-crescent-2.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waning-crescent-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waning-crescent-3.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waning-crescent-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waning-crescent-4.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waning-crescent-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waning-crescent-5.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waning-crescent-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waning-crescent-6.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waning-gibbous-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waning-gibbous-1.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waning-gibbous-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waning-gibbous-2.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waning-gibbous-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waning-gibbous-3.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waning-gibbous-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waning-gibbous-4.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waning-gibbous-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waning-gibbous-5.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waning-gibbous-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waning-gibbous-6.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waxing-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waxing-6.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waxing-crescent-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waxing-crescent-1.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waxing-crescent-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waxing-crescent-2.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waxing-crescent-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waxing-crescent-3.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waxing-crescent-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waxing-crescent-4.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waxing-crescent-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waxing-crescent-5.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waxing-gibbous-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waxing-gibbous-1.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waxing-gibbous-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waxing-gibbous-2.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waxing-gibbous-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waxing-gibbous-3.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waxing-gibbous-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waxing-gibbous-4.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waxing-gibbous-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waxing-gibbous-5.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moon-waxing-gibbous-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moon-waxing-gibbous-6.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moonrise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moonrise.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-moonset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-moonset.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-na.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-na.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-cloudy-gusts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-cloudy-gusts.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-cloudy-high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-cloudy-high.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-cloudy-windy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-cloudy-windy.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-cloudy.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-hail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-hail.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-lightning.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-partly-cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-partly-cloudy.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-rain-mix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-rain-mix.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-rain-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-rain-wind.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-rain.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-showers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-showers.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-sleet-storm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-sleet-storm.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-sleet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-sleet.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-snow-thunderstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-snow-thunderstorm.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-snow-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-snow-wind.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-snow.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-sprinkle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-sprinkle.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-storm-showers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-storm-showers.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-alt-thunderstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-alt-thunderstorm.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-clear.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-cloudy-gusts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-cloudy-gusts.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-cloudy-high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-cloudy-high.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-cloudy-windy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-cloudy-windy.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-cloudy.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-fog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-fog.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-hail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-hail.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-lightning.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-partly-cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-partly-cloudy.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-rain-mix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-rain-mix.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-rain-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-rain-wind.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-rain.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-showers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-showers.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-sleet-storm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-sleet-storm.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-sleet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-sleet.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-snow-thunderstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-snow-thunderstorm.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-snow-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-snow-wind.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-snow.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-sprinkle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-sprinkle.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-storm-showers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-storm-showers.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-night-thunderstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-night-thunderstorm.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-rain-mix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-rain-mix.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-rain-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-rain-wind.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-rain.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-raindrop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-raindrop.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-raindrops.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-raindrops.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-refresh-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-refresh-alt.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-refresh.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-sandstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-sandstorm.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-showers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-showers.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-sleet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-sleet.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-small-craft-advisory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-small-craft-advisory.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-smog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-smog.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-smoke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-smoke.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-snow-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-snow-wind.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-snow.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-snowflake-cold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-snowflake-cold.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-solar-eclipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-solar-eclipse.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-sprinkle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-sprinkle.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-stars.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-storm-showers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-storm-showers.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-storm-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-storm-warning.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-strong-wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-strong-wind.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-sunrise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-sunrise.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-sunset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-sunset.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-thermometer-exterior.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-thermometer-exterior.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-thermometer-internal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-thermometer-internal.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-thermometer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-thermometer.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-thunderstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-thunderstorm.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-time-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-time-1.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-time-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-time-10.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-time-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-time-11.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-time-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-time-12.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-time-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-time-2.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-time-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-time-3.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-time-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-time-4.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-time-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-time-5.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-time-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-time-6.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-time-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-time-7.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-time-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-time-8.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-time-9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-time-9.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-tornado.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-tornado.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-train.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-tsunami.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-tsunami.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-umbrella.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-umbrella.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-volcano.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-volcano.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-0.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-1.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-10.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-11.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-12.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-2.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-3.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-4.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-5.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-6.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-7.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-8.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-wind-beaufort-9.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-wind-deg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-wind-deg.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/svg-icons/wi-windy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/svg-icons/wi-windy.svg -------------------------------------------------------------------------------- /render/src/templates/weather-icons/weather-icons-wind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/weather-icons-wind.css -------------------------------------------------------------------------------- /render/src/templates/weather-icons/weather-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/weather-icons.css -------------------------------------------------------------------------------- /render/src/templates/weather-icons/wind-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/wind-warning.png -------------------------------------------------------------------------------- /render/src/templates/weather-icons/wind-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/templates/weather-icons/wind-warning.svg -------------------------------------------------------------------------------- /render/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/types.ts -------------------------------------------------------------------------------- /render/src/utils/HttpError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/utils/HttpError.ts -------------------------------------------------------------------------------- /render/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/utils/logger.ts -------------------------------------------------------------------------------- /render/src/utils/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/utils/utils.test.ts -------------------------------------------------------------------------------- /render/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/utils/utils.ts -------------------------------------------------------------------------------- /render/src/weather/fmiApi.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/weather/fmiApi.test.ts -------------------------------------------------------------------------------- /render/src/weather/fmiApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/weather/fmiApi.ts -------------------------------------------------------------------------------- /render/src/weather/meteoApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/weather/meteoApi.ts -------------------------------------------------------------------------------- /render/src/weather/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/weather/random.ts -------------------------------------------------------------------------------- /render/src/weather/weather.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/weather/weather.test.ts -------------------------------------------------------------------------------- /render/src/weather/weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/weather/weather.ts -------------------------------------------------------------------------------- /render/src/weather/weatherSymbol.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/weather/weatherSymbol.test.ts -------------------------------------------------------------------------------- /render/src/weather/weatherSymbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/src/weather/weatherSymbol.ts -------------------------------------------------------------------------------- /render/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmobrunfeldt/eink-weather-display/HEAD/render/tsconfig.json --------------------------------------------------------------------------------