Smartelite 0 Share Posted April 8, 2017 (edited) Hello guys Any news on the Nest plug ins? Any solution other than IFTT? On the 4.12 there is no NEST plug ins at all Thanks in advance Edited April 8, 2017 by Smartelite Quote Link to post Share on other sites
0 SpaceCompany 21 Share Posted April 9, 2017 At the moment, NEST is not supported. The dev team is still working on the new plugin and getting it aproved by NEST Lab... On the HC2 you wont find the plugin, however, last week i saw an HClite with firmware 4.120 and the NEST plugin in the list... dont know of anyone else can confirm that ? Quote Link to post Share on other sites
0 Smartelite 0 Author Share Posted April 10, 2017 That is sad I will try to check on HCL and update here Thanks Quote Link to post Share on other sites
0 Sjekke 43 Share Posted April 10, 2017 Is this so difficult? On another blog a user programmed everything in LUA http://www.luckas.be/en/2016/10/nest-fibaro-en-lua/ Quote Link to post Share on other sites
0 Smartelite 0 Author Share Posted April 12, 2017 Couldnt test on HCL can anyone confirm if NEST APP available on HCL and working? Quote Link to post Share on other sites
0 jakub.jezek 265 Share Posted April 13, 2017 It is not available on HCL either. Plugin will be available, when you will see it in firmware changelog. So, please be patient and let Fibaro developers finish it, certificate it, test it and release it. Not working plugin is worse than no plugin. Quote Link to post Share on other sites
0 Sjekke 43 Share Posted April 14, 2017 I hope they add boiler support ... Quote Link to post Share on other sites
0 Deojuvente 2 Share Posted September 17, 2017 i have it working whit IFTTT (Set Nest Temperature in Fibaro HC2) just make 2 or more scenes in the fibaro and add the code of IFTTT in the luna https://ifttt.com/applets/364126p-set-nest-temperature-in-fibaro-hc2/ --[[ %% properties %% globals --]] local debug = true local param1 = "14" local key = "IFTTT CODE here" --use your key from the Maker channel on IFTTT local function log(str) if debug then fibaro:debug(str); end; end local function errorlog(str) fibaro:debug("<font color='red'>"..str.."</font>"); end function PushData(key, param1) local httpClient = net.HTTPClient({ timeout = 2000 }); local url = 'https://maker.ifttt.com/trigger/Name of your IFTTT/with/key/'..key..'?value1='..param1; log(url); httpClient:request(url, { success = function(response) if tonumber(response.status) == 200 then print("Updated at " .. os.date()); else print("Error " .. response.status) end end, error = function(err) print('error = ' .. err) end, options = { method = 'GET' } }); end PushData(key, param1); Quote Link to post Share on other sites
Question
Smartelite 0
Hello guys
Any news on the Nest plug ins?
Any solution other than IFTT?
On the 4.12 there is no NEST plug ins at all
Thanks in advance
Edited by SmarteliteLink to post
Share on other sites
7 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.