Jump to content

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


  • 0

Fibaro HC3 - Change Device parameter


GeeMoney

Question

I Would like to change a device parameter of a Fibaro Dimmer 2 module.

Specifically Parameter 19 (Force Dimming Level) .

 

This worked perfectly in HC2 with the following code:

 

function modifyParameter(deviceID,parameterID,parameterValue,productInfo)
  local ok, result, parameter
  device=api.get("/devices/" .. deviceID)
 
  if device.properties.productInfo ~= productInfo then
    fibaro:debug(
      string.format(
        "Device %d property prodInfo %s differs from %s.\nNothing written to device.",
        deviceID,device.properties.productInfo,productInfo))
    return
  end
 
  for _,v in pairs(device.properties.parameters) do
    if v.id==parameterID then
      parameter=v
      break
    end
  end
 
  if not parameter then
    fibaro:debug(
      string.format(
        "Device %d does not seem to have parameter %d.\nNothing written to device.",
        deviceID,parameterID))
    return
  end
 
  local settings = {
    id=device.id,
    properties={
      parameters=device.properties.parameters
    }
  }
 
  parameter.value=parameterValue
 
  ok, result=pcall(api.put,"/devices/" .. device.id,settings)
 
  if not ok then
    fibaro:debug("api call failed: "..result)
    return
  end
end
 
-- Uncomment one of the lines below.
-- Change first argument = your device ID 
-- 3-click the button on the device to set the parameter.
-- Check status window: "Received parameter 1 report, value ="
 
-- Less sensitivity on FGMS-001 v2
--modifyParameter(795,1,20,"1,15,8,1,16,1,3,2")
 
-- Less sensitivity on FGMS-001 v2
modifyParameter(101,19,10,"1,15,1,2,16,0,3,5")
 
But in HC3 I can see it is changing the value of Parameter 19 but when I turn on the device it goes to my value setting for half a second and it bumps up the lights to 40% immediately.
No matter what value I set on Parameter 19, the value get's changed by the above code as I can confirm this after running it and checking the device but it only works for half a second and it always bumps up the lights to exactly 40%.
None of the other parameters on the device have a value of 40 so I can't tell why it is doing this.
Anyone have a suggestion ?
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0
  • Inquirer
  • Posted (edited)

    Aparantly it can be done on some devices with the following. Code:


    hub.call(device-id,”setConfiguration”,parameter,byte-length,new-value

     

    So in my case:

    hub.call(101,"setConfiguration",19,1,30)

     

    101 is ny device-id, 19 is the parameter to adjust, 1 is the byte length and the new value is 30.

     

    However, this is not possible on Dimmer 2 devices. 
     

    To get your device details like byte-length and possible parameters and values:

    https://<fibaro-ip>/api/devices/device-id

    Edited by GeeMoney
    Link to comment
    Share on other sites

    Join the conversation

    You can post now and register later. If you have an account, sign in now to post with your account.

    Guest
    Answer this question...

    ×   Pasted as rich text.   Paste as plain text instead

      Only 75 emoji are allowed.

    ×   Your link has been automatically embedded.   Display as a link instead

    ×   Your previous content has been restored.   Clear editor

    ×   You cannot paste images directly. Upload or insert images from URL.

    ×
    ×
    • Create New...