I use Serial.write() to send 8 bits of data from Arduino Uno R3 to a computer.
I want the Serial Terminal to show the data in binary, or decimal, but not ASCII.
I understand that I could use Serial.print(,BIN) to do so, but as said, data transmission speed is my concern here. Using Serial.print(), I would have sent more than 8 bits (longer time) to represent 8 bits.
If I have understood correctly then you need something other than Serial terminal that reads the value and displays it in binary notation as your already sending the data from your arduino in the most simple/compact method.
What baud rate are you using? If it's the de-facto 9600 then speeding this up to 115200 will speed up serial throughput and maybe allow the Arduino to send in binary notation ASCII
Thanks! It works, but the maximum baud rate is just 921600.
I am thinking of something baud rate >= 2000000 (parallax serial terminal), and can print binary, hex or decimal.
Appreciate if you know any other serial terminal which can do this.
I am limited by the baud rate drop down menu in RealTerm. I want to increase the baud rate.
Do you know how to set other baud rate higher than the one listed in dropdown menu?