diff --git a/Docs/VoiceControl.md b/Docs/VoiceControl.md index 3ec1beed..e00a1cdb 100644 --- a/Docs/VoiceControl.md +++ b/Docs/VoiceControl.md @@ -23,9 +23,10 @@ More supported voice commands are: * launches the given application, just replace [app] by: `3D-Viewer`, `Calculator`, `Git Extensions`, `Microsoft Paint`, `Microsoft Store`, `Netflix`, `Notepad`, `OBS Studio`, `Outlook`, `Paint 3D`, `Spotify`, `Thunderbird`, `Visual Studio`, or `Windows Terminal`. * when finished say: "Computer, close [app]" to close the application. + `Computer, check` [name] ------------------------ -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`. +Lets the computer check something, replace [name] by: `Bitcoin`, `Christmas`, `CPU`, `date`, `dawn`, `DNS`, `Dogecoin`, `drives`, `dusk`, `Earth` (fun), `Ethereum`, `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` diff --git a/Scripts/check-bitcoin.ps1 b/Scripts/check-bitcoin.ps1 index 7be51337..49327e3d 100644 --- a/Scripts/check-bitcoin.ps1 +++ b/Scripts/check-bitcoin.ps1 @@ -13,7 +13,7 @@ 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 = "Bitcoin is currently at $($Rates.USD) US$ and $($Rates.EUR) Euro." "✔️ $Reply" & "$PSScriptRoot/speak-english.ps1" "$Reply" exit 0 # success diff --git a/Scripts/check-dogecoin.ps1 b/Scripts/check-dogecoin.ps1 new file mode 100644 index 00000000..852d1bf9 --- /dev/null +++ b/Scripts/check-dogecoin.ps1 @@ -0,0 +1,23 @@ +<# +.SYNOPSIS + Checks the Dogecoin rate +.DESCRIPTION + This script queries the current Dogecoin exchange rates and answers by text-to-speech (TTS). +.EXAMPLE + PS> ./check-dogecoin +.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=DOGE&tsyms=USD,EUR" -userAgent "curl" -useBasicParsing).Content | ConvertFrom-Json + $Reply = "Dogecoin is currently 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 +} diff --git a/Scripts/check-ethereum.ps1 b/Scripts/check-ethereum.ps1 new file mode 100644 index 00000000..81f4aa0c --- /dev/null +++ b/Scripts/check-ethereum.ps1 @@ -0,0 +1,23 @@ +<# +.SYNOPSIS + Checks the Ethereum rate +.DESCRIPTION + This script queries the current Ethereum exchange rates and answers by text-to-speech (TTS). +.EXAMPLE + PS> ./check-ethereum +.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=ETH&tsyms=USD,EUR" -userAgent "curl" -useBasicParsing).Content | ConvertFrom-Json + $Reply = "Ethereum is currently 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 +}