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.
1 parent 449516e commit 7f4bef1Copy full SHA for 7f4bef1
examples/client/client.go
@@ -31,7 +31,7 @@ func main() {
31
myNextButton.SetActionHandler(&actionhandlers.TextLabelChangeAction{NewLabel: "8"})
32
sd.AddButton(7, myNextButton)
33
34
- anotherButton, err := buttons.NewImageFileButton("/home/kevin/streamdeck/go-streamdeck/examples/test/play.jpg")
+ anotherButton, err := buttons.NewImageFileButton("examples/test/play.jpg")
35
if err != nil {
36
panic(err)
37
}
examples/test/test.go
@@ -32,7 +32,7 @@ func main() {
sd.ClearButtons()
- sd.WriteImageToButton(btnIndex, "examples/play.jpg")
+ sd.WriteImageToButton(btnIndex, "examples/test/play.jpg")
})
38
var wg sync.WaitGroup
0 commit comments