Weather HAT for the Pi

Hello,

Is it possible to retrieve data from the Weather HAT for the Pi to add it on a picture taken by a Pi camera at regular intervals (every hour)?

Thank you.

Yes, no problem. Save your image, retrieve your data and then write it as text on it. You have multiple options, e.g. PIL (python image library, also known as pillow), or ImageMagick. The latter is very simple, just search for ImageMagick examples, they have a very large knowledgebase and examples for all kind of stuff. But if you are good at programming then implementing it with PIL is also very simple.

1 Like

Thank you for your reply.