Hi,
I write the bytes to turn on the LED of the sensor tag by using I/O services.
I am trying to write 1 byte and its working but it turned on the buzzer instead of the LED.
Here is my code :
var valueToWrite = 1
let data = Data(bytes: &valueToWrite, count: 1)
handler?.writeValue(data, to: ioService)
i am using swift as a language.