User Guide

12/29/2017 Open Source WiFi Weather Station System - Microduino Wiki
http://wiki.microduinoinc.com/Open_Source_WiFi_Weather_Station_System 4/10
The setting of the humidity is similar with that of temperature; Set
INPUT as V3 and send it through a timer function "
senTempHumi()".
The frequency of the timer can be achieved by codes below:
void senTempHumi() {
SimpleTimer temHumtimer;
temHumtimer.setInterval(2000L, senTempHumi);
}
Set PM2.5's INPUT as V6, READING FREQUENCY as 5s,
which represents frequency of the acquired PM2.5 data.
The corresponding code at the Microduino Client is:
BLYNK_READ(V6) {
Blynk.virtualWrite(V6, sensorPM25);
}
Similarly, set the INPUT of the Light Sensor as V4 and the
frequency is to get value every 3s.