forked from dh1tw/streamdeck
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added an example which enumerates the connected StreamDeck devices
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package main | ||
|
||
import ( | ||
"html/template" | ||
"log" | ||
"os" | ||
|
||
esd "github.com/dh1tw/go-elgato-stream-deck" | ||
"github.com/karalabe/hid" | ||
) | ||
|
||
// This program enumerates all instances of Elgato Stream Deck connected | ||
// to this computer. | ||
|
||
var tmpl = template.Must(template.New("").Parse( | ||
`Found {{. | len}} Elgato Stream Deck(s): {{range .}} | ||
SerialNumber: {{.Serial}} | ||
{{end}}`, | ||
)) | ||
|
||
// Enumerate shows all connected Elgato Stream Decks | ||
func main() { | ||
|
||
devices := hid.Enumerate(esd.VendorID, esd.ProductID) | ||
if err := tmpl.Execute(os.Stdout, devices); err != nil { | ||
log.Fatal(err) | ||
} | ||
} |