17 lines
398 B
Bash
Executable File
17 lines
398 B
Bash
Executable File
#!/bin/bash
|
|
curl --request PUT \
|
|
--url https://developer-api.govee.com/v1/appliance/devices/control \
|
|
--header 'Govee-API-Key: aaecbef1-57f8-44e6-9ded-f05cbc840c10' \
|
|
--header 'accept: application/json' \
|
|
--header 'content-type: application/json' \
|
|
--data '
|
|
{
|
|
"device": "18:3C:D4:AD:FC:85:FC:1A",
|
|
"model": "H7140",
|
|
"cmd": {
|
|
"name": "gear",
|
|
"value": 4
|
|
}
|
|
}
|
|
'
|