Skip to content

Instantly share code, notes, and snippets.

@darrenjrobinson
Created March 16, 2018 22:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darrenjrobinson/6bd2cef36e5b1fa9d359c0ca1f22752c to your computer and use it in GitHub Desktop.
Save darrenjrobinson/6bd2cef36e5b1fa9d359c0ca1f22752c to your computer and use it in GitHub Desktop.
# Collection of lights
$lights = @()
$lights +=4
$lights +=5
$lights +=6
foreach ($light in $lights){
$status = Invoke-RestMethod -Method Get -Uri "$($hueBridge)/$($username)/lights"
$currentState = $status.$light | select state
If ($currentState.state.on.Equals($false)){
$body = @{"on"=$true} | ConvertTo-Json
write-host "Light $($light) is OFF, turning it ON"
} else {
$body = @{"on"=$false} | ConvertTo-Json
write-host "Light $($light) is ON, turning it OFF"
}
$result = Invoke-RestMethod -Method PUT -Uri "$($hueBridge)/$($username)/lights/$($light)/state" -Body $body
$result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment