I have a H713B and have added this to my config.yaml
rest_command:
rest_govee_appliance:
url: https://developer-api.govee.com/v1/appliance/devices/control
method: PUT
headers:
Content-Type: application/json
Govee-API-Key: (The Key)
content_type: 'application/json; charset=utf-8'
payload: '{"device": "{{ device }}","model": "{{ model }}","cmd": {"name": "{{ cmd_name }}","value": "{{ cmd_value }}"}}'
verify_ssl: true
When I go to services and use this…
service: rest_command.rest_govee_appliance
data:
device: 60:74:F4:1A:EE:86
model: H713B
cmd_name: turn
cmd_value: "On"
I get a nice green tick but the device does not turn on??
Any ideas?