Ok cool. I’ll check the database. Thanks for taking the time explaining it.
On Thu, Nov 12, 2020 at 9:02 PM vince <[email protected]> wrote: > 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 a topic in the > Google Groups "weewx-user" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/weewx-user/Iny0WMj78cU/unsubscribe. > To unsubscribe from this group and all its topics, 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 > <https://groups.google.com/d/msgid/weewx-user/8a08f5b0-73be-43ff-aaca-0ec102e5aa2dn%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- ------------------------------------------------------------------------------------------------- Kevin Chapman (713) 245-9368 Life is a food chain. Be at the top or be on the menu! ------------------------------------------------------------------------------------------------- -- 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/CACwjpb3uUd5jPmH5yfBsce7eBHkKQs0dSGCDcz2oWkA4ZQiD1w%40mail.gmail.com.
