├── .gitignore ├── .project ├── .pydevproject ├── .settings └── org.eclipse.core.resources.prefs ├── Button ├── Makefile ├── generate_uinput_names.sh ├── gpio-keys ├── gpio-keys.c └── uinput_names.inc ├── Clock ├── .gitignore ├── ApiKeys-example.py ├── Config-Example-Bedside.py ├── Config-Example-Berlin.py ├── Config-Example-London.py ├── Config-Example.py ├── GoogleMercatorProjection.py ├── PyQtPiClock.py ├── icons-darkblue │ ├── .gitignore │ ├── clear-day.png │ ├── clear-night.png │ ├── cloudy.png │ ├── fog.png │ ├── partly-cloudy-day.png │ ├── partly-cloudy-night.png │ ├── rain.png │ ├── sleet.png │ ├── snow.png │ ├── thunderstorm.png │ └── wind.png ├── icons-darkgreen │ ├── clear-day.png │ ├── clear-night.png │ ├── cloudy.png │ ├── fog.png │ ├── partly-cloudy-day.png │ ├── partly-cloudy-night.png │ ├── rain.png │ ├── sleet.png │ ├── snow.png │ ├── thunderstorm.png │ └── wind.png ├── icons-lightblue │ ├── .gitignore │ ├── clear-day.png │ ├── clear-night.png │ ├── cloudy.png │ ├── fog.png │ ├── partly-cloudy-day.png │ ├── partly-cloudy-night.png │ ├── rain.png │ ├── sleet.png │ ├── snow.png │ ├── thunderstorm.png │ └── wind.png ├── images │ ├── .gitignore │ ├── berlin-at-night-mrwallpaper.jpg │ ├── clockbackground-chris.png │ ├── clockbackground-jean.png │ ├── clockbackground-kelly.png │ ├── clockbackground-kevin.png │ ├── clockbackground.png │ ├── clockface3-darkblue.png │ ├── clockface3-darkgreen.png │ ├── clockface3.png │ ├── hourhand-darkblue.png │ ├── hourhand-darkgreen.png │ ├── hourhand.png │ ├── minhand-darkblue.png │ ├── minhand-darkgreen.png │ ├── minhand.png │ ├── sechand-darkblue.png │ ├── sechand-darkgreen.png │ ├── sechand.png │ ├── slideshow │ │ ├── daniel-h-tong-1310255-unsplash.jpg │ │ ├── johannes-plenio-629984-unsplash.jpg │ │ ├── nasa-53888-unsplash.jpg │ │ ├── patrick-tomasso-1311143-unsplash.jpg │ │ ├── roman-bozhko-251398-unsplash.jpg │ │ └── shot-by-cerqueira-1318576-unsplash.jpg │ ├── squares1-green.png │ ├── squares1-jean.png │ ├── squares1-kevin.png │ ├── squares2-green.png │ ├── squares2-jean.png │ └── squares2-kevin.png └── markers │ ├── Readme.md │ ├── markers.xcf │ ├── teardrop-dot.png │ ├── teardrop-family.png │ ├── teardrop-home.png │ ├── teardrop-school.png │ ├── teardrop-work.png │ └── teardrop.png ├── Contributed ├── PiClock_neo-aeon-Clockface-FliegerB.zip ├── PiClock_neo-aeon-ClockfaceGuide-GIMP.zip └── Readme.md ├── Documentation ├── 2015-06-11_10-36-44.png ├── Digital Clock v1.jpg ├── Digital Clock v2.jpg ├── Hardware.md ├── Hardware_Schematic.pdf ├── Hardware_Schematic.png ├── Hardware_Schematic.sch ├── Install-Clock-Only.md ├── Install-Jessie.md ├── Install.md ├── NeoPixel.jpg ├── Overview.md ├── ds18b20.jpg ├── gpiobuttons.jpg └── tsop4838.jpg ├── IR ├── IRCodes.pl └── lircd.conf ├── LICENSE ├── Leds └── NeoAmbi.py ├── PiClock.desktop ├── Pictures ├── 20141222_220127.jpg ├── 20141227_174953.jpg ├── 2015-05-10_17-01-52.png ├── 2015-05-16_17-36-06.png ├── 20150307_222711.jpg ├── 20150326_225245.jpg ├── 20150326_225305_Fotor_Collage.jpg ├── 20150404_165441_Fotor_Collage.jpg └── 20150412_182821a.jpg ├── README.md ├── Temperature ├── TempNames.py └── TempServer.py ├── gimp ├── Readme.md ├── clockbackground.xcf ├── clockbackground5.xcf ├── clockface3.xcf ├── hourhand.xcf ├── jeansxcf.xcf ├── minhand.xcf ├── sechand.xcf ├── squares2.xcf └── squres1.xcf ├── startup.sh ├── switcher.sh └── update.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/.pydevproject -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /Button/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Button/Makefile -------------------------------------------------------------------------------- /Button/generate_uinput_names.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Button/generate_uinput_names.sh -------------------------------------------------------------------------------- /Button/gpio-keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Button/gpio-keys -------------------------------------------------------------------------------- /Button/gpio-keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Button/gpio-keys.c -------------------------------------------------------------------------------- /Button/uinput_names.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Button/uinput_names.inc -------------------------------------------------------------------------------- /Clock/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/.gitignore -------------------------------------------------------------------------------- /Clock/ApiKeys-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/ApiKeys-example.py -------------------------------------------------------------------------------- /Clock/Config-Example-Bedside.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/Config-Example-Bedside.py -------------------------------------------------------------------------------- /Clock/Config-Example-Berlin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/Config-Example-Berlin.py -------------------------------------------------------------------------------- /Clock/Config-Example-London.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/Config-Example-London.py -------------------------------------------------------------------------------- /Clock/Config-Example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/Config-Example.py -------------------------------------------------------------------------------- /Clock/GoogleMercatorProjection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/GoogleMercatorProjection.py -------------------------------------------------------------------------------- /Clock/PyQtPiClock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/PyQtPiClock.py -------------------------------------------------------------------------------- /Clock/icons-darkblue/.gitignore: -------------------------------------------------------------------------------- 1 | /Thumbs.db 2 | -------------------------------------------------------------------------------- /Clock/icons-darkblue/clear-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkblue/clear-day.png -------------------------------------------------------------------------------- /Clock/icons-darkblue/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkblue/clear-night.png -------------------------------------------------------------------------------- /Clock/icons-darkblue/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkblue/cloudy.png -------------------------------------------------------------------------------- /Clock/icons-darkblue/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkblue/fog.png -------------------------------------------------------------------------------- /Clock/icons-darkblue/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkblue/partly-cloudy-day.png -------------------------------------------------------------------------------- /Clock/icons-darkblue/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkblue/partly-cloudy-night.png -------------------------------------------------------------------------------- /Clock/icons-darkblue/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkblue/rain.png -------------------------------------------------------------------------------- /Clock/icons-darkblue/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkblue/sleet.png -------------------------------------------------------------------------------- /Clock/icons-darkblue/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkblue/snow.png -------------------------------------------------------------------------------- /Clock/icons-darkblue/thunderstorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkblue/thunderstorm.png -------------------------------------------------------------------------------- /Clock/icons-darkblue/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkblue/wind.png -------------------------------------------------------------------------------- /Clock/icons-darkgreen/clear-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkgreen/clear-day.png -------------------------------------------------------------------------------- /Clock/icons-darkgreen/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkgreen/clear-night.png -------------------------------------------------------------------------------- /Clock/icons-darkgreen/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkgreen/cloudy.png -------------------------------------------------------------------------------- /Clock/icons-darkgreen/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkgreen/fog.png -------------------------------------------------------------------------------- /Clock/icons-darkgreen/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkgreen/partly-cloudy-day.png -------------------------------------------------------------------------------- /Clock/icons-darkgreen/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkgreen/partly-cloudy-night.png -------------------------------------------------------------------------------- /Clock/icons-darkgreen/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkgreen/rain.png -------------------------------------------------------------------------------- /Clock/icons-darkgreen/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkgreen/sleet.png -------------------------------------------------------------------------------- /Clock/icons-darkgreen/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkgreen/snow.png -------------------------------------------------------------------------------- /Clock/icons-darkgreen/thunderstorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkgreen/thunderstorm.png -------------------------------------------------------------------------------- /Clock/icons-darkgreen/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-darkgreen/wind.png -------------------------------------------------------------------------------- /Clock/icons-lightblue/.gitignore: -------------------------------------------------------------------------------- 1 | /Thumbs.db 2 | -------------------------------------------------------------------------------- /Clock/icons-lightblue/clear-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-lightblue/clear-day.png -------------------------------------------------------------------------------- /Clock/icons-lightblue/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-lightblue/clear-night.png -------------------------------------------------------------------------------- /Clock/icons-lightblue/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-lightblue/cloudy.png -------------------------------------------------------------------------------- /Clock/icons-lightblue/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-lightblue/fog.png -------------------------------------------------------------------------------- /Clock/icons-lightblue/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-lightblue/partly-cloudy-day.png -------------------------------------------------------------------------------- /Clock/icons-lightblue/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-lightblue/partly-cloudy-night.png -------------------------------------------------------------------------------- /Clock/icons-lightblue/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-lightblue/rain.png -------------------------------------------------------------------------------- /Clock/icons-lightblue/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-lightblue/sleet.png -------------------------------------------------------------------------------- /Clock/icons-lightblue/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-lightblue/snow.png -------------------------------------------------------------------------------- /Clock/icons-lightblue/thunderstorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-lightblue/thunderstorm.png -------------------------------------------------------------------------------- /Clock/icons-lightblue/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/icons-lightblue/wind.png -------------------------------------------------------------------------------- /Clock/images/.gitignore: -------------------------------------------------------------------------------- 1 | /Thumbs.db 2 | /london-at-night-wallpapers.jpg 3 | -------------------------------------------------------------------------------- /Clock/images/berlin-at-night-mrwallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/berlin-at-night-mrwallpaper.jpg -------------------------------------------------------------------------------- /Clock/images/clockbackground-chris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/clockbackground-chris.png -------------------------------------------------------------------------------- /Clock/images/clockbackground-jean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/clockbackground-jean.png -------------------------------------------------------------------------------- /Clock/images/clockbackground-kelly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/clockbackground-kelly.png -------------------------------------------------------------------------------- /Clock/images/clockbackground-kevin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/clockbackground-kevin.png -------------------------------------------------------------------------------- /Clock/images/clockbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/clockbackground.png -------------------------------------------------------------------------------- /Clock/images/clockface3-darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/clockface3-darkblue.png -------------------------------------------------------------------------------- /Clock/images/clockface3-darkgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/clockface3-darkgreen.png -------------------------------------------------------------------------------- /Clock/images/clockface3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/clockface3.png -------------------------------------------------------------------------------- /Clock/images/hourhand-darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/hourhand-darkblue.png -------------------------------------------------------------------------------- /Clock/images/hourhand-darkgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/hourhand-darkgreen.png -------------------------------------------------------------------------------- /Clock/images/hourhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/hourhand.png -------------------------------------------------------------------------------- /Clock/images/minhand-darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/minhand-darkblue.png -------------------------------------------------------------------------------- /Clock/images/minhand-darkgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/minhand-darkgreen.png -------------------------------------------------------------------------------- /Clock/images/minhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/minhand.png -------------------------------------------------------------------------------- /Clock/images/sechand-darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/sechand-darkblue.png -------------------------------------------------------------------------------- /Clock/images/sechand-darkgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/sechand-darkgreen.png -------------------------------------------------------------------------------- /Clock/images/sechand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/sechand.png -------------------------------------------------------------------------------- /Clock/images/slideshow/daniel-h-tong-1310255-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/slideshow/daniel-h-tong-1310255-unsplash.jpg -------------------------------------------------------------------------------- /Clock/images/slideshow/johannes-plenio-629984-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/slideshow/johannes-plenio-629984-unsplash.jpg -------------------------------------------------------------------------------- /Clock/images/slideshow/nasa-53888-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/slideshow/nasa-53888-unsplash.jpg -------------------------------------------------------------------------------- /Clock/images/slideshow/patrick-tomasso-1311143-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/slideshow/patrick-tomasso-1311143-unsplash.jpg -------------------------------------------------------------------------------- /Clock/images/slideshow/roman-bozhko-251398-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/slideshow/roman-bozhko-251398-unsplash.jpg -------------------------------------------------------------------------------- /Clock/images/slideshow/shot-by-cerqueira-1318576-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/slideshow/shot-by-cerqueira-1318576-unsplash.jpg -------------------------------------------------------------------------------- /Clock/images/squares1-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/squares1-green.png -------------------------------------------------------------------------------- /Clock/images/squares1-jean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/squares1-jean.png -------------------------------------------------------------------------------- /Clock/images/squares1-kevin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/squares1-kevin.png -------------------------------------------------------------------------------- /Clock/images/squares2-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/squares2-green.png -------------------------------------------------------------------------------- /Clock/images/squares2-jean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/squares2-jean.png -------------------------------------------------------------------------------- /Clock/images/squares2-kevin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/images/squares2-kevin.png -------------------------------------------------------------------------------- /Clock/markers/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/markers/Readme.md -------------------------------------------------------------------------------- /Clock/markers/markers.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/markers/markers.xcf -------------------------------------------------------------------------------- /Clock/markers/teardrop-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/markers/teardrop-dot.png -------------------------------------------------------------------------------- /Clock/markers/teardrop-family.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/markers/teardrop-family.png -------------------------------------------------------------------------------- /Clock/markers/teardrop-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/markers/teardrop-home.png -------------------------------------------------------------------------------- /Clock/markers/teardrop-school.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/markers/teardrop-school.png -------------------------------------------------------------------------------- /Clock/markers/teardrop-work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/markers/teardrop-work.png -------------------------------------------------------------------------------- /Clock/markers/teardrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Clock/markers/teardrop.png -------------------------------------------------------------------------------- /Contributed/PiClock_neo-aeon-Clockface-FliegerB.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Contributed/PiClock_neo-aeon-Clockface-FliegerB.zip -------------------------------------------------------------------------------- /Contributed/PiClock_neo-aeon-ClockfaceGuide-GIMP.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Contributed/PiClock_neo-aeon-ClockfaceGuide-GIMP.zip -------------------------------------------------------------------------------- /Contributed/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Contributed/Readme.md -------------------------------------------------------------------------------- /Documentation/2015-06-11_10-36-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Documentation/2015-06-11_10-36-44.png -------------------------------------------------------------------------------- /Documentation/Digital Clock v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Documentation/Digital Clock v1.jpg -------------------------------------------------------------------------------- /Documentation/Digital Clock v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Documentation/Digital Clock v2.jpg -------------------------------------------------------------------------------- /Documentation/Hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Documentation/Hardware.md -------------------------------------------------------------------------------- /Documentation/Hardware_Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Documentation/Hardware_Schematic.pdf -------------------------------------------------------------------------------- /Documentation/Hardware_Schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Documentation/Hardware_Schematic.png -------------------------------------------------------------------------------- /Documentation/Hardware_Schematic.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Documentation/Hardware_Schematic.sch -------------------------------------------------------------------------------- /Documentation/Install-Clock-Only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Documentation/Install-Clock-Only.md -------------------------------------------------------------------------------- /Documentation/Install-Jessie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Documentation/Install-Jessie.md -------------------------------------------------------------------------------- /Documentation/Install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Documentation/Install.md -------------------------------------------------------------------------------- /Documentation/NeoPixel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Documentation/NeoPixel.jpg -------------------------------------------------------------------------------- /Documentation/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Documentation/Overview.md -------------------------------------------------------------------------------- /Documentation/ds18b20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Documentation/ds18b20.jpg -------------------------------------------------------------------------------- /Documentation/gpiobuttons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Documentation/gpiobuttons.jpg -------------------------------------------------------------------------------- /Documentation/tsop4838.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Documentation/tsop4838.jpg -------------------------------------------------------------------------------- /IR/IRCodes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/IR/IRCodes.pl -------------------------------------------------------------------------------- /IR/lircd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/IR/lircd.conf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/LICENSE -------------------------------------------------------------------------------- /Leds/NeoAmbi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Leds/NeoAmbi.py -------------------------------------------------------------------------------- /PiClock.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/PiClock.desktop -------------------------------------------------------------------------------- /Pictures/20141222_220127.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Pictures/20141222_220127.jpg -------------------------------------------------------------------------------- /Pictures/20141227_174953.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Pictures/20141227_174953.jpg -------------------------------------------------------------------------------- /Pictures/2015-05-10_17-01-52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Pictures/2015-05-10_17-01-52.png -------------------------------------------------------------------------------- /Pictures/2015-05-16_17-36-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Pictures/2015-05-16_17-36-06.png -------------------------------------------------------------------------------- /Pictures/20150307_222711.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Pictures/20150307_222711.jpg -------------------------------------------------------------------------------- /Pictures/20150326_225245.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Pictures/20150326_225245.jpg -------------------------------------------------------------------------------- /Pictures/20150326_225305_Fotor_Collage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Pictures/20150326_225305_Fotor_Collage.jpg -------------------------------------------------------------------------------- /Pictures/20150404_165441_Fotor_Collage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Pictures/20150404_165441_Fotor_Collage.jpg -------------------------------------------------------------------------------- /Pictures/20150412_182821a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Pictures/20150412_182821a.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/README.md -------------------------------------------------------------------------------- /Temperature/TempNames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Temperature/TempNames.py -------------------------------------------------------------------------------- /Temperature/TempServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/Temperature/TempServer.py -------------------------------------------------------------------------------- /gimp/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/gimp/Readme.md -------------------------------------------------------------------------------- /gimp/clockbackground.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/gimp/clockbackground.xcf -------------------------------------------------------------------------------- /gimp/clockbackground5.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/gimp/clockbackground5.xcf -------------------------------------------------------------------------------- /gimp/clockface3.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/gimp/clockface3.xcf -------------------------------------------------------------------------------- /gimp/hourhand.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/gimp/hourhand.xcf -------------------------------------------------------------------------------- /gimp/jeansxcf.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/gimp/jeansxcf.xcf -------------------------------------------------------------------------------- /gimp/minhand.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/gimp/minhand.xcf -------------------------------------------------------------------------------- /gimp/sechand.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/gimp/sechand.xcf -------------------------------------------------------------------------------- /gimp/squares2.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/gimp/squares2.xcf -------------------------------------------------------------------------------- /gimp/squres1.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/gimp/squres1.xcf -------------------------------------------------------------------------------- /startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/startup.sh -------------------------------------------------------------------------------- /switcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/switcher.sh -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0bel/PiClock/HEAD/update.py --------------------------------------------------------------------------------