Welcome to Smart Home Forum by FIBARO
Dear Guest,
as you can notice parts of Smart Home Forum by FIBARO is not available for you. You have to register in order to view all content and post in our community. Don't worry! Registration is a simple free process that requires minimal information for you to sign up. Become a part of of Smart Home Forum by FIBARO by creating an account.
As a member you can:
- Start new topics and reply to others
- Follow topics and users to get email updates
- Get your own profile page and make new friends
- Send personal messages
- ... and learn a lot about our system!
Regards,
Smart Home Forum by FIBARO Team

Question
MauriceS 0
At this moment I have a smart meter connected to a Veraplus. With the LUA code I've added, I can read the power consumption in my HC2. Today I upgraded from a HC2 to a HC3.
Now the Lua code won't work anymore. I'm not into Lua yet so please could anyone help me with this problem.
Thanks in advance!!!!!
--[[
%% globals
fiveMinuteTimer
--]]
local selfId = fibaro:getSelfId();
HC2 = Net.FHttp("xxx.xxx.x.xxx",3480)
response,status = HC2:GET("/data_request?id=variableget&DeviceNum=383&serviceId=urn:micasaverde-com:serviceId:EnergyMetering1&Variable=Watts")
fibaro:call(202, "setProperty", "ui.Label2.value", response)
fibaro:debug(response)
fibaro:log(response)
local selfId = fibaro:getSelfId();
HC2 = Net.FHttp("xxx.xxx.x.xxx",3480)
response,status = HC2:GET("/data_request?id=variableget&DeviceNum=384&serviceId=urn:micasaverde-com:serviceId:EnergyMetering1&Variable=Watts")
fibaro:call(202, "setProperty", "ui.Label3.value", response)
fibaro:debug(response)
fibaro:log(response)
local selfId = fibaro:getSelfId();
HC2 = Net.FHttp("xxx.xxx.x.xxx",3480)
response,status = HC2:GET("/data_request?id=variableget&DeviceNum=385&serviceId=urn:micasaverde-com:serviceId:EnergyMetering1&Variable=Watts")
fibaro:call(202, "setProperty", "ui.Label4.value", response)
fibaro:debug(response)
fibaro:log(response)
myVariable = (fibaro:getValue(202, "ui.Label2.value")) + (fibaro:getValue(202, "ui.Label3.value")) + (fibaro:getValue(202, "ui.Label4.value"))
fibaro:debug('myVariable is value is:') --prints value of variable
fibaro:call(202, "setProperty", "ui.Label1.value", myVariable)
fibaro:debug(myVariable)
fibaro:log(myVariable)
0 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.