Re: [weewx-user] Re: Pressure Readings with BME280

2020-09-29 Thread Glenn McKechnie
Have you got debug turned on in weewx.conf (debug = 1)? Probably should be for this. In bme280.py it has the following... [...] # Inherit from the base class StdService: class bmp(StdService): [...] You are calling... user.bme280.bme I believe that should be ... user.bme280.bmp also , I don'

Re: [weewx-user] V4.1.1, Responsive skin but no Apparent Temperature graph line

2020-09-29 Thread Susan Mackay
It was not a typo - the database field was 'apptemp' and I've now altered it and restarted WeeWx. The strange thing is that it is the same database that I've been using all along with no edits (by me anyway). Anyway, I'll see what happens. Thanks for the advice. Susan -- You received this messa

[weewx-user] Re: Pressure Readings with BME280

2020-09-29 Thread rich T
I don't have any issues when using this driver for my BME280 sensor. https://gitlab.com/wjcarpenter/bme280wx On Tuesday, September 29, 2020 at 11:03:31 PM UTC-4, wxwatching wrote: > > I followed the installation guide here: > > > > I ran a test script like this: > > import Adafruit_BME280 > > s

[weewx-user] Re: Pressure Readings with BME280

2020-09-29 Thread wxwatching
The guide I followed was: https://github.com/bdwilson/acurite/blob/master/Pressure.md On Tuesday, September 29, 2020 at 11:03:31 PM UTC-4 wxwatching wrote: > I followed the installation guide here: > > > > I ran a test script like this: > > import Adafruit_BME280 > > sensor = Adafruit_BME280.BME

[weewx-user] Pressure Readings with BME280

2020-09-29 Thread wxwatching
I followed the installation guide here: I ran a test script like this: import Adafruit_BME280 sensor = Adafruit_BME280.BME280(t_mode=Adafruit_BME280.BME280_OSAMPLE_8, p_mode=Adafruit_BME280.BME280_OSAMPLE_8, h_mode=Adafruit_BME280.BME280_OSAMPLE_8) degrees = sensor.read_temperature() pascals

Re: [weewx-user] Logging Modifications in weewx.conf

2020-09-29 Thread Tom Quinn
I’m on Alpine Linux inside a docker container... the reason the log goes in the user directory is because syslog doesn’t work properly in python 3 under alpine... for some reason that’s beyond my ability to fix... Everything works fine if I remove the format deceleration... but if it’s there, th

Re: [weewx-user] Logging Modifications in weewx.conf

2020-09-29 Thread Tom Keffer
Putting aside the wisdom of putting the log in the user subdirectory, this worked for me and results in log entries that look like: 2020-09-29 18:16:32,402 wee_reports[16734] DEBUG weewx.engine: Loading service weewx.restx.StdCWOP 2020-09-29 18:16:32,402 wee_reports[16734] DEBUG weewx.engine: Fini

Re: [weewx-user] Re: Davis AirLink and PurpleAir

2020-09-29 Thread John Kline
You don’t say why you want to see it. If it’s a one off to see a packet, you can do that in your browser at: http:///v1/current_conditions If it’s to debug an issue, you could turn on debugging in the weewx.conf file. If it’s because you liked that line in the log every 10 seconds, you could c

[weewx-user] Logging Modifications in weewx.conf

2020-09-29 Thread Tom Quinn
Hello, I've put the below into my weewx.conf file to modify the logging since I'm running this in a docker container: [Logging] # Root logger [[root]] handlers = rotate,# 1 [[loggers]] [[[weewx.restx]]] level = WARNING [[handlers]]

Re: [weewx-user] Weewx with WeatherlinkLiveUDP crashing

2020-09-29 Thread Tom Quinn
I've written a driver for the same, and what I found while doing so, is that sometimes the weather link live device just doesn't want to participate, or there's some other network error. it seems that grebleem hasn't handled that any better than I did (thought I'm working on fixing that now) O

Re: [weewx-user] Re: Davis AirLink and PurpleAir

2020-09-29 Thread philip....@gmail.com
John Thanks for your help. In the fault log yesterday it logged what it was seeing from the AirLink now its logging OK just wondered if I could still somehow see what it was sending. Phil On Tuesday, September 29, 2020 at 2:49:05 PM UTC+1 jo...@johnkline.com wrote: > Cool! Thanks for letting

Re: [weewx-user] Re: Davis AirLink and PurpleAir

2020-09-29 Thread John Kline
Cool! Thanks for letting me know. > On Sep 29, 2020, at 2:52 AM, philip@gmail.com > wrote: > > Hi John > The log is all clear and you can have a look at the demo page at > http://sheringhamweather.ddns.net/airlink/index.html > Thanks > Phil > >> On Monday, September 28, 2020 at 11:05

[weewx-user] Re: whew and gw1000

2020-09-29 Thread gjr80
The FTP report uploads everything within and below the HTML_ROOT directory. If there are files being uploaded by the FTP report that you don't want uploaded there are a few different approaches that can be used to stop the unwanted files being u

Re: [weewx-user] Rainy days greater than 1mm

2020-09-29 Thread Chris Davies-Barnard
Thank you. On Tue, Sep 29, 2020 at 1:05 PM Tom Keffer wrote: > Commit 73d8d2 > > > > On Tue, Sep 29, 2020 at 4:31 AM Tom Keffer wrote: > >> Yes, it should be possible. Unfortunately, there's not much documentatio

Re: [weewx-user] Rainy days greater than 1mm

2020-09-29 Thread Tom Keffer
Commit 73d8d2 On Tue, Sep 29, 2020 at 4:31 AM Tom Keffer wrote: > Yes, it should be possible. Unfortunately, there's not much documentation > about aggregations taking a value, and what little there is, is wrong! >

Re: [weewx-user] Rainy days greater than 1mm

2020-09-29 Thread Tom Keffer
Yes, it should be possible. Unfortunately, there's not much documentation about aggregations taking a value, and what little there is, is wrong! On Mon, Sep 28, 2020 at 10:35 PM Chris Davies-Barnard < cdaviesbarn...@gmail.com> wrote: > Thanks Tom. > > Should I have been able to glean this from th

Re: [weewx-user] Re: Davis AirLink and PurpleAir

2020-09-29 Thread philip....@gmail.com
Hi John The log is all clear and you can have a look at the demo page at http://sheringhamweather.ddns.net/airlink/index.html Thanks Phil On Monday, September 28, 2020 at 11:05:17 PM UTC+1 philip@gmail.com wrote: > Thanks John Appreciate all your hard work > Will let you know but it will

[weewx-user] Get data from the last 24h

2020-09-29 Thread Shagazan
Hello , I try to create the table of records with the last data of 24h, with minute and hours On Weewx Doc, we have the tag "$ Hours, $day" but not "$minute", it's possible get minute . Same this :) Thanks [image: chrome_fNtgsLsDMF.png] -- You received this message because you are subs