Terminal widget - difference between terminal.print and terminal.write?

A simple question regarding the terminal widget, but I cannot find a straight answer. What is the difference between termin.print and terminal.write and when do I use what?

The difference is simply the same as with Arduino IDE Serial.write() and Serial.print() :wink:
print converts data to strings, write just sends raw data.

1 Like