I have done simple and minimalistic widget to my android phone main-screen with kwgt.
Now I wish to get data from my weather station to it, but this feels a bit complicated even impossible.
Has anyone done this? Or is this overall possible because limited requests, time limited tokens etc..?
If someone has already done this, can you share how you did this?
chears!
Weather station data to customized android widget?
-
- Posts: 10
- Joined: 18 Jul 2019, 09:51
Re: Weather station data to customized android widget?
Hi!
The request limit if you have less than 100 users:
200 requests every 10 seconds
2000 requests every hour
That's quite alot, almost 2 requests every seconds. The weather station gets new readings every 5 minutes and sends to the servers every 10 minutes. Simply make sure you don't make a loop
You have all the resources here: https://dev.netatmo.com/resources/techn ... troduction
And if you have a question you can always ask the support. Of course we won't teach how to code but we are happy to give a hand if you get stuck.
Have a nice day!
The request limit if you have less than 100 users:
200 requests every 10 seconds
2000 requests every hour
That's quite alot, almost 2 requests every seconds. The weather station gets new readings every 5 minutes and sends to the servers every 10 minutes. Simply make sure you don't make a loop

You have all the resources here: https://dev.netatmo.com/resources/techn ... troduction
And if you have a question you can always ask the support. Of course we won't teach how to code but we are happy to give a hand if you get stuck.
Have a nice day!
Re: Weather station data to customized android widget?
Thanks Daegil, I managed to done this! It works perfectly.