We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8411e34 commit c949bb2Copy full SHA for c949bb2
Language/Functions/Communication/Serial/print.adoc
@@ -94,13 +94,13 @@ void loop() {
94
Serial.print("\t");
95
96
Serial.print("BIN");
97
- Serial.print("\t");
+ Serial.println("\t"); // carriage return after the last label
98
99
for(x=0; x< 64; x++){ // only part of the ASCII chart, change to suit
100
101
// print it out in many formats:
102
Serial.print(x); // print as an ASCII-encoded decimal - same as "DEC"
103
- Serial.print("\t"); // prints a tab
+ Serial.print("\t\t"); // prints two tabs to accomodate the label lenght
104
105
Serial.print(x, DEC); // print as an ASCII-encoded decimal
106
Serial.print("\t"); // prints a tab
0 commit comments