Added switch-shelly1.ps1

This commit is contained in:
Markus Fleschutz 2020-12-01 09:54:41 +00:00
parent 293db1f2a4
commit e61e1ea87d
3 changed files with 28 additions and 0 deletions

View File

@ -32,6 +32,7 @@ The following PowerShell scripts can be found in the `Scripts/` subfolder:
* [SHA256.ps1](Scripts/SHA256.ps1) - prints the SHA256 checksum of the given file
* [simulate-presence.ps1](Scripts/simulate-presence.ps1) - simulates the human presence against burglars
* [speak.ps1](Scripts/speak.ps1) - speaks the given text by text-to-speech (TTS)
* [switch-shelly1.ps1](Scripts/switch-shelly1.ps1) - switches a Shelly1 device in the local network
* [take-screenshot.ps1](Scripts/take-screenshot.ps1) - takes a single screenshot
* [take-screenshots.ps1](Scripts/take-screenshots.ps1) - takes multiple screenshots
* [test.ps1](Scripts/test.ps1) - simple test script

0
Scripts/simulate-presence.ps1 Normal file → Executable file
View File

27
Scripts/switch-shelly1.ps1 Executable file
View File

@ -0,0 +1,27 @@
#!/snap/bin/powershell
# Syntax: ./switch-shelly1.ps1 [<IP addr>] [<turn mode>] [<timer>]
# Description: switches a Shelly1 device in the local network
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
param([string]$IPaddr, [string]$TurnMode, [int]$Timer)
if ($IPaddr -eq "" ) {
$IPaddr = read-host "Enter IP address of Shelly1 device"
}
if ($TurnMode -eq "" ) {
$TurnMode = read-host "Enter turn mode (on/off/toggle)"
}
if ($Timer -eq 0 ) {
$Timer = read-host "Enter timer (0=endless)"
}
try {
$URL = "http://$($IPaddr)/relay/0?turn=$($TurnMode)&timer=$($Timer)"
$result = Invoke-RestMethod $URL
write-host "OK - switched Shelly1 device at $IPaddr to $TurnMode for $Timer second(s)"
exit 0
} catch { Write-Error $Error[0] }
exit 1