mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-02-09 06:20:25 +01:00
Update switch-shelly1.ps1
This commit is contained in:
parent
76c16d7e9a
commit
d5032a9d02
@ -1,27 +1,27 @@
|
|||||||
#!/bin/powershell
|
#!/bin/powershell
|
||||||
<#
|
<#
|
||||||
.SYNTAX ./switch-shelly1.ps1 [<IP-address>] [<turn-mode>] [<timer>]
|
.SYNTAX ./switch-shelly1.ps1 [<host>] [<turn-mode>] [<timer>]
|
||||||
.DESCRIPTION switches a Shelly1 device in the local network
|
.DESCRIPTION switches a Shelly1 device in the local network
|
||||||
.LINK https://github.com/fleschutz/PowerShell
|
.LINK https://github.com/fleschutz/PowerShell
|
||||||
.NOTES Author: Markus Fleschutz / License: CC0
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param($IPaddress = "", $TurnMode = "", [int]$Timer = -999)
|
param($Host = "", $TurnMode = "", [int]$Timer = -999)
|
||||||
|
|
||||||
|
if ($Host -eq "") {
|
||||||
|
$Host = read-host "Enter hostname or IP address of the Shelly1 device"
|
||||||
|
}
|
||||||
|
if ($TurnMode -eq "") {
|
||||||
|
$TurnMode = read-host "Enter turn mode (on/off/toggle)"
|
||||||
|
}
|
||||||
|
if ($Timer -eq -999) {
|
||||||
|
[int]$Timer = read-host "Enter timer in seconds (0=endless)"
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if ($IPaddress -eq "") {
|
$Result = Invoke-RestMethod "http://$($Host)/relay/0?turn=$($TurnMode)&timer=$($Timer)"
|
||||||
$IPaddress = read-host "Enter IP address of the Shelly1 device"
|
|
||||||
}
|
|
||||||
if ($TurnMode -eq "") {
|
|
||||||
$TurnMode = read-host "Enter turn mode (on/off/toggle)"
|
|
||||||
}
|
|
||||||
if ($Timer -eq -999) {
|
|
||||||
[int]$Timer = read-host "Enter timer in seconds (0=endless)"
|
|
||||||
}
|
|
||||||
|
|
||||||
$Result = Invoke-RestMethod "http://$($IPaddress)/relay/0?turn=$($TurnMode)&timer=$($Timer)"
|
|
||||||
|
|
||||||
write-host -foregroundColor green "Done - switched Shelly1 device at $IPaddress to $TurnMode for $Timer second(s)"
|
write-host -foregroundColor green "Done - switched Shelly1 device at $Host 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])"
|
||||||
|
Loading…
Reference in New Issue
Block a user