I'm getting " n " in the serial monitor.
I know (n) = (6E) in hex value... but where's the rest? Somethings not right.
What's not right are your expectations.
You are sending 0x6E, 0x00, 0x00, 0x0B as binary data. The serial monitor is expecting ASCII data. The 0x00s and 0x0B are non-printing characters, so your expecting them to print is not realistic.
So I am going in the right direction? The whole CMD is being sent, just NUL (0x00) and (0x0B) are not viewable by the serial monitor?
would you see non-printable characters on the oscilloscope?
would you see non-printable characters on the oscilloscope?
if they weren't printed on the scope, how would you seem them? oh, wait, you mean would the data toggle the serial pin? well. certainly the null bytes won't. the other bytes should.
Have you noticed that it is much harder to read stuff where proper capital letters are not used?