Serial.print seems to work for me, but Serial.write doesn't.
Teensyduino 1.16 on a Mac.
Should this work?
Code:void setup(){ Serial.begin(9600); } void loop(){ byte controlByte = B00000001; Serial.println("hello:"); Serial.write( controlByte); delay(500); }
I get:
in my Serial monitorCode:hello: hello: hello:
Am I doing something wrong?