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()
print
converts data to strings, write
just sends raw data.
1 Like