User Guide
12/29/2017 Open Source WiFi Weather Station System - Microduino Wiki
http://wiki.microduinoinc.com/Open_Source_WiFi_Weather_Station_System 3/10
You can scan the two-dimension code below to get Weather Station
APP.
Also, you can make your own one.
In this case, you can click the panel and call out WIDGET BOX,
on which you can see many choices.
Add Value Display item and name "temperature" to display
Temperature value acquired.
Select V2 on INPUT; Choose PUSH on READING
FREQUENCY, which indicates the temperature is sent from the
Weather Station and the frequency is controlled by Microduino
Client.
The corresponding code at the Microduino Client is:
void senTempHumi() {
am2321.read();
float sensor_tem = am2321.temperature / 10.0;
float sensor_hum = am2321.humidity / 10.0;
Blynk.virtualWrite(V2, sensor_tem);
Blynk.virtualWrite(V3, sensor_hum);
oled(sensor_tem, sensor_hum, sensor_light, sensorPM25, Sensor_etoh);
}










