the \\x10X is probably not OK, you need to send binary value 0x10 inside the data, so something like the writer.WriteByte(0x01); which is maybe attempt to do it?
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
the
\\x10X
is probably not OK, you need to send binary value 0x10 inside the data, so something like thewriter.WriteByte(0x01);
which is maybe attempt to do it?