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
Krzychurychu 1
I had HC2 with VD that can bright up dimmer by 10% while i pressed button on Aeotec and decressed brightness by pushing another button.
Now i have HC3 and i have no idea how to implement this. Below is my working code. I have no knowlage about coding i done it with ChatGPT. For HC3 i cant figured it out
function getBrightness(deviceId)
local brightness = fibaro:getValue(deviceId, "value")
return tonumber(brightness)
end
function setBrightness(deviceId, value)
fibaro:call(deviceId, "setValue", value)
end
function main()
local deviceId = 1066
local currentBrightness = getBrightness(deviceId)
local newBrightness = currentBrightness + 10
if newBrightness > 100 then
newBrightness = 100
end
setBrightness(deviceId, newBrightness)
end
main()
1 answer 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.