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 ab2f540 commit 748d009Copy full SHA for 748d009
idf_component_examples/hw_cdc_hello_world/main/main.cpp
@@ -0,0 +1,10 @@
1
+#include <Arduino.h>
2
+
3
+void setup() {
4
+ Serial.begin(); // USB CDC doens't need a baud rate
5
+}
6
7
+void loop() {
8
+ Serial.println("Hello world!");
9
+ delay(1000);
10
0 commit comments