Update switch-shelly1.ps1

This commit is contained in:
Markus Fleschutz 2021-02-18 07:44:08 +01:00 committed by GitHub
parent 5bf98fb120
commit 76c16d7e9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,11 +6,11 @@
.NOTES Author: Markus Fleschutz / License: CC0 .NOTES Author: Markus Fleschutz / License: CC0
#> #>
param($IPaddr = "", $TurnMode = "", [int]$Timer = -999) param($IPaddress = "", $TurnMode = "", [int]$Timer = -999)
try { try {
if ($IPaddr -eq "") { if ($IPaddress -eq "") {
$IPaddr = read-host "Enter IP address of the Shelly1 device" $IPaddress = read-host "Enter IP address of the Shelly1 device"
} }
if ($TurnMode -eq "") { if ($TurnMode -eq "") {
$TurnMode = read-host "Enter turn mode (on/off/toggle)" $TurnMode = read-host "Enter turn mode (on/off/toggle)"
@ -19,9 +19,9 @@ try {
[int]$Timer = read-host "Enter timer in seconds (0=endless)" [int]$Timer = read-host "Enter timer in seconds (0=endless)"
} }
$Result = Invoke-RestMethod "http://$($IPaddr)/relay/0?turn=$($TurnMode)&timer=$($Timer)" $Result = Invoke-RestMethod "http://$($IPaddress)/relay/0?turn=$($TurnMode)&timer=$($Timer)"
write-host -foregroundColor green "Done - switched Shelly1 device at $IPaddr to $TurnMode for $Timer second(s)" write-host -foregroundColor green "Done - switched Shelly1 device at $IPaddress to $TurnMode for $Timer second(s)"
exit 0 exit 0
} catch { } catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"