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 3eb838c commit 6add2a4Copy full SHA for 6add2a4
src/Serial-Monitor.h
@@ -37,6 +37,24 @@ int SerialMonitor::initialize() {
37
} else {
38
Serial.println("analogRead2 → " + value);
39
}
40
+ value = serial.analogRead3();
41
+ if(value == NULL) {
42
+ Serial.println("analogRead3 → NULL");
43
+ } else {
44
+ Serial.println("analogRead3 → " + value);
45
+ }
46
+ value = serial.analogRead4();
47
48
+ Serial.println("analogRead4 → NULL");
49
50
+ Serial.println("analogRead4 → " + value);
51
52
+ value = serial.analogRead5();
53
54
+ Serial.println("analogRead5 → NULL");
55
56
+ Serial.println("analogRead5 → " + value);
57
58
return true;
59
60
0 commit comments