For prosperity. This was actually very easy to fix. I found the definition of the driver here: https://github.com/weewx/weewx/blob/master/bin/weewx/drivers/wmr9x8.py
So I just changed my default mappings on lines 148 & 149 and 158 & 159 so that the extra sensors wrote to the default slots in weewx and the default sensors wrote to the extra slots. On Thursday, January 17, 2019 at 11:48:37 PM UTC-6, Stephen Emert wrote: > > Wow, I am reviving an old one but I face the same issue. My original > Channel 1 humidity sensor died and there are no reliable replacements to be > found. So I purchased an add-on outdoor temp & humidity sensor. So I need > channel 2 to be the default to send data to Weather Underground. I am also > making the move from Cumulus on a Windows Home Server V1 to weewx on a > Raspberry PI, so I am a bit in the weeds. Looks like it is just a matter to > modify the driver file to change the mappings for the channels. John, did > you solve this problem by chance? > > On Saturday, November 22, 2014 at 2:51:25 PM UTC-6, John Trostel wrote: >> >> Hacking about with the skins has let me show the outside temperature... >> Any idea how to send it correctly to Wunderground? >> >> >> John Trostel >> [email protected] >> >> On Sat, Nov 22, 2014 at 1:41 PM, mwall <[email protected]> >> wrote: >> >>> On Saturday, November 22, 2014 1:26:23 PM UTC-5, John Trostel wrote: >>>> >>>> I'm seeing the outside data when I run weewx directly as extraHumid1 >>>> and extraTemp1. Is there a place to make that display on the local >>>> webpage? >>>> >>> >>> you must modify the skin to display additional observations. >>> >>> as an example, consider the Standard skin. in skins/Standard/skin.conf >>> you tell weewx to include extraTemp1 and extraHumid1 in plots. for >>> example, if you want extraTemp1 in the same plot as outTemp and dewpoint, >>> then change this: >>> >>> [[[daytempdew]]] >>> [[[[outTemp]]]] >>> [[[[dewpoint]]]] >>> >>> to this: >>> >>> [[[daytempdew]]] >>> [[[[outTemp]]]] >>> [[[[extraTemp1]]]] >>> [[[[dewpoint]]]] >>> >>> similarly for humidity. >>> >>> to display current readings, modify skins/Standard/index.html.tmpl. for >>> example, change this: >>> >>> <tr> >>> <td class="stats_label">Outside Temperature</td> >>> <td class="stats_data">$current.outTemp</td> >>> </tr> >>> >>> to this: >>> >>> <tr> >>> <td class="stats_label">Outside Temperature</td> >>> <td class="stats_data">$current.outTemp</td> >>> </tr> >>> <tr> >>> <td class="stats_label">Extra Temperature</td> >>> <td class="stats_data">$current.extraTemp1</td> >>> </tr> >>> >>> see the Labels section in skin.conf to assign a label to extraTemp1. >>> the customizing guide describes these things in much greater detail. >>> >>> m >>> >>> -- >>> You received this message because you are subscribed to a topic in the >>> Google Groups "weewx-user" group. >>> To unsubscribe from this topic, visit >>> https://groups.google.com/d/topic/weewx-user/WxuyI4DoakM/unsubscribe. >>> To unsubscribe from this group and all its topics, send an email to >>> [email protected]. >>> For more options, visit https://groups.google.com/d/optout. >>> >> >> -- 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]. For more options, visit https://groups.google.com/d/optout.
