--
You received this message because you are subscribed to the Google Groups "weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/6128085f-d037-4a9f-92ce-202c3a7d92d1n%40googlegroups.com.
I'm assuming that I need to comment out lines in index.html.tmpl under the enabled skin I'm using.
The gw1000 driver is reporting air quality number for pm2_5 and pm2_51_24h_avg.
I have weewx working. I can see reports for all my devices except for the EcoWitt WH0290 air quality monitor. Plus I'm getting empty reports on devices I don't have such as wind speed, direction and rain measurements.
First how do I remove the charts for devices I currently don't have. (At some point in the future when the budget allows, I'll be purchasing more devices.)
Second, I have the EcoWitt WH0290 air quality device configured on my GW1000 device. However, I'm not seeing any graphs. How do I add those reports. The EcoWitt site does report air quality numbers so I know the device is working.
The GW1000 should recognize the WH41/43 - and the weewx database field name is pm2_5
--------------------------------
in weewx.conf in the
[StdReport]
[[Default]]
[[[Labels]]]
[[[[Generic]]]] # stanza you can give it a name e.g.
PM2.5 indoor or PM2.5 outdoor
......
inTemp = Inside Temperature
outHumidity = outside Humidity
.....
pm2_5 = PM2.5 indoor
--------------------------------
in skin.conf you will have to add under
[ImageGenerator]
[[day_image]]
......
[[[daytempdew]]]
[[[[outTemp]]]]
[[[[dewpoint]]]]
......
[[[daypm25]]]i
yscale = None, None, 0.5
[[[[pm2_5]]]]
you will also have to add entries for
[[week_image]]
....
[[[weekpm25]]]
yscale = None, None, 0.5
[[[[pm2_5]]]]
.....
[[month_image]]
[[year_image]]
-----------------------------
in index.html.tmpl you will have to add
........
#if $day.inTemp.has_data
<img src="daytempin.png" alt="$obs.label.inTemp"
/>
#end if
#if $day.inHumidity.has_data
<img src="dayhumin.png"
alt="$obs.label.inHumidity" />
#end if
........
#if $day.pm2_5.has_data or $day.pm1_0.has_data
<img src="daypm25.png" alt="$obs.label.pm2_5"
/>
#end if
similarly for week, month and year
Good luck and have fun !
Thanks in advance and thanks to the developers for a fun project.Clifford
--
You received this message because you are subscribed to the Google Groups "weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/25cc1d1d-519c-48d3-b02b-3d27bee703a2n%40googlegroups.com.