PowerShell/Scripts/simulate-presence.ps1
Markus Fleschutz b653133853 Add UTF-8 BOM
2021-09-27 10:38:12 +02:00

32 lines
744 B
PowerShell
Executable File

<#
.SYNOPSIS
simulate-presence.ps1 [<IP-address>]
.DESCRIPTION
Simulates the human presence against burglars
.EXAMPLE
PS> ./simulate-presence 192.168.100.100
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
param([string]$IPaddress = "")
try {
if ($IPaddress -eq "" ) { $IPaddress = read-host "Enter IP address of Shelly1 device" }
for ([int]$i = 0; $i -lt 1000; $i++) {
& "$PSScriptRoot/switch-shelly1.ps1" $IPaddress on 0
start-sleep -s 10
& "$PSScriptRoot/switch-shelly1.ps1" $IPaddress off 0
start-sleep -s 60
}
"✔️ Done."
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}