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 49badef commit 784129aCopy full SHA for 784129a
main.cpp
@@ -0,0 +1,31 @@
1
+#include <Arduino.h>
2
+
3
+void serialEvent() {
4
+}
5
6
+void serialEvent1() {
7
+ serialEvent();
8
9
+void serialEvent2() {
10
11
12
+void serialEvent3() {
13
14
15
16
17
+void setup() {
18
+ Serial.begin(9600);
19
+ Serial.print("started\n");
20
+ pinMode(LED_BUILTIN, OUTPUT);
21
22
23
+void loop() {
24
+ Serial.print("loop iter\n");
25
+ digitalWrite(LED_BUILTIN, HIGH);// turn the LED on (HIGH is the voltage level)
26
+ Serial.print("1\n");
27
+ delay(500);
28
+ digitalWrite(LED_BUILTIN, LOW);
29
+ Serial.print("0\n");
30
31
0 commit comments