├── .github └── FUNDING.yml ├── .gitignore ├── GooglePhotoClock ├── GooglePhotoClock.ino ├── data │ └── certs.ar ├── esp_jpg_decode.c ├── esp_jpg_decode.h ├── make_spiffs.py ├── tjpgd.c └── tjpgd.h └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: moononournation 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | -------------------------------------------------------------------------------- /GooglePhotoClock/GooglePhotoClock.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/GooglePhotoClock/HEAD/GooglePhotoClock/GooglePhotoClock.ino -------------------------------------------------------------------------------- /GooglePhotoClock/data/certs.ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/GooglePhotoClock/HEAD/GooglePhotoClock/data/certs.ar -------------------------------------------------------------------------------- /GooglePhotoClock/esp_jpg_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/GooglePhotoClock/HEAD/GooglePhotoClock/esp_jpg_decode.c -------------------------------------------------------------------------------- /GooglePhotoClock/esp_jpg_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/GooglePhotoClock/HEAD/GooglePhotoClock/esp_jpg_decode.h -------------------------------------------------------------------------------- /GooglePhotoClock/make_spiffs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/GooglePhotoClock/HEAD/GooglePhotoClock/make_spiffs.py -------------------------------------------------------------------------------- /GooglePhotoClock/tjpgd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/GooglePhotoClock/HEAD/GooglePhotoClock/tjpgd.c -------------------------------------------------------------------------------- /GooglePhotoClock/tjpgd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/GooglePhotoClock/HEAD/GooglePhotoClock/tjpgd.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moononournation/GooglePhotoClock/HEAD/README.md --------------------------------------------------------------------------------