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: content/pymesh/lib-ble-rpc.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,10 @@ aliases:
4
4
- pymesh/simple-example
5
5
---
6
6
7
+
## Overview
8
+
9
+
The Pymesh mobile application is available [here for both iOS and Android platforms](https://github.com/pycom/pycom-libraries/tree/master/pymesh/mobile_app). It can be used to connect over BLE to a Pymesh node. It also allows users to find out network information.
10
+
7
11
## RPC protocol
8
12
9
13
It is implemented in [ble_rpc.py](https://github.com/pycom/pycom-libraries/blob/master/lib/pymesh/lib/ble_rpc.py).
@@ -44,7 +48,7 @@ This returns the list of pairs that form a mesh connection, as shown bellow:
44
48
45
49
#### get_node_info(mac_id = ' ')
46
50
47
-
This returns the node data for a specified mac address, or own data if `mac_id` is not specified. Node data is dictionary with the following structure:
51
+
This returns the node data for a specified MAC address, or returns own data if the `mac_id` is not specified. The node data is given as a dictionary with the following structure:
Copy file name to clipboardExpand all lines: content/pymesh/simple-example.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,12 +6,14 @@ aliases:
6
6
7
7
## What is Pymesh micropython library?
8
8
9
-
The Pymesh Micropython library is a set of frozen scripts in the Pymesh firmware binary release (which has not yet been released).
9
+
The Pymesh Micropython library is a set of frozen scripts in the Pymesh firmware binary release.
10
10
11
-
[Open-source on github](https://github.com/pycom/pycom-libraries/tree/master/lib/pymesh)
11
+
[Open-source on github](https://github.com/pycom/pycom-libraries/tree/master/pymesh/pymesh_frozen)
12
12
13
13
It allows users to access Pymesh in a few lines of code, as shown in the following code snippet.
14
14
15
+
Additionally, users can install the Pymesh mobile application which is available [here for both iOS and Android platforms](https://github.com/pycom/pycom-libraries/tree/master/pymesh/mobile_app). It allows users to connect over BLE to a Pymesh node and find out network information.
0 commit comments