You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-6Lines changed: 2 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,5 @@
1
1
In this repo it will be implemented an Arduino library wrapper for RPClite to be run on Arduino UNO Q boards.
2
2
3
-
The desired API is shown in https://github.com/bcmi-labs/Arduino_RouterBridge/blob/main/desired.ino.
4
-
5
-
This is WIP. Expects changes soon.
6
-
7
3
## The Bridge object ##
8
4
9
5
Including Arduino_RouterBridge.h gives the user access to a Bridge object that can be used both as a RPC client and/or server to execute and serve RPCs to/from the CPU Host running a GOLANG router.
@@ -16,6 +12,8 @@ Including Arduino_RouterBridge.h gives the user access to a Bridge object that c
16
12
17
13
18
14
```cpp
15
+
#include<Arduino_RouterBridge.h>
16
+
19
17
boolset_led(bool state) {
20
18
digitalWrite(LED_BUILTIN, state);
21
19
return state;
@@ -50,7 +48,5 @@ void loop() {
50
48
};
51
49
52
50
Bridge.notify("signal", 200);
53
-
54
-
//Bridge.update(); // Thread-unsafe update execution is granted in its own thread. It can be called manually with caution
0 commit comments