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
The output object is contained in <code>msg.payload</code> property. Its structure is as follows:
@@ -20,24 +20,22 @@ <h3>Outputs</h3>
20
20
</p>
21
21
<h3>Inputs</h3>
22
22
<p>
23
-
Expects a message used for triggering <code>Read</code> operation or subscribing <code>Notify</code> events.
23
+
Expects a message used for peripheral connecting/disconnecting operation, triggering <code>Read</code> operation, or subscribing <code>Notify</code> events.
24
24
<dl>
25
25
<dt>For <code>Connect</code> operation:</dt>
26
26
<dd>
27
27
In order to connect a peripheral device, set <code>msg.topic</code> to <code>connect</code>.
28
-
<code>msg.payload</code> is always ignored.
28
+
<code>msg.payload</code> is always ignored. This operation doesn't emit anything from the Output port.
29
29
</dd>
30
30
<dt>For <code>Disonnect</code> operation:</dt>
31
31
<dd>
32
32
In order to disconnect a peripheral device, set <code>msg.topic</code> to <code>disconnect</code>.
33
-
<code>msg.payload</code> is always ignored.
33
+
<code>msg.payload</code> is always ignored. This operation doesn't emit anything from the Output port.
34
34
</dd>
35
35
<dt>For <code>Read</code> operation:</dt>
36
36
<dd>
37
37
You can set one or more characteristic uuids separated by comma (CSV) to query to <code>msg.topic</code>.
38
38
However, leave <code>msg.topic</code> empty if you want to query all readable characteristics.
39
-
40
-
<b>Note that the Read operation to the subscribing uuids cancels the subscriptions.</b>
0 commit comments