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.
2 parents bb503f3 + bf49cfb commit 40b945aCopy full SHA for 40b945a
content/software/ide-v2/tutorials/ide-v2-serial-plotter/ide-v2-serial-plotter.md
@@ -54,10 +54,10 @@ void setup() {
54
void loop() {
55
potentiometer = analogRead(A1);
56
57
- Serial.print("Variable 1:");
+ Serial.print("Variable_1:");
58
Serial.print(potentiometer);
59
Serial.print(",");
60
- Serial.print("Variable 2:");
+ Serial.print("Variable_2:");
61
Serial.println(static_variable);
62
}
63
```
@@ -78,10 +78,10 @@ void setup() {
78
79
random_variable = random(0, 1000);
80
81
82
Serial.print(random_variable);
83
84
85
86
87
0 commit comments