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


Change climate mode in QA (api.put) - stop working


Recommended Posts

Posted

Hello,
I´am using this code in QA to control climate zones, but it stopped working some weeks ago... :-(
I need to change climate mode from Scheduler to Manul and vice versa, it was working for more than 2 years, but not now.

Is there somebody with the same issue?
 

    local panel = {1,2};
    for i, climate_id in pairs(panel) do
    local climate=api.get("/panels/climate/" .. climate_id)
    local status_mode = climate.mode
    self:debug("climate.mode:"..status_mode) --for test
    climate.properties.handSetPointHeating = 25
    climate.properties.handSetPointCooling = 70 
    climate.properties.handTimestamp = 4294967295   
    climate.properties.currentSetpointTimeStartHour = null 
    climate.properties.currentSetpointTimeEndHour = null
    climate.properties.currentSetpointTimeStartMinute = null
    climate.properties.currentSetpointTimeEndMinute = null
    climate.mode = "Schedule"
    api.put("/panels/climate/" .. climate_id, climate)  
 
Thank you for your help...
  • 3 weeks later...
Posted

I checked what payload the browser sends when changing the schedule through the GUI, and this is what came out.

endpoint 

Please login or register to see this link.

when setting manual mode

Please login or register to see this code.

return to schedule

Please login or register to see this code.

 

  • 3 weeks later...
Posted

Good morning,

I had the same for some zones.

What I did to get the rest working is changing the zone once by hand to vacation and then back to schedule. After that I could change the zones like above.

 

Jim

  • Topic Author
  • Posted

    Thank you very much to all, it helped me to solve this issue with climate panels. 👍
     

    Join the conversation

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

    Guest
    Reply to this topic...

    ×   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...