├── .clang-format ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── resources ├── .gitkeep ├── bg.afdesign ├── bg.png ├── screenshots │ └── screenshot1.png ├── temperature-scale.afdesign ├── temperature-scale.png ├── weather-icon-cloud-1.png ├── weather-icon-cloud-2.png ├── weather-icon-cloud-3.png ├── weather-icon-cloud-4.png ├── weather-icon-moon-cloud-1.png ├── weather-icon-moon.png ├── weather-icon-snow.png ├── weather-icon-sun.png └── weather-icons.afdesign ├── scripts ├── build.sh ├── build_init.sh └── run.sh └── src ├── main.cpp ├── matrix_driver.h ├── matrix_driver_rpi.cpp └── matrix_driver_shim.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/README.md -------------------------------------------------------------------------------- /resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/bg.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/resources/bg.afdesign -------------------------------------------------------------------------------- /resources/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/resources/bg.png -------------------------------------------------------------------------------- /resources/screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/resources/screenshots/screenshot1.png -------------------------------------------------------------------------------- /resources/temperature-scale.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/resources/temperature-scale.afdesign -------------------------------------------------------------------------------- /resources/temperature-scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/resources/temperature-scale.png -------------------------------------------------------------------------------- /resources/weather-icon-cloud-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/resources/weather-icon-cloud-1.png -------------------------------------------------------------------------------- /resources/weather-icon-cloud-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/resources/weather-icon-cloud-2.png -------------------------------------------------------------------------------- /resources/weather-icon-cloud-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/resources/weather-icon-cloud-3.png -------------------------------------------------------------------------------- /resources/weather-icon-cloud-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/resources/weather-icon-cloud-4.png -------------------------------------------------------------------------------- /resources/weather-icon-moon-cloud-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/resources/weather-icon-moon-cloud-1.png -------------------------------------------------------------------------------- /resources/weather-icon-moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/resources/weather-icon-moon.png -------------------------------------------------------------------------------- /resources/weather-icon-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/resources/weather-icon-snow.png -------------------------------------------------------------------------------- /resources/weather-icon-sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/resources/weather-icon-sun.png -------------------------------------------------------------------------------- /resources/weather-icons.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/resources/weather-icons.afdesign -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/build_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/scripts/build_init.sh -------------------------------------------------------------------------------- /scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/scripts/run.sh -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/matrix_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/src/matrix_driver.h -------------------------------------------------------------------------------- /src/matrix_driver_rpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/src/matrix_driver_rpi.cpp -------------------------------------------------------------------------------- /src/matrix_driver_shim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdalke/led-matrix-clock/HEAD/src/matrix_driver_shim.cpp --------------------------------------------------------------------------------