File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Language/Functions/Communication/Serial Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ An optional second parameter specifies the base (format) to use; permitted value
3434
3535You can pass flash-memory based strings to `_Serial_.print()` by wrapping them with link:../../../../variables/utilities/progmem[F()]. For example:
3636
37- `Serial.print(F(“ Hello World” ))`
37+ `Serial.print(F(" Hello World" ))`
3838
3939To send data without conversion to its representation as characters, use link:../write[Serial.write()].
4040[%hardbreaks]
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ void setup() {
5858void loop() {
5959 Serial.write(45); // send a byte with the value 45
6060
61- int bytesSent = Serial.write(“ hello” ); //send the string “ hello” and return the length of the string.
61+ int bytesSent = Serial.write(" hello" ); //send the string " hello" and return the length of the string.
6262}
6363----
6464[%hardbreaks]
You can’t perform that action at this time.
0 commit comments