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
34
34
35
35
You can pass flash-memory based strings to `_Serial_.print()` by wrapping them with link:../../../../variables/utilities/progmem[F()]. For example:
36
36
37
- `Serial.print(F(“ Hello World” ))`
37
+ `Serial.print(F(" Hello World" ))`
38
38
39
39
To send data without conversion to its representation as characters, use link:../write[Serial.write()].
40
40
[%hardbreaks]
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ void setup() {
58
58
void loop() {
59
59
Serial.write(45); // send a byte with the value 45
60
60
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.
62
62
}
63
63
----
64
64
[%hardbreaks]
You can’t perform that action at this time.
0 commit comments