Updated the manuals

This commit is contained in:
Markus Fleschutz
2025-01-17 08:37:30 +01:00
parent 33ef92d879
commit ba6f1594c8
635 changed files with 643 additions and 643 deletions

View File

@ -2,7 +2,7 @@
.SYNOPSIS
Installs evcc
.DESCRIPTION
This PowerShell script installs evcc. Sevcc is an extensible EV Charge Controller with PV integration implemented in Go. See https://evcc.io for details.
This PowerShell script installs evcc. Evcc is an extensible EV Charge Controller with PV integration implemented in Go. See https://evcc.io for details.
.EXAMPLE
PS> ./install-evcc.ps1
.LINK
@ -12,7 +12,7 @@
#>
try {
$StopWatch = [system.diagnostics.stopwatch]::startNew()
$stopWatch = [system.diagnostics.stopwatch]::startNew()
if ($IsLinux) {
"⏳ (1/6) Installing necessary packets..."
@ -35,8 +35,8 @@ try {
} else {
throw "Sorry, only Linux installation currently supported"
}
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
"✅ evcc installed successfully in $Elapsed sec"
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
"✅ evcc installed successfully in $($elapsed)s."
exit 0 # success
} catch {
"Sorry: $($Error[0])"