Get status and flipflop

Added pull for current light status to toggle rather than using a random.
This commit is contained in:
paradizelost 2020-12-07 11:20:11 -06:00 committed by GitHub
parent 281190e0e2
commit 9ba565b408
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,36 +3,41 @@ $headers=@{
Authorization = "Bearer $token"
}
$url="https://api.smartthings.com/v1/devices"
$things = (invoke-RestMethod -Method Get -Uri $url -Headers $headers).items
foreach($thing in $things){
if($thing.components.capabilities.id -contains "switch"){
write-host $thing.label
$offcommandhash = @{
$offcommandhash = @{
"component"="main";
"capability"="switch";
"command"="off";
}
$oncommandhash = @{
}
$oncommandhash = @{
"component"="main";
"capability"="switch";
"command"="on";
}
$offcommand = "[$($offcommandhash | ConvertTo-Json)]"
$oncommand = "[$($oncommandhash | ConvertTo-Json)]"
if($thing.label -eq "FamilyRoom South East 1"){
}
$offcommand = "[$($offcommandhash | ConvertTo-Json)]"
$oncommand = "[$($oncommandhash | ConvertTo-Json)]"
$things = (invoke-RestMethod -Method Get -Uri $url -Headers $headers).items
function toggle-lights(){
param([string]$DeviceLabel)
foreach($thing in $things){
if($thing.components.capabilities.id -contains "switch"){
if($thing.label -eq $DeviceLabel){
write-host $thing.label
$lightstatus = (Invoke-RestMethod -Method GET -uri "https://api.smartthings.com/v1/devices/$($thing.deviceid)/status" -headers $headers).components.main.switch.switch.value
$commandURL = "https://api.smartthings.com/v1/devices/$($thing.deviceid)/commands"
write-host $commandurl
do{
write-host "-----"
if((get-random -Minimum 0 -Maximum 2)){
if(($lightstatus -eq "off")){
write-host "ON"
invoke-RestMethod -Method POST -Uri $commandURL -Headers $headers -Body $oncommand
} else {
write-host "OFF"
invoke-RestMethod -Method POST -Uri $commandURL -Headers $headers -Body $offcommand
}
start-sleep 3
} while($true)
Invoke-RestMethod -Method GET -uri "https://api.smartthings.com/v1/devices/$($thing.deviceid)/status" -headers $headers
}
}
}
}
do{toggle-lights -devicelabel "FamilyRoom South East 1"}while($true)