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