PowerShell/docs/switch-shelly1.md

98 lines
2.7 KiB
Markdown
Raw Permalink Normal View History

2024-11-08 12:38:20 +01:00
The *switch-shelly1.ps1* Script
===========================
2021-11-08 21:36:42 +01:00
2022-02-10 09:01:07 +01:00
This PowerShell script switches a Shelly1 device in the local network.
2021-11-08 21:36:42 +01:00
2023-07-29 10:04:38 +02:00
Parameters
----------
2021-11-08 21:36:42 +01:00
```powershell
2024-11-08 12:35:11 +01:00
/home/markus/Repos/PowerShell/scripts/switch-shelly1.ps1 [[-host] <String>] [[-turnMode] <String>] [[-timer] <Int32>] [<CommonParameters>]
2021-11-08 21:36:42 +01:00
2024-11-08 12:35:11 +01:00
-host <String>
2021-11-08 21:36:42 +01:00
Specifies either the hostname or IP address of the Shelly1 device
Required? false
Position? 1
Default value
Accept pipeline input? false
Accept wildcard characters? false
2024-11-08 12:35:11 +01:00
-turnMode <String>
2021-11-08 21:36:42 +01:00
Specifies either 'on', 'off', or 'toggle'
Required? false
Position? 2
Default value
Accept pipeline input? false
Accept wildcard characters? false
2024-11-08 12:35:11 +01:00
-timer <Int32>
2021-11-08 21:36:42 +01:00
Specifies the timer in seconds (0 = infinite)
Required? false
Position? 3
Default value -999
Accept pipeline input? false
Accept wildcard characters? false
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
2023-07-29 10:04:38 +02:00
Example
-------
2021-11-08 21:36:42 +01:00
```powershell
PS> ./switch-shelly1 192.168.100.100 toggle 10
```
2023-07-29 10:04:38 +02:00
Notes
-----
2022-11-17 19:46:02 +01:00
Author: Markus Fleschutz | License: CC0
2021-11-08 21:36:42 +01:00
2023-07-29 10:04:38 +02:00
Related Links
-------------
2021-11-08 21:36:42 +01:00
https://github.com/fleschutz/PowerShell
2023-07-29 10:04:38 +02:00
Script Content
--------------
2022-11-17 20:05:34 +01:00
```powershell
2022-11-17 20:02:26 +01:00
<#
.SYNOPSIS
Switches a Shelly1 device
.DESCRIPTION
This PowerShell script switches a Shelly1 device in the local network.
2024-11-08 12:35:11 +01:00
.PARAMETER host
2022-11-17 20:02:26 +01:00
Specifies either the hostname or IP address of the Shelly1 device
2024-11-08 12:35:11 +01:00
.PARAMETER turnMode
2022-11-17 20:02:26 +01:00
Specifies either 'on', 'off', or 'toggle'
2024-11-08 12:35:11 +01:00
.PARAMETER timer
2022-11-17 20:02:26 +01:00
Specifies the timer in seconds (0 = infinite)
.EXAMPLE
PS> ./switch-shelly1 192.168.100.100 toggle 10
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
2024-11-08 12:35:11 +01:00
param([string]$host = "", [string]$turnMode = "", [int]$timer = -999)
2022-11-17 20:02:26 +01:00
try {
2024-11-08 12:35:11 +01:00
if ($host -eq "") { $host = Read-Host "Enter the hostname or IP address of the Shelly1 device" }
if ($turnMode -eq "") { $turnMode = Read-Host "Enter the turn mode (on/off/toggle)" }
if ($timer -eq -999) { [int]$timer = Read-Host "Enter the timer in seconds (0=endless)" }
2022-11-17 20:02:26 +01:00
2024-11-08 12:35:11 +01:00
$result = Invoke-RestMethod "http://$($host)/relay/0?turn=$($turnMode)&timer=$($timer)"
2022-11-17 20:02:26 +01:00
2024-11-08 12:35:11 +01:00
"✅ Switched Shelly1 device at $host to $turnMode for $timer sec."
2022-11-17 20:02:26 +01:00
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
2022-11-17 20:05:34 +01:00
```
2022-11-17 20:02:26 +01:00
2024-11-20 11:52:20 +01:00
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:52:01)*