PowerShell/scripts/write-value.ps1

66 lines
1.6 KiB
PowerShell
Raw Normal View History

2024-12-01 20:46:27 +01:00
<#
.SYNOPSIS
Writes a value with value range
.DESCRIPTION
2024-12-02 20:13:11 +01:00
This PowerShell script writes the given value with value range to the console.
2024-12-01 20:46:27 +01:00
.PARAMETER value
Specifies the value
.EXAMPLE
PS> ./write-value.ps1 0.5 Mach 0 10
[00.5 Mach10]
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
param([float]$value = 0.5, [string]$unit = "Mach", [float]$min = 0.0, [float]$max = 10.0)
2024-12-02 20:13:11 +01:00
function WriteLine([float]$count) {
while ($count -ge 1.0) {
2024-12-01 20:46:27 +01:00
Write-Host "" -noNewline
2024-12-02 20:13:11 +01:00
$count -= 1.0
2024-12-01 20:46:27 +01:00
}
2024-12-02 20:13:11 +01:00
return $count
2024-12-01 20:46:27 +01:00
}
function WriteBlock([float]$value, [string]$unit, [float]$min, [float]$max) {
2024-12-02 20:13:11 +01:00
$text = "[$min $($value)$unit $max]"
[float]$left = 20.0 - $text.Length
2024-12-01 20:46:27 +01:00
if ($value -gt $max) {
Write-Host "[$min" -noNewline
2024-12-02 20:13:11 +01:00
$rest = WriteLine $left
2024-12-01 20:46:27 +01:00
Write-Host "$max]" -noNewline
2024-12-02 20:13:11 +01:00
Write-Host " $($value)$unit " -noNewline -foregroundColor red
2024-12-01 20:46:27 +01:00
} elseif ($value -lt $min) {
2024-12-02 20:13:11 +01:00
Write-Host "$($value)$unit" -noNewline -foregroundColor red
2024-12-01 20:46:27 +01:00
Write-Host " [$min" -noNewline
2024-12-02 20:13:11 +01:00
$rest = WriteLine $left
2024-12-01 20:46:27 +01:00
Write-Host "$max] " -noNewline
} else {
2024-12-02 20:13:11 +01:00
[float]$percent = (($value - $min) * $left) / ($max - $min)
2024-12-01 20:46:27 +01:00
Write-Host "[$min" -noNewline
2024-12-02 20:13:11 +01:00
$rest = WriteLine $percent
Write-Host "$($value)$unit" -noNewline -foregroundColor green
$rest = WriteLine ($left - $percent + $rest + 1.0)
2024-12-01 20:46:27 +01:00
Write-Host "$max] " -noNewline
}
}
2024-12-02 20:13:11 +01:00
WriteBlock -3.5 "°C" 0 100
Write-Host "CPU too cold"
2024-12-01 20:46:27 +01:00
2024-12-02 20:13:11 +01:00
WriteBlock 15 "°C" 0 100
Write-Host "OK"
2024-12-01 20:46:27 +01:00
2024-12-02 20:13:11 +01:00
WriteBlock 50 "°C" 0 100
Write-Host "OK"
2024-12-01 20:46:27 +01:00
2024-12-02 20:13:11 +01:00
WriteBlock 70 "°C" 0 100
Write-Host "OK"
2024-12-01 20:46:27 +01:00
2024-12-02 20:13:11 +01:00
WriteBlock 110 "°C" 0 100
Write-Host "CPU too hot "
2024-12-01 20:46:27 +01:00
exit 0 # success