PowerShell/Scripts/switch-shelly1.ps1

29 lines
867 B
PowerShell
Raw Normal View History

2020-12-01 10:54:41 +01:00
#!/snap/bin/powershell
2020-12-22 12:06:34 +01:00
# Syntax: ./switch-shelly1.ps1 [<IP addr>] [<turn-mode>] [<timer>]
2020-12-01 10:54:41 +01:00
# Description: switches a Shelly1 device in the local network
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
2020-12-22 12:06:34 +01:00
param([String]$IPaddr, [String]$TurnMode, [Int]$Timer)
2020-12-01 10:54:41 +01:00
try {
2020-12-22 12:06:34 +01:00
if ($IPaddr -eq "" ) {
[String]$IPaddr = read-host "Enter IP address of the Shelly1 device"
}
if ($TurnMode -eq "" ) {
[String]$TurnMode = read-host "Enter turn mode (on/off/toggle)"
}
if ($Timer -eq 0 ) {
[Int]$Timer = read-host "Enter timer (0=endless)"
}
2020-12-01 10:54:41 +01:00
2020-12-22 12:06:34 +01:00
$Result = Invoke-RestMethod "http://$($IPaddr)/relay/0?turn=$($TurnMode)&timer=$($Timer)"
write-output "OK - switched Shelly1 device at $IPaddr to $TurnMode for $Timer second(s)"
2020-12-01 10:54:41 +01:00
exit 0
2020-12-09 10:30:55 +01:00
} catch {
2020-12-22 12:06:34 +01:00
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-09 10:30:55 +01:00
exit 1
}