MHall,

I went ahead and upgraded the driver and added barometer.*.* to the map. It 
all appears to be working now. I can now open the standard skin. I get all 
the values filling in. I removed the Pond Temp, and added Living Room and a 
new Value for Office and they all work!!!

Thanks so much for the help!.

My next question is this. Getting data into the drive is tough. Currently 
Im using a perl script written by Radar. The script works so Im happy to 
continue using it, however it would be awesome to know your thoughts and 
syntax on using tcpdump or tcpflow. I have used both but once I pipe the 
data into netcat things go bad. nectar either closes after 1 or two 
entries, or it crashes weeks all together...

this is how Ive been using tcpdump to the perl script:
sudo tcpdump -A -n -p -l -i eth0 -s0 -W tcp dst port 80 | stdbuf -oL 
strings -n8 | stdbuf -oL grep "&" | ./acurite-lwp2.pl

however this tcpflow has a really nice input if you grab the latest version 
off GitHub and compile yourself...
sudo tcpflow -C -0 -s tcp dst port 80 

once I try and add it to the script with nectar its a no go...
sudo tcpflow -C -0 -s tcp dst port 80 | nc 192.168.1.22 8080

Here is an example of the output tcpflow gives, maybe there is something 
wrong with the output...
GET /weatherstation/updateweatherstation?dateutc=now&action=updateraw&
realtime=1&id=24C86E06B15C&mt=5N1x38&sensor=00002179&windspeedmph=2&humidity
=50&tempf=70.9&baromin=29.31&battery=normal&rssi=3 HTTP/1.1
Host: hubapi.myacurite.com
User-Agent: Hub/224
Connection: close

GET /weatherstation/updateweatherstation?dateutc=now&action=updateraw&
realtime=1&id=24C86E06B15C&mt=tower&sensor=00008384&humidity=44&tempf=83.8&
baromin=29.31&battery=normal&rssi=3 HTTP/1.1
Host: hubapi.myacurite.com
User-Agent: Hub/224
Connection: close

GET /weatherstation/updateweatherstation?dateutc=now&action=updateraw&
realtime=1&id=24C86E06B15C&mt=tower&sensor=00012694&humidity=63&tempf=73.0&
baromin=29.31&battery=normal&rssi=3 HTTP/1.1
Host: hubapi.myacurite.com
User-Agent: Hub/224
Connection: close

My ultimate goal would not to have to use an extra perl script to help 
parse the data, but its a fix for now.

Thanks again for all your help!
Brad

Here is a copy of my latest sensor map to anyone who is curious:
    [[sensor_map]]
        # bridge
        pressure = pressure..*
        inTemp = temperature..*
        inHumidity = humidity..*
        barometer = barometer.*.*

        # 5n1
        outTemp = temperature.00002179.*
        outHumidity = humidity.00002179.*
        windSpeed = windspeed.00002179.*
        windDir = winddir.00002179.*
        rain = rainfall.00002179.*

        # living room tower
        extraTemp1 = temperature.00012694.*
        extraHumid1 = humidity.00012694.*

        # second tower
        extraTemp2 = temperature.00008384.*
        extraHumid2 = humidity.00008384.*






 

On Tuesday, November 1, 2016 at 5:39:10 AM UTC-7, mwall wrote:
>
>
>
> On Tuesday, November 1, 2016 at 2:08:14 AM UTC-4, Brad Tucker wrote:
>>
>> Thanks for the help Mwall.
>> For some reason it is still not mapping the barometer. i have included my 
>> sensor map as well as logs.
>>
>>>
>>>
> the wu format sends barometric info in every packet, whereas the chaney 
> format did not.
>
> instead of this:
>
>     barometer = barometer..*
>
> you need to do this:
>
>     barometer = barometer.*.*
>
> however, you will probably find that your temperatures are mixed up.  if 
> so, download the latest interceptor (commit 53f6c5e or later) then we'll 
> have to make a few more changes to the sensor map.
>
> m
>

-- 
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+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to