mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 13:04:59 +02:00
Omit the ./ in the syntax metadata
This commit is contained in:
@ -1,22 +1,15 @@
|
||||
#!/usr/bin/pwsh
|
||||
<#
|
||||
.SYNTAX ./switch-shelly1.ps1 [<host>] [<turn-mode>] [<timer>]
|
||||
.SYNTAX switch-shelly1.ps1 [<host>] [<turn-mode>] [<timer>]
|
||||
.DESCRIPTION switches a Shelly1 device in the local network
|
||||
.LINK https://github.com/fleschutz/PowerShell
|
||||
.NOTES Author: Markus Fleschutz / License: CC0
|
||||
#>
|
||||
|
||||
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)"
|
||||
}
|
||||
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 {
|
||||
$Result = Invoke-RestMethod "http://$($Host)/relay/0?turn=$($TurnMode)&timer=$($Timer)"
|
||||
|
Reference in New Issue
Block a user