Add check-bitcoin.ps1

This commit is contained in:
Markus Fleschutz 2021-12-05 11:47:03 +01:00
parent c657f8b77d
commit 5690484b39
2 changed files with 24 additions and 1 deletions

View File

@ -25,7 +25,7 @@ More supported voice commands are:
`Computer, check` [name] `Computer, check` [name]
------------------------ ------------------------
Lets the computer check something, replace [name] by: `Christmas`, `CPU`, `date`, `DNS`, `dawn`, `drives`, `dusk`, `Earth` (fun), `headlines`, `ISS`, `moon phase`, `New Year`, `operating system`, `ping`, `sunrise`, `sunset`, `swap space`, `time`, `time zone`, `up-time`, `VPN`, `weather`, or `zenith`. Lets the computer check something, replace [name] by: `Bitcoin`, `Christmas`, `CPU`, `date`, `DNS`, `dawn`, `drives`, `dusk`, `Earth` (fun), `headlines`, `ISS`, `moon phase`, `New Year`, `operating system`, `ping`, `sunrise`, `sunset`, `swap space`, `time`, `time zone`, `up-time`, `VPN`, `weather`, or `zenith`.
`Computer, open` [name] `browser` `Computer, open` [name] `browser`

23
Scripts/check-bitcoin.ps1 Normal file
View File

@ -0,0 +1,23 @@
<#
.SYNOPSIS
Checks the Bitcoin rate
.DESCRIPTION
This script queries the current Bitcoin exchange rates and answers by text-to-speech (TTS).
.EXAMPLE
PS> ./check-bitcoin
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
$Rates = (Invoke-WebRequest -uri "https://min-api.cryptocompare.com/data/price?fsym=BTC&tsyms=USD,EUR" -userAgent "curl" -useBasicParsing).Content | ConvertFrom-Json
$Reply = "Bitcoin is at $($Rates.USD) US$ and $($Rates.EUR) Euro."
"✔️ $Reply"
& "$PSScriptRoot/speak-english.ps1" "$Reply"
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}