Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I would like to set the temperature via the http server, similar to ’easy set temperature "20"' via the cli. Is that possible? I could not find an endpoint in the list.
The text was updated successfully, but these errors were encountered:
The last example in the README shows how to set the temperature:
curl -XPOST http://127.0.0.1:3000/bridge/heatingCircuits/hc1/temperatureRoomManual -d '{"value":20}' -H 'Content-Type: application/json'
(you may have to change 127.0.0.1:3000 to point to the correct IP-address if you're not running the HTTP server on the local machine)
127.0.0.1:3000
The easy command line tool actually uses three endpoints:
easy
/heatingCircuits/hc1/temperatureRoomManual { "value" : 20 } /heatingCircuits/hc1/manualTempOverride/status { "value" : "on" } /heatingCircuits/hc1/manualTempOverride/temperature { "value" : 20 }
Sorry, something went wrong.
Clear! Thanks!
No branches or pull requests
Hi, I would like to set the temperature via the http server, similar to ’easy set temperature "20"' via the cli. Is that possible? I could not find an endpoint in the list.
The text was updated successfully, but these errors were encountered: