I would look for values in extraTemp1 in your database, as it seems that's 
where the python code is putting it.

A query that would report the last 10 readings of this sorted with most 
recent at the top is:

    echo "select 
datetime(dateTime,'unixepoch','localtime'),dateTime,extraTemp1 from archive 
order by rowid desc limit 10;" | sqlite3 weewx.sdb

What this is doing is saying 'give me a human readable date+time, the 
dateTime element, and the extraTemp1 element' from the archive table in the 
weewx.sdb database...and reverse sort it, showing me the 10 most recent 
readings (whew).

The location of weewx.sdb differs depending on how you installed weewx and 
what os you are running.   
See http://weewx.com/docs/usersguide.htm#Where_to_find_things for what's 
where in the various variants of operating systems etc.

-- 
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/8a08f5b0-73be-43ff-aaca-0ec102e5aa2dn%40googlegroups.com.

Reply via email to