How to enable Blynk to support LASS

編輯歷史

時間 作者 版本
2015-09-29 04:49 – 04:52 wuulong sheu r624 – r751
顯示 diff
(1 行未修改)
Follow this step, it should be easy to enable Blynk to monitor LASS sensors data.
+ This how-to only focus on the integration procedure. Understand Blynk by visit it's web site.
*Install Blynk app on mobile
(22 行未修改)
BLYNK_READ(SENSOR_ID_RECORDID) // sensorValue[0] : Record_ID
{
- Blynk.virtualWrite(SENSOR_ID_RECORDID, sensorValue[SENSOR_ID_RECORDID]);
+ Serial.print("\tBlynk comes to read!");
+ Blynk.virtualWrite(SENSOR_ID_RECORDID, sensorValue[SENSOR_ID_RECORDID]);
}
- *
+ *d. For debug purpose, you should be able to see debug print "Blynk comes to read!", when Blynk app actually comes for read this sensors.
+
+ Reference
+ Blynk web
2015-09-29 04:49 (unknown) r623
顯示 diff
(32 行未修改)
2015-09-29 04:36 – 04:49 wuulong sheu r41 – r622
顯示 diff
(2 行未修改)
Follow this step, it should be easy to enable Blynk to monitor LASS sensors data.
- 1
+ *Install Blynk app on mobile
+ *Setup Blynk
+ *Run Blynk app
+ *Create your account
+ *Create new project
+ *Name your project
+ *Hardware model select LinkItONE
+ *Copy auth token and replace blynk_auth variable in the LASS.ino
+ *Setup GUI
+ *setup one Graph Widget
+ *Click this widget
+ *Name this graph
+ *Select your INPUT
+ *If you want to monitor exist analog sensor, just select the right PIN
+ *If you want to monitor LASS sensors, select virtual PIN. The LASS enable all system sensors and enable few sensors by APP_ID. Setup V
+ for record_id ( the value should be increased in every loop())
+ *Run the project
+ *If your LASS setup correctly, you should be able to see V0 sensor increase every minutes depend on how often of your loop()
+ *Setup LASS.ino
+ *setup BLYNK_ENABLE = 1
+ *Update blynk_auth with your token that show in the Blynk app.
+ *If you have customised your sensors, make sure these setup correctly
+
+ BLYNK_READ(SENSOR_ID_RECORDID) // sensorValue[0] : Record_ID
+ {
+ Blynk.virtualWrite(SENSOR_ID_RECORDID, sensorValue[SENSOR_ID_RECORDID]);
+ }
+ *
2015-09-29 04:36 (unknown) r40
顯示 diff
(5 行未修改)
2015-09-29 04:35 – 04:36 wuulong sheu r3 – r39
顯示 diff
How to enable Blynk to support LASS
- F
+ Follow this step, it should be easy to enable Blynk to monitor LASS sensors data.
+
+ 1
2015-09-29 04:35 (unknown) r2
顯示 diff
(3 行未修改)
2015-09-29 04:35 wuulong sheu r1
顯示 diff
How to enable Blynk to support LASS
+
+ F
2015-09-29 04:35 (unknown) r0
顯示 diff
-
+ How to enable Blynk to support LASS