Hi! I'm trying to find some guidance on where to start to learn how to create some code or use existing one and tools for my old Kobo Aura (non-HD).
I am looking to create a weather station like
this one for kindle as it contains all the information i want to have on the screen, as opposed to the other already existing Kobo weather dashboards.
That Kindle dashboard basically gets the weather data with an API and created an SVG with that data, turns it into an image and displays it on the kindle. The advantage is that it runs on the kindle itself (via python) and it has some features that put the kindle to sleep and wakes it up automatically, to save lots of battery in the process.
I was able to run the script on a computer and I can generate the updated SVG and PNG files, and now i was thinking of a few options to put that information on my kobo screen. Which one do you think would be better/efficient?
a) Create a webpage that is hosted locally on the kobo aura, that downloads the image from my computer (acting as a server) and refreshed the image every X minutes/hours
b) Host the whole python script and have it run locally on my kobo, adjusting some parameters to see if I can have the same battery optimizations
c) is there a more elegant solution that has already been implemented on Kobo to do something similar?
What would be a good starting point to get python running on my Kobo and then connecting to it to test if some of the code runs locally, and see if there are any parameters that i can use to optimize battery life?
Thanks for the guidance. I don't expect anyone to provide me the solution directly, and am of course willing to put some thinking on my end.