Skip to content

Commit

Permalink
linux: fix characteristic value
Browse files Browse the repository at this point in the history
I left in a debugging value. Oops. Let's fix that quickly.
  • Loading branch information
aykevl committed Jan 6, 2024
1 parent c5ab6a9 commit 5908eba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gatts_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func (a *Adapter) AddService(s *Service) error {
"UUID": {Value: char.UUID.String()},
"Service": {Value: path},
"Flags": {Value: flags},
"Value": {Value: []byte("foobar"), Writable: true, Emit: prop.EmitTrue},
"Value": {Value: char.Value, Writable: true, Emit: prop.EmitTrue},
},
}
objects[charPath] = propsSpec
Expand Down

0 comments on commit 5908eba

Please sign in to comment.