We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
You can use this library in Windows PowerShell. Thanks to imorrish for providing the PowerShell example code.
Example:
add-type -path 'WindowsPowerShell\StreamDeckSharp.dll' $deckInterface = [StreamDeckSharp.StreamDeck]::OpenDevice() $POSH = [StreamDeckSharp.StreamDeckKeyBitmap]::FromFile(".\Pictures\PowerShell72x72.png") $deckInterface.SetKeyBitmap(0, $POSH) $KeyEvent = Register-ObjectEvent -InputObject $deckInterface -EventName KeyStateChanged -SourceIdentifier buttonPress -Action {write-host $eventArgs.key)}