On 03.08.2021 22:57, Clifford Snow wrote:
Hi Clifford, see below inline

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.)
Assuming you are using the Seasons skin, the pictures are defined in skin.conf (where you can comment out the ones you don't want) and the display of the picture on the skin (WebUI) is defined in index.html.tmpl - here, too, you can comment out the lines for the display you don't want (both files in the /etc/weewx/skins/Seasons directory - if you installed weewx with the setup.py method, the path will be different - see weewx documentation)

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 WH0290 cannot be configured in the GW1000. What can be configured is the WH41 or WH43 PM2.5 sensor. (this may sound like splitting hairs, but the WH0290 is a minimalistic console and not a sensor).

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 [email protected] <mailto:[email protected]>. To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/25cc1d1d-519c-48d3-b02b-3d27bee703a2n%40googlegroups.com <https://groups.google.com/d/msgid/weewx-user/25cc1d1d-519c-48d3-b02b-3d27bee703a2n%40googlegroups.com?utm_medium=email&utm_source=footer>.


--
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/c192748e-6e68-7a02-2e84-55bd4e54929b%40gmail.com.

Reply via email to