From b8ec6f15f2cf4223ef23f3ba8d977bcd6d25ae5e Mon Sep 17 00:00:00 2001 From: Daniel Spindelbauer Date: Wed, 5 Sep 2018 14:11:32 +0000 Subject: [PATCH] GitBook: [master] one page modified --- pybytes/dashboard.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pybytes/dashboard.md b/pybytes/dashboard.md index 0ae3165..ee79c62 100644 --- a/pybytes/dashboard.md +++ b/pybytes/dashboard.md @@ -42,12 +42,12 @@ _thread.start_new_thread(send_env_data, ()) 3. Upload the code into your device. Now your device is sending data to Pybytes. {% hint style="info" %} - In this code, we're calling the function `pybytes.send_virtual_pin_value(persistent, pin, value))` to communicate with Pybytes. This function is part of the Pybytes library, and it has three arguments: `persistent`, `pin` and `value`. * `persistent` denotes information that is infrequently accessed and not likely to be modified; * `pin` represents which virtual pin is receiving data; -* `value` is the value being attributed to that particular pin. +* `value` is the value being attributed to that particular pin +{% endhint %} ## Step 2: Add a signal from your device