We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9421887 commit cf6cd3aCopy full SHA for cf6cd3a
Language/Functions/Communication/Serial/print.adoc
@@ -27,9 +27,9 @@ An optional second parameter specifies the base (format) to use; permitted value
27
* `Serial.print(78, OCT) gives "116"` +
28
* `Serial.print(78, DEC) gives "78"` +
29
* `Serial.print(78, HEX) gives "4E"` +
30
-* `Serial.println(1.23456, 0) gives "1"` +
31
-* `Serial.println(1.23456, 2) gives "1.23"` +
32
-* `Serial.println(1.23456, 4) gives "1.2346"`
+* `Serial.print(1.23456, 0) gives "1"` +
+* `Serial.print(1.23456, 2) gives "1.23"` +
+* `Serial.print(1.23456, 4) gives "1.2346"`
33
34
You can pass flash-memory based strings to Serial.print() by wrapping them with link:../../../../variables/utilities/progmem[F()]. For example:
35
0 commit comments