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 f61b73f commit 45a631eCopy full SHA for 45a631e
internal/orchestrator/app/generator/app_template/sketch/sketch.ino
@@ -1,3 +1,15 @@
1
-void setup() {}
+#include <Arduino_RouterBridge.h>
2
3
-void loop() {}
+void setup() {
4
+ // setup the bridge for comunicating with the Linux subsystem.
5
+ Bridge.begin();
6
+
7
+ // start the monitor for debugging logs.
8
+ Monitor.begin();
9
10
+ // put your setup code here, to run once:
11
+}
12
13
+void loop() {
14
+ // put your main code here, to run repeatedly:
15
internal/orchestrator/app/generator/app_template/sketch/sketch.yaml
@@ -4,6 +4,8 @@ profiles:
platforms:
- platform: arduino:zephyr
libraries:
+ - Arduino_RouterBridge (0.2.2)
+ - Arduino_RPClite (0.2.0)
- MsgPack (0.4.2)
- DebugLog (0.8.4)
- ArxContainer (0.7.0)
0 commit comments