Added a lot of links

main
Paco Hope 2023-11-28 08:05:52 -05:00
parent 7a7f5d3b92
commit abbbd40882
1 changed files with 13 additions and 1 deletions

View File

@ -1,6 +1,6 @@
# inky-lovelace
A python script for running on micropython on an [Inky Frame](https://learn.pimoroni.com/article/getting-started-with-inky-frame).
A python script for fetching a [Lovelace dashboard](https://www.home-assistant.io/dashboards/) from [HomeAssistant](https://www.home-assistant.io/) on micropython on an [Inky Frame](https://learn.pimoroni.com/article/getting-started-with-inky-frame).
## Example
@ -10,4 +10,16 @@ Here's what it looks like
# Background Notes
These are all web sites, videos, and references I used when putting it together.
## Micropython
- [Inky Frame micropython from Pimoroni](https://github.com/pimoroni/pimoroni-pico/tree/main/micropython/examples/inky_frame)
- I pulled the SD card code from [image_gallery_sd.py](https://github.com/pimoroni/pimoroni-pico/blob/main/micropython/examples/inky_frame/image_gallery/image_gallery_sd.py)
- I pulled the Wifi connection code from [RTC Clock Demo](https://github.com/pimoroni/pimoroni-pico/blob/main/micropython/examples/inky_frame/inky_frame_rtc_demo.py)
- I couldn't find any examples or documentation for how to use [pngdec](https://github.com/pimoroni/pimoroni-pico/tree/main/micropython/modules/pngdec), which is the library for decoding and displaying PNG images. Luckily, it works a lot like [jpegdec](https://github.com/pimoroni/pimoroni-pico/tree/main/micropython/modules/jpegdec) and so I used the same APIs and it worked.
## Hass Screen Saver Kindle
- The [main repository](https://github.com/sibbl/hass-lovelace-kindle-screensaver/tree/main)
- [Puppeteer time zone](https://dev.to/sonyarianto/practical-puppeteer-how-to-emulate-timezone-8d5)