Netatmo integration: Add value (current outside temp) to virtual thermometer via url
Hi team,
I'm looking to create some rules based on the outside temperature.
Although the virtual weather station is a good start it is not update frequently enough to be reliable and usable in my scenarios.
I also have a Netatmo weather station which updates more frequently. I managed to install the API on my synology and have an URL that only gives a value on the page "99.9" nothing more nothing less.
I've created the virtual thermometer and got the URL of the virtual thermometer and paste my URL after the "=" sign. I get a GUID back but the temperature is not updated.
Are there any constraints in data that needs to be passed to the zipato? Do I need it to be in an array? Does it need to be int or float?
Anyone out there who already managed to get this working?
Thanks in advance!
I use this : // Script développé par Cédric Locqueneux. http://maison-et-domotique.com
// Synthase: http://www.maison-et-domotique.com/scripts/netatmo.php?login=VOTRE_EMAIL&password=MOTDEPASSE
It's works
I use this : // Script développé par Cédric Locqueneux. http://maison-et-domotique.com
// Synthase: http://www.maison-et-domotique.com/scripts/netatmo.php?login=VOTRE_EMAIL&password=MOTDEPASSE
It's works
Here a part of the code I'm using :
To get the value's from netatmo :
if(isset($res[0]) && isset($res[0]["beg_time"]))
{
$time = $res[0]["beg_time"];
$tempLiving = $res[0]["value"][0][0];
$humidityLiving = $res[0]["value"][0][1];
$co2Living = $res[0]["value"][0][2];
}
Post the value's :
// Temp Living
$url = "https://my.zipato.com/zipato-web/remoting/attribute/set?serial=xxx&apiKey=xxx";
$url = $url."&value4=".$tempLiving;
$ch = curl_init($url);
curl_exec($ch);
curl_close($ch);
If you need more details let me know.
Here a part of the code I'm using :
To get the value's from netatmo :
if(isset($res[0]) && isset($res[0]["beg_time"]))
{
$time = $res[0]["beg_time"];
$tempLiving = $res[0]["value"][0][0];
$humidityLiving = $res[0]["value"][0][1];
$co2Living = $res[0]["value"][0][2];
}
Post the value's :
// Temp Living
$url = "https://my.zipato.com/zipato-web/remoting/attribute/set?serial=xxx&apiKey=xxx";
$url = $url."&value4=".$tempLiving;
$ch = curl_init($url);
curl_exec($ch);
curl_close($ch);
If you need more details let me know.
Hi I'm new with the zipato system. Can you explain how to add the netatmo to zipabox?
Hi I'm new with the zipato system. Can you explain how to add the netatmo to zipabox?
Hello,
it seems that Zipato still has not integrated the different Netatmo devices to the box. It is a pity that we have to pass by an NAS script.
Hello,
it seems that Zipato still has not integrated the different Netatmo devices to the box. It is a pity that we have to pass by an NAS script.
Hi,
my script is almost ready and i will publish it this week.
But its already running...
regards Helle
Hi,
my script is almost ready and i will publish it this week.
But its already running...
regards Helle
Hi,
any news about your script?
Best regards
Michel
Hi,
any news about your script?
Best regards
Michel
Hi,
almost ready....script is running for 2 weeks very well.
I hope to publish it tomrrow evening.
regards Helle
Hi,
almost ready....script is running for 2 weeks very well.
I hope to publish it tomrrow evening.
regards Helle
Here is the script I am using. Just published it to GitHub: https://github.com/innodron/ZipaNetatmoGW
You will need a Netatmo developer account to provide OAUTH credentials to the Netatmo python library. Though it is easy to get one.
Here is the script I am using. Just published it to GitHub: https://github.com/innodron/ZipaNetatmoGW
You will need a Netatmo developer account to provide OAUTH credentials to the Netatmo python library. Though it is easy to get one.
Hi,
if you want to integrate your NetAtmo into your Zipabox try this:
http://zipabox.de/netatmo-liefert-werte-zur-zipabox/
If you have any problems or suggestion, please let me know.
regards Helle
Hi,
if you want to integrate your NetAtmo into your Zipabox try this:
http://zipabox.de/netatmo-liefert-werte-zur-zipabox/
If you have any problems or suggestion, please let me know.
regards Helle
Have anyone tried to integrate the Netatmo presence to Zipabox? basically I'm thinking to enable alerts if Zipabox security system is armed Away, and disable if disarmed. Netatmo presence seems to be a very nice product.
Have anyone tried to integrate the Netatmo presence to Zipabox? basically I'm thinking to enable alerts if Zipabox security system is armed Away, and disable if disarmed. Netatmo presence seems to be a very nice product.
Is anyone who heard from Zipato if they will integrate Netatmo?
Or is it still Netatmo developer account to provide OAUTH, that is the only solution
I bought both the whether units and both cameras, and want integrate with ZIPABOX
Is anyone who heard from Zipato if they will integrate Netatmo?
Or is it still Netatmo developer account to provide OAUTH, that is the only solution
I bought both the whether units and both cameras, and want integrate with ZIPABOX
Replies have been locked on this page!