From eb4197dd5955eb72b3e813a02eff85c5a8ed157f Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 12 Feb 2021 12:28:59 +0100 Subject: [PATCH] Update switch-shelly1.ps1 --- Scripts/switch-shelly1.ps1 | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Scripts/switch-shelly1.ps1 b/Scripts/switch-shelly1.ps1 index 8c0bac87..36fcb02a 100755 --- a/Scripts/switch-shelly1.ps1 +++ b/Scripts/switch-shelly1.ps1 @@ -6,20 +6,21 @@ .NOTES Author: Markus Fleschutz / License: CC0 #> -param([string]$IPaddr = "", [string]$TurnMode = "", [int]$Timer = -999) +param($IPaddr = "", $TurnMode = "", [int]$Timer = -999) try { if ($IPaddr -eq "") { - [String]$IPaddr = read-host "Enter IP address of the Shelly1 device" + $IPaddr = read-host "Enter IP address of the Shelly1 device" } if ($TurnMode -eq "") { - [String]$TurnMode = read-host "Enter turn mode (on/off/toggle)" + $TurnMode = read-host "Enter turn mode (on/off/toggle)" } if ($Timer -eq -999) { - [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)" + write-host -foregroundColor green "Done - switched Shelly1 device at $IPaddr to $TurnMode for $Timer second(s)" exit 0 } catch {