[weewx-user] Re: Can't get weewx to log lightning from Acurite Atlas

2021-09-27 Thread gjr80
OK. That all looks fine. The only comment I would make is that it would may 
have been prudent to use Packet.get_float()/Packet.get_int() as with the 
other numeric obs rather than obj.get() in your code that was added to class 
AcuriteAtlasPacket(), but it seems that rtl_433 returns numerics for those 
fields so it probably does not matter. The Atlas 'lines' are being picked 
up and mapped correctly. The following is your loop packet pre-deltas:

Sep 27 18:42:30 RaspberryPi4 weewx[660] DEBUG user.sdr: 
packet={'windSpeed': 4.0, 'UV': 0, 'radiation': 60, 'lux': 60, 
'strikes_total': 187, 'strike_dist': 28, 'windBatteryStatus': 0, 
'dateTime': 1632793343, 'usUnits': 1}

This tells us the sensor map is working fine. Unfortunately the sdr driver 
logs the loop packet before deltas are added so we can't confirm from the 
log whether the deltas are being correctly calculated/added to the loop 
packet. To do that you will need to run WeeWX directly 
 so you can see the 
final loop packet. Give that a go.

Gary
On Tuesday, 28 September 2021 at 13:55:24 UTC+10 kevi...@gmail.com wrote:

> Thanks Gary. Here's a snippet of my weewx log:
>
> Sep 27 18:40:26 RaspberryPi4 weewx[552] INFO __main__: Initializing weewx 
> version 4.5.1
> Sep 27 18:40:26 RaspberryPi4 weewx[552] INFO __main__: Using Python 3.7.3 
> (default, Jan 22 2021, 20:04:44) #012[GCC 8.3.0]
> Sep 27 18:40:26 RaspberryPi4 weewx[552] INFO __main__: Platform 
> Linux-5.10.60-v7l+-armv7l-with-debian-10.10
> Sep 27 18:40:26 RaspberryPi4 weewx[552] INFO __main__: Locale is 'en_US'
> Sep 27 18:40:26 RaspberryPi4 weewx[552] INFO __main__: PID file is 
> /var/run/weewx.pid
> Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO __main__: Using configuration 
> file /etc/weewx/weewx.conf
> Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO __main__: Debug is 1
> Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG __main__: Initializing engine
> Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO weewx.engine: Loading station 
> type SDR (user.sdr)
> Sep 27 18:40:26 RaspberryPi4 weewx[444]: Starting weewx weather system: 
> weewx.
> Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO user.sdr: driver version is 
> 0.78
> Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO user.sdr: sensor map is 
> {'outTemp': 'temperature.02BC.AcuriteAtlasPacket', 'outHumidity': 
> 'humidity.02BC.AcuriteAtlasPacket', 'windSpeed': 
> 'wind_speed.02BC.AcuriteAtlasPacket', 'windDir': 
> 'wind_dir.02BC.AcuriteAtlasPacket', 'UV': 'uv.02BC.AcuriteAtlasPacket', 
> 'radiation': 'lux.02BC.AcuriteAtlasPacket', 'lux': 
> 'lux.02BC.AcuriteAtlasPacket', 'Atlas_rain_total': 
> 'rain_total.02BC.AcuriteAtlasPacket', 'strikes_total': 
> 'strike_count.02BC.AcuriteAtlasPacket', 'strike_dist': 
> 'strike_distance.02BC.AcuriteAtlasPacket', 'windBatteryStatus': 
> 'battery.02BC.AcuriteAtlasPacket'}
> Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO user.sdr: deltas is {'rain': 
> 'Atlas_rain_total', 'lightningStrikes': 'strikes_total', 
> 'lightningDistance': 'strike_dist'}
> Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO user.sdr: startup process 
> 'sudo /usr/local/bin/rtl_433 -M utc -F json'
> Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG user.sdr: start async reader 
> for stdout-thread
> Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG user.sdr: start async reader 
> for stderr-thread
> Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Loading 
> service weewx.engine.StdTimeSynch
> Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Finished 
> loading service weewx.engine.StdTimeSynch
> Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Loading 
> service user.bme280wx.Bme280wx
> Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Finished 
> loading service user.bme280wx.Bme280wx
> Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Loading 
> service weewx.engine.StdConvert
> Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO weewx.engine: StdConvert 
> target unit is 0x1
> Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Finished 
> loading service weewx.engine.StdConvert
> Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Loading 
> service weewx.engine.StdCalibrate
> Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Finished 
> loading service weewx.engine.StdCalibrate
> Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Loading 
> service weewx.engine.StdQC
> Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Finished 
> loading service weewx.engine.StdQC
> Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Loading 
> service weewx.wxservices.StdWXCalculate
> Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO user.sdr: shutdown process 
> sudo /usr/local/bin/rtl_433 -M utc -F json
> Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG user.sdr: waiting for 
> stdout-thread
> Sep 27 18:40:29 RaspberryPi4 weewx[660] DEBUG user.sdr: waiting for 
> stderr-thread
> Sep 27 18:40:39 RaspberryPi4 weewx[660] 

[weewx-user] Re: Can't get weewx to log lightning from Acurite Atlas

2021-09-27 Thread Kevin Key
Thanks Gary. Here's a snippet of my weewx log:

Sep 27 18:40:26 RaspberryPi4 weewx[552] INFO __main__: Initializing weewx 
version 4.5.1
Sep 27 18:40:26 RaspberryPi4 weewx[552] INFO __main__: Using Python 3.7.3 
(default, Jan 22 2021, 20:04:44) #012[GCC 8.3.0]
Sep 27 18:40:26 RaspberryPi4 weewx[552] INFO __main__: Platform 
Linux-5.10.60-v7l+-armv7l-with-debian-10.10
Sep 27 18:40:26 RaspberryPi4 weewx[552] INFO __main__: Locale is 'en_US'
Sep 27 18:40:26 RaspberryPi4 weewx[552] INFO __main__: PID file is 
/var/run/weewx.pid
Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO __main__: Using configuration 
file /etc/weewx/weewx.conf
Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO __main__: Debug is 1
Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG __main__: Initializing engine
Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO weewx.engine: Loading station 
type SDR (user.sdr)
Sep 27 18:40:26 RaspberryPi4 weewx[444]: Starting weewx weather system: 
weewx.
Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO user.sdr: driver version is 
0.78
Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO user.sdr: sensor map is 
{'outTemp': 'temperature.02BC.AcuriteAtlasPacket', 'outHumidity': 
'humidity.02BC.AcuriteAtlasPacket', 'windSpeed': 
'wind_speed.02BC.AcuriteAtlasPacket', 'windDir': 
'wind_dir.02BC.AcuriteAtlasPacket', 'UV': 'uv.02BC.AcuriteAtlasPacket', 
'radiation': 'lux.02BC.AcuriteAtlasPacket', 'lux': 
'lux.02BC.AcuriteAtlasPacket', 'Atlas_rain_total': 
'rain_total.02BC.AcuriteAtlasPacket', 'strikes_total': 
'strike_count.02BC.AcuriteAtlasPacket', 'strike_dist': 
'strike_distance.02BC.AcuriteAtlasPacket', 'windBatteryStatus': 
'battery.02BC.AcuriteAtlasPacket'}
Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO user.sdr: deltas is {'rain': 
'Atlas_rain_total', 'lightningStrikes': 'strikes_total', 
'lightningDistance': 'strike_dist'}
Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO user.sdr: startup process 
'sudo /usr/local/bin/rtl_433 -M utc -F json'
Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG user.sdr: start async reader 
for stdout-thread
Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG user.sdr: start async reader 
for stderr-thread
Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Loading service 
weewx.engine.StdTimeSynch
Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Finished 
loading service weewx.engine.StdTimeSynch
Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Loading service 
user.bme280wx.Bme280wx
Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Finished 
loading service user.bme280wx.Bme280wx
Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Loading service 
weewx.engine.StdConvert
Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO weewx.engine: StdConvert 
target unit is 0x1
Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Finished 
loading service weewx.engine.StdConvert
Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Loading service 
weewx.engine.StdCalibrate
Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Finished 
loading service weewx.engine.StdCalibrate
Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Loading service 
weewx.engine.StdQC
Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Finished 
loading service weewx.engine.StdQC
Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG weewx.engine: Loading service 
weewx.wxservices.StdWXCalculate
Sep 27 18:40:26 RaspberryPi4 weewx[660] INFO user.sdr: shutdown process 
sudo /usr/local/bin/rtl_433 -M utc -F json
Sep 27 18:40:26 RaspberryPi4 weewx[660] DEBUG user.sdr: waiting for 
stdout-thread
Sep 27 18:40:29 RaspberryPi4 weewx[660] DEBUG user.sdr: waiting for 
stderr-thread
Sep 27 18:40:39 RaspberryPi4 weewx[660] INFO user.sdr: timed out waiting 
for stderr-thread
Sep 27 18:40:39 RaspberryPi4 weewx[660] DEBUG user.sdr: close stdout
Sep 27 18:40:39 RaspberryPi4 weewx[660] DEBUG user.sdr: close stderr
Sep 27 18:40:45 RaspberryPi4 weewx[660] DEBUG user.sdr: kill process
Sep 27 18:40:45 RaspberryPi4 weewx[660] CRITICAL __main__: Database 
connection exception: (2002, "Can't connect to local MySQL server through 
socket '/var/run/mysqld/mysqld.sock' (2)")
Sep 27 18:40:45 RaspberryPi4 weewx[660] CRITICAL __main__:   
Waiting 60 seconds then retrying...
Sep 27 18:42:01 RaspberryPi4 weewx[660] INFO __main__: retrying...
Sep 27 18:42:01 RaspberryPi4 weewx[660] INFO __main__: Using configuration 
file /etc/weewx/weewx.conf
Sep 27 18:42:01 RaspberryPi4 weewx[660] INFO __main__: Debug is 1
Sep 27 18:42:01 RaspberryPi4 weewx[660] DEBUG __main__: Initializing engine
Sep 27 18:42:01 RaspberryPi4 weewx[660] INFO weewx.engine: Loading station 
type SDR (user.sdr)
Sep 27 18:42:01 RaspberryPi4 weewx[660] INFO user.sdr: driver version is 
0.78
Sep 27 18:42:01 RaspberryPi4 weewx[660] INFO user.sdr: sensor map is 
{'outTemp': 'temperature.02BC.AcuriteAtlasPacket', 'outHumidity': 
'humidity.02BC.AcuriteAtlasPacket', 'windSpeed': 
'wind_speed.02BC.AcuriteAtlasPacket', 'windDir': 

[weewx-user] Re: Database and web pages no longer updating

2021-09-27 Thread gjr80
On Thursday, 26 August 2021 at 23:11:15 UTC+10 christian@gmail.com 
wrote:

> You are right, Gary.
> Thank you for the link and here is a copy of my log.
> Best regards
>
>
My apologies but I missed your reply. For what it’s worth now you have all 
the classic symptoms of corrupted memory in your logger. See the wiki 
article WeeWX generates HTML pages, but it does not update them 

.

Gary

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/bd59585e-01a6-4507-a536-e53fdb30b815n%40googlegroups.com.


[weewx-user] Re: Database and web pages no longer updating

2021-09-27 Thread gjr80
My apologies but I missed your reply. For what it’s worth now you have all 
the classic symptoms of corrupted memory in your logger. See the wiki 
article WeeWX generates HTML pages, but it does not update them 

.

Gary

On Thursday, 26 August 2021 at 23:11:15 UTC+10 christian@gmail.com 
wrote:

> You are right, Gary.
> Thank you for the link and here is a copy of my log.
> Best regards
>
> On Thursday, August 26, 2021 at 8:39:42 PM UTC+8 gjr80 wrote:
>
>> Hi,
>>
>> Impossible to say without more info. The log is the best place to start, 
>> the log tells us what is and isn’t going on and it doesn’t have to have an 
>> error to be of use. I suggest you follow the steps here 
>>  and 
>> post a log extract.
>>
>> Gary
>> On Thursday, 26 August 2021 at 22:32:39 UTC+10 christian@gmail.com 
>> wrote:
>>
>>> Hello everyone,
>>> Since Aug 16th, my Web pages no longer get updated. I'm using an Vantage 
>>> Pro 2.
>>> I'm running the latest version on a Raspberry Pi3 and it had been 
>>> running flawlessly for months.
>>> What I have checked so far:
>>>
>>>- The service IS running :) and I tried restarting it, as well as 
>>>rebooting the system.
>>>- There are NO error in /var/log/syslog. Only INFO (and DEBUG as I 
>>>activated it in weewx.conf).
>>>- The sqlite database file has not been updated since Aug 16h. 
>>>Running sqlite3 weewx.sdb "PRAGMA integrity_check" to check it returns 
>>> "ok" 
>>>so it doesn't seem corrupted.
>>>- I have plenty of free space on my drive.
>>>- Running ./wee_device --info returns me all expected info from the 
>>>weather station, so connection is running.
>>>
>>> I'm running out of ideas. Does anyone have a suggestion on what I could 
>>> check to pinpoint the issue?
>>> I took an image of the SD card a couple of months ago, so I can always 
>>> flash a new card with it and re-download the last three months of data 
>>> stored in the station itself but I'd rather fix it remotely as the Pi is 
>>> nowhere near me.
>>> Thank you in advance!
>>>
>>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/17476dd7-6b87-4b0d-b4c5-c68590cd16f2n%40googlegroups.com.


[weewx-user] Re: Can't get weewx to log lightning from Acurite Atlas

2021-09-27 Thread gjr80
I don’t see any obvious issues but we need to see the log to see what is 
being received, decoded and mapped by sdr.
Could you edit weewx.conf, set debug=1 and restart WeeWX. Let WeeWX run for 
10 minutes or so then post a log extract covering the full WeeWX startup 
and the next 10 or so minutes.

Gary

On Tuesday, 28 September 2021 at 08:45:14 UTC+10 kevi...@gmail.com wrote:

> Hi,
>
> I'm unable to get Weewx to light lightning - even with a clean install 
> of 4.5.1.
>
> My lightning sensor is the one that fits inside the Acurite Atlas 7 in 1 
> sensor.
>
> I'm intercepting the data via a BME280 plugin. 
>
> In sdr.py, I've modified the AcuriteAtlasPacket class to include the below 
> additional lines that reference lightning:
>
> if 'lux' in obj:
> pkt['lux'] = Packet.get_int(obj, 'lux')
> *if 'strike_count' in obj:*
> *pkt['strike_count'] = obj.get('strike_count')*
> *if 'strike_distance' in obj:*
> *pkt['strike_distance'] = obj.get('strike_distance')*
> pkt['battery'] = 1 if Packet.get_int(obj, 'battery_ok') == 0 else 0
>
>
> In weewx.conf:
>
> [[sensor_map]]
> outTemp = temperature.02BC.AcuriteAtlasPacket
> outHumidity = humidity.02BC.AcuriteAtlasPacket
> windSpeed = wind_speed.02BC.AcuriteAtlasPacket
> windDir = wind_dir.02BC.AcuriteAtlasPacket
> UV = uv.02BC.AcuriteAtlasPacket
> #rain_total = rain_total.02BC.AcuriteAtlasPacket
> radiation = lux.02BC.AcuriteAtlasPacket
> lux = lux.02BC.AcuriteAtlasPacket
> Atlas_rain_total = rain_total.02BC.AcuriteAtlasPacket
>
> strikes_total = strike_count.02BC.AcuriteAtlasPacket
> strike_dist = strike_distance.02BC.AcuriteAtlasPacket
>
> windBatteryStatus = battery.02BC.AcuriteAtlasPacket
>
> [[deltas]]
> rain = Atlas_rain_total
> lightningStrikes = strikes_total
> lightningDistance = strike_dist
>
>
> What the heck am I doing wrong?
>
>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/0466f295-9b2b-46b1-a20f-f0e14f378585n%40googlegroups.com.


[weewx-user] Can't get weewx to log lightning from Acurite Atlas

2021-09-27 Thread Kevin Key
Hi,

I'm unable to get Weewx to light lightning - even with a clean install 
of 4.5.1.

My lightning sensor is the one that fits inside the Acurite Atlas 7 in 1 
sensor.

I'm intercepting the data via a BME280 plugin. 

In sdr.py, I've modified the AcuriteAtlasPacket class to include the below 
additional lines that reference lightning:

if 'lux' in obj:
pkt['lux'] = Packet.get_int(obj, 'lux')
*if 'strike_count' in obj:*
*pkt['strike_count'] = obj.get('strike_count')*
*if 'strike_distance' in obj:*
*pkt['strike_distance'] = obj.get('strike_distance')*
pkt['battery'] = 1 if Packet.get_int(obj, 'battery_ok') == 0 else 0


In weewx.conf:

[[sensor_map]]
outTemp = temperature.02BC.AcuriteAtlasPacket
outHumidity = humidity.02BC.AcuriteAtlasPacket
windSpeed = wind_speed.02BC.AcuriteAtlasPacket
windDir = wind_dir.02BC.AcuriteAtlasPacket
UV = uv.02BC.AcuriteAtlasPacket
#rain_total = rain_total.02BC.AcuriteAtlasPacket
radiation = lux.02BC.AcuriteAtlasPacket
lux = lux.02BC.AcuriteAtlasPacket
Atlas_rain_total = rain_total.02BC.AcuriteAtlasPacket

strikes_total = strike_count.02BC.AcuriteAtlasPacket
strike_dist = strike_distance.02BC.AcuriteAtlasPacket

windBatteryStatus = battery.02BC.AcuriteAtlasPacket

[[deltas]]
rain = Atlas_rain_total
lightningStrikes = strikes_total
lightningDistance = strike_dist


What the heck am I doing wrong?


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/c645fe43-df10-48f3-a4cf-61db37630404n%40googlegroups.com.


[weewx-user] Re: Weewx / Interceptor stopped updating database and reports

2021-09-27 Thread Darren
Thank you for the response.

Firstly I didn’t intend to post multiple times, I only commented on the 
other post to see if a solution had been found, was asked to submit log. I 
then realised, the log file should really have been on my own post.

My RPi was solely being used for weewx so no big loss for reinstalling etc. 
also gave me the opportunity to upgrade OS. 

I had noticed the datetime stamp was the same and questioned it, but you 
have now confirmed the issue is with my hardware. I will investigate 
further, I have already done a ‘factory reset’ earlier today but no joy. 

I really appreciate your time and assistance, the writers of weewx and the 
intercept driver, and the whole community of helpers, without any of that I 
wouldn’t have been able to use it in the first place.

If I find a way to resolve, I will update.

On Monday, 27 September 2021 at 21:45:09 UTC+1 gjr80 wrote:

> Hi,
>
> Posting your problem to multiple threads won’t get you more help, in fact 
> it will possibly hinder us helping you. Since this thread is dedicated to 
> your issue let’s keep this issue in this thread and leave the other.
>
> Your problem is with your station; the data it is emitting always has the 
> same date-time field (dateutc) and consequently the mapped packets always 
> have the same the same timestamp. The net effect of this on WeeWX is that 
> archive records are never generated, so nothing is saved to database and no 
> reports run etc. In effect WeeWX reads data but does nothing else. I see 
> wind speed is changing in each packet so the station appears to be 
> otherwise operating OK and emitting different packets, they just have the 
> same date-time.
>
> How to fix, I don’t know but you need to start with your station. Can you 
> reset it? If there is no means of hardware reset remove all power sources, 
> including battery, for say 10 minutes and then restore power. I can’t see 
> there is a setting in the station that would do such a thing, sending 
> packets with the same date-time is non-sensical. Does your station post 
> directly to WU or the likes? If so is that working?
>
> Another solution would be for the interceptor driver to ignore the station 
> emitted date-time and use the WeeWX system time, this is a common approach 
> amongst some drivers but the interceptor does not presently support this. 
> It would take changes to the interceptor code.
>
> Just an aside for future issues. It is likely the re-install of the OS and 
> WeeWX and the change to python3 was unnecessary. If python version was an 
> issue you would have had very clear errors in your log. Reinstalling WeeWX 
> is seldom required, typically only required if you need a new version with 
> new features, that was not the case for you. Re-installing the OS is almost 
> never required, you must be thinking Windows; this is Linux :).
>
> Gary
> On Tuesday, 28 September 2021 at 03:35:03 UTC+10 dp60...@gmail.com wrote:
>
>> syslog extract
>>
>> On Monday, 27 September 2021 at 13:10:08 UTC+1 Darren wrote:
>>
>>> I have just noticed this in the syslog
>>>
>>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: using 
>>> rain_total 13.61 from yearlyrainin
>>>
>>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: firmware 
>>> WH2600GEN_V2.2.5: baromin is pressure
>>>
>>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>>> parameter ID=
>>>
>>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>>> parameter PASSWORD=
>>>
>>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>>> parameter rainin=0.00
>>>
>>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>>> parameter weeklyrainin=0.99
>>>
>>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>>> parameter monthlyrainin=4.05
>>>
>>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>>> parameter softwaretype=WH2600GEN_V2.2.5
>>>
>>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>>> parameter action=updateraw
>>>
>>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>>> parameter realtime=1
>>>
>>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>>> parameter rtfreq=5
>>>
>>> On Monday, 27 September 2021 at 12:29:26 UTC+1 Darren wrote:
>>>
 Hi

 I hope someone can help, I have posted on WXForums see link below and 
 it was suggested try here.

 In a nutshell, I'm using weewx 4.5.1 on a raspberry pi, using the 
 interceptor driver to capture the weather data. All has been working fine 
 for a long time, On Sept 12, the reports stopped being generated and the 
 database file timestamp has stopped being updated. I'm not aware of any 
 changes being made at this time.

 I have re installed the RPi, with latest Raspbian, reinstalled Weewx, 
 interceptor etc, still have the same issue over the 

[weewx-user] Re: Weewx / Interceptor stopped updating database and reports

2021-09-27 Thread gjr80
Hi,

Posting your problem to multiple threads won’t get you more help, in fact 
it will possibly hinder us helping you. Since this thread is dedicated to 
your issue let’s keep this issue in this thread and leave the other.

Your problem is with your station; the data it is emitting always has the 
same date-time field (dateutc) and consequently the mapped packets always 
have the same the same timestamp. The net effect of this on WeeWX is that 
archive records are never generated, so nothing is saved to database and no 
reports run etc. In effect WeeWX reads data but does nothing else. I see 
wind speed is changing in each packet so the station appears to be 
otherwise operating OK and emitting different packets, they just have the 
same date-time.

How to fix, I don’t know but you need to start with your station. Can you 
reset it? If there is no means of hardware reset remove all power sources, 
including battery, for say 10 minutes and then restore power. I can’t see 
there is a setting in the station that would do such a thing, sending 
packets with the same date-time is non-sensical. Does your station post 
directly to WU or the likes? If so is that working?

Another solution would be for the interceptor driver to ignore the station 
emitted date-time and use the WeeWX system time, this is a common approach 
amongst some drivers but the interceptor does not presently support this. 
It would take changes to the interceptor code.

Just an aside for future issues. It is likely the re-install of the OS and 
WeeWX and the change to python3 was unnecessary. If python version was an 
issue you would have had very clear errors in your log. Reinstalling WeeWX 
is seldom required, typically only required if you need a new version with 
new features, that was not the case for you. Re-installing the OS is almost 
never required, you must be thinking Windows; this is Linux :).

Gary
On Tuesday, 28 September 2021 at 03:35:03 UTC+10 dp60...@gmail.com wrote:

> syslog extract
>
> On Monday, 27 September 2021 at 13:10:08 UTC+1 Darren wrote:
>
>> I have just noticed this in the syslog
>>
>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: using 
>> rain_total 13.61 from yearlyrainin
>>
>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: firmware 
>> WH2600GEN_V2.2.5: baromin is pressure
>>
>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>> parameter ID=
>>
>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>> parameter PASSWORD=
>>
>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>> parameter rainin=0.00
>>
>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>> parameter weeklyrainin=0.99
>>
>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>> parameter monthlyrainin=4.05
>>
>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>> parameter softwaretype=WH2600GEN_V2.2.5
>>
>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>> parameter action=updateraw
>>
>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>> parameter realtime=1
>>
>> Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
>> parameter rtfreq=5
>>
>> On Monday, 27 September 2021 at 12:29:26 UTC+1 Darren wrote:
>>
>>> Hi
>>>
>>> I hope someone can help, I have posted on WXForums see link below and it 
>>> was suggested try here.
>>>
>>> In a nutshell, I'm using weewx 4.5.1 on a raspberry pi, using the 
>>> interceptor driver to capture the weather data. All has been working fine 
>>> for a long time, On Sept 12, the reports stopped being generated and the 
>>> database file timestamp has stopped being updated. I'm not aware of any 
>>> changes being made at this time.
>>>
>>> I have re installed the RPi, with latest Raspbian, reinstalled Weewx, 
>>> interceptor etc, still have the same issue over the database and reports 
>>> not being updated. If I set the simulator driver, all works instantly. DB 
>>> and reports are updated.
>>>
>>> More detailed  background to the issue and steps already taken can be 
>>> seen here.
>>> https://www.wxforum.net/index.php?topic=42742.new#new
>>>
>>>
>>> A couple of syslog entries below shows that data is being captured, 
>>> however I have just noticed that the date time value remains the same. Is 
>>> that correct?
>>>
>>>
>>> Sep 27 12:16:40 piweather weewx[1273] DEBUG user.interceptor: raw 
>>> packet: {'dateTime': 1632741017, 'usUnits': 1, 'rain_total': 13.61, 
>>> 'temperature_out': 57.7, 'humidity_out': 71.0, 'dewpoint': 48.4, 
>>> 'windchill': 57.7, 'wind_dir': 255.0, 'wind_speed': 5.59, 'wind_gust': 
>>> 7.61, 'solar_radiation': 91.93, 'uv': 2.0, 'temperature_in': 73.4, 
>>> 'humidity_in': 56.0, 'pressure': 30.44, 'battery': 2.0, 'rain': 0.0}
>>>
>>> Sep 27 12:16:40 piweather weewx[1273] DEBUG user.interceptor: mapped 
>>> packet: {'dateTime': 1632741017, 

[weewx-user] Re: Database and web pages no longer updating

2021-09-27 Thread vince
On Monday, September 27, 2021 at 9:22:38 AM UTC-7 dp60...@gmail.com wrote:

> I have exactly the same issue, I have backed up everything first.
>
>
Without seeing some logs, we can't help.
 

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/3da32004-7ce0-4265-8702-e7a6614a5894n%40googlegroups.com.


[weewx-user] Re: Database and web pages no longer updating

2021-09-27 Thread Darren
I have exactly the same issue, I have backed up everything first.
Was running on Raspbian 9, have completely reinstalled with Raspbian 10. 
Have moved from Python 2 to Python 3
New version of interceptor driver.

Running out of ideas.

If you find a solution, please post.

On Thursday, 26 August 2021 at 14:11:15 UTC+1 christian@gmail.com wrote:

> You are right, Gary.
> Thank you for the link and here is a copy of my log.
> Best regards
>
> On Thursday, August 26, 2021 at 8:39:42 PM UTC+8 gjr80 wrote:
>
>> Hi,
>>
>> Impossible to say without more info. The log is the best place to start, 
>> the log tells us what is and isn’t going on and it doesn’t have to have an 
>> error to be of use. I suggest you follow the steps here 
>>  and 
>> post a log extract.
>>
>> Gary
>> On Thursday, 26 August 2021 at 22:32:39 UTC+10 christian@gmail.com 
>> wrote:
>>
>>> Hello everyone,
>>> Since Aug 16th, my Web pages no longer get updated. I'm using an Vantage 
>>> Pro 2.
>>> I'm running the latest version on a Raspberry Pi3 and it had been 
>>> running flawlessly for months.
>>> What I have checked so far:
>>>
>>>- The service IS running :) and I tried restarting it, as well as 
>>>rebooting the system.
>>>- There are NO error in /var/log/syslog. Only INFO (and DEBUG as I 
>>>activated it in weewx.conf).
>>>- The sqlite database file has not been updated since Aug 16h. 
>>>Running sqlite3 weewx.sdb "PRAGMA integrity_check" to check it returns 
>>> "ok" 
>>>so it doesn't seem corrupted.
>>>- I have plenty of free space on my drive.
>>>- Running ./wee_device --info returns me all expected info from the 
>>>weather station, so connection is running.
>>>
>>> I'm running out of ideas. Does anyone have a suggestion on what I could 
>>> check to pinpoint the issue?
>>> I took an image of the SD card a couple of months ago, so I can always 
>>> flash a new card with it and re-download the last three months of data 
>>> stored in the station itself but I'd rather fix it remotely as the Pi is 
>>> nowhere near me.
>>> Thank you in advance!
>>>
>>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/b11a188a-9ced-4bbd-bf21-19b234b3b0e6n%40googlegroups.com.


[weewx-user] Re: Belchertown new install

2021-09-27 Thread tarob...@gmail.com
I have both Seasons Skin and Belchertown. I like having both, up to you if 
you want to disable the Seasons Skin. However, you can keep everything the 
same, just add /belchertown to the end of your url. So instead of 
http://your_ip/weewx it will be http://your_ip/weewx/belchertown

-Troy

On Monday, September 27, 2021 at 1:58:31 AM UTC-4 zman_...@yahoo.com wrote:

> I am doing a brand new install of the Belchertown skin so here is a noob 
> question for the group.  How do I actually get weewx to start using the 
> Belchertown skin and start uploading it to my webhost?  Do I need to set 
> enable = true in the weewx.conf file?
>
> It seems to still constantly upload the Seasons skin to my web host.  
> Where is the switch to start using the new Belchertown skin?  
>
> Here is the weewx.conf file.
>
> [[Belchertown]]
> skin = Belchertown
> enable=true
> HTML_ROOT = /var/www/html/weewx/belchertown
>
> Is this the old Seasons skin?  This is what it constantly uploads.  I'm 
> not seeing Belchertown at all and I'm pulling my hair out trying to 
> understand what is wrong.  
>
> Thanks for the help.
> Chris 
> [image: Capture.JPG]
>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/9c3830c8-64d8-473f-98b6-c4e243e68b4dn%40googlegroups.com.


[weewx-user] Re: Belchertown new install

2021-09-27 Thread Doug Jenkins
what you want to do is disable seasons and leave just belchertown enabled. 
I would also clear out the target public_html directory and point your 
belchertown skin there.

In this example, I am disabling the seasons skin and writing the generated 
html to /home/weewx/public_html. Adjust your target html directory in both 
HTML_ROOT and in HTML_ROOT under [Belchertown]

# = START EXAMPLE =

# Options for 'StdReport'
[StdReport]

# Where the skins reside, relative to WEEWX_ROOT
SKIN_ROOT = /etc/weewx/skins

# Where the generated reports should go, relative to WEEWX_ROOT
HTML_ROOT = /home/weewx/public_html

# The database binding indicates which data should be used in reports.
data_binding = wx_binding

# Whether to log a successful operation
log_success = True

# Whether to log an unsuccessful operation
log_failure = True

# Each of the following subsections defines a report that will be run.
# See the customizing guide to change the units, plot types and line
# colors, modify the fonts, display additional sensor data, and other
# customizations. Many of those changes can be made here by overriding
# parameters, or by modifying templates within the skin itself.

[[SeasonsReport]]
# The SeasonsReport uses the 'Seasons' skin, which contains the
# images, templates and plots for the report.
skin = Seasons
enable = False   

[[Belchertown]]
skin = Belchertown
HTML_ROOT = /home/weewx/public_html
enable = true

# = END EXAMPLE =

On Monday, September 27, 2021 at 4:44:39 AM UTC-4 kk44...@gmail.com wrote:

> May be, you want to add 'belchertown' at the end of the URL you enter into 
> the browser.
>
> zman_...@yahoo.com schrieb am Montag, 27. September 2021 um 07:58:31 
> UTC+2:
>
>> I am doing a brand new install of the Belchertown skin so here is a noob 
>> question for the group.  How do I actually get weewx to start using the 
>> Belchertown skin and start uploading it to my webhost?  Do I need to set 
>> enable = true in the weewx.conf file?
>>
>> It seems to still constantly upload the Seasons skin to my web host.  
>> Where is the switch to start using the new Belchertown skin?  
>>
>> Here is the weewx.conf file.
>>
>> [[Belchertown]]
>> skin = Belchertown
>> enable=true
>> HTML_ROOT = /var/www/html/weewx/belchertown
>>
>> Is this the old Seasons skin?  This is what it constantly uploads.  I'm 
>> not seeing Belchertown at all and I'm pulling my hair out trying to 
>> understand what is wrong.  
>>
>> Thanks for the help.
>> Chris 
>> [image: Capture.JPG]
>>
>>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/73bedb22-061b-4d29-b869-4d8e10c06ff5n%40googlegroups.com.


[weewx-user] Re: Weewx / Interceptor stopped updating database and reports

2021-09-27 Thread Darren
I have just noticed this in the syslog

Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: using 
rain_total 13.61 from yearlyrainin

Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: firmware 
WH2600GEN_V2.2.5: baromin is pressure

Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
parameter ID=

Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
parameter PASSWORD=

Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
parameter rainin=0.00

Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
parameter weeklyrainin=0.99

Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
parameter monthlyrainin=4.05

Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
parameter softwaretype=WH2600GEN_V2.2.5

Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
parameter action=updateraw

Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
parameter realtime=1

Sep 27 13:07:52 piweather weewx[27609] DEBUG user.interceptor: ignored 
parameter rtfreq=5

On Monday, 27 September 2021 at 12:29:26 UTC+1 Darren wrote:

> Hi
>
> I hope someone can help, I have posted on WXForums see link below and it 
> was suggested try here.
>
> In a nutshell, I'm using weewx 4.5.1 on a raspberry pi, using the 
> interceptor driver to capture the weather data. All has been working fine 
> for a long time, On Sept 12, the reports stopped being generated and the 
> database file timestamp has stopped being updated. I'm not aware of any 
> changes being made at this time.
>
> I have re installed the RPi, with latest Raspbian, reinstalled Weewx, 
> interceptor etc, still have the same issue over the database and reports 
> not being updated. If I set the simulator driver, all works instantly. DB 
> and reports are updated.
>
> More detailed  background to the issue and steps already taken can be seen 
> here.
> https://www.wxforum.net/index.php?topic=42742.new#new
>
>
> A couple of syslog entries below shows that data is being captured, 
> however I have just noticed that the date time value remains the same. Is 
> that correct?
>
>
> Sep 27 12:16:40 piweather weewx[1273] DEBUG user.interceptor: raw packet: 
> {'dateTime': 1632741017, 'usUnits': 1, 'rain_total': 13.61, 
> 'temperature_out': 57.7, 'humidity_out': 71.0, 'dewpoint': 48.4, 
> 'windchill': 57.7, 'wind_dir': 255.0, 'wind_speed': 5.59, 'wind_gust': 
> 7.61, 'solar_radiation': 91.93, 'uv': 2.0, 'temperature_in': 73.4, 
> 'humidity_in': 56.0, 'pressure': 30.44, 'battery': 2.0, 'rain': 0.0}
>
> Sep 27 12:16:40 piweather weewx[1273] DEBUG user.interceptor: mapped 
> packet: {'dateTime': 1632741017, 'usUnits': 1, 'pressure': 30.44, 
> 'outHumidity': 71.0, 'inHumidity': 56.0, 'outTemp': 57.7, 'inTemp': 73.4, 
> 'windSpeed': 5.59, 'windGust': 7.61, 'windDir': 255.0, 'radiation': 91.93, 
> 'dewpoint': 48.4, 'windchill': 57.7, 'rain': 0.0, 'UV': 2.0, 
> 'txBatteryStatus': 2.0}
>
> Sep 27 12:20:08 piweather weewx[1273] DEBUG user.interceptor: raw packet: 
> {'dateTime': 1632741017, 'usUnits': 1, 'rain_total': 13.61, 
> 'temperature_out': 57.7, 'humidity_out': 70.0, 'dewpoint': 48.0, 
> 'windchill': 57.7, 'wind_dir': 192.0, 'wind_speed': 4.47, 'wind_gust': 
> 7.61, 'solar_radiation': 88.4, 'uv': 2.0, 'temperature_in': 73.4, 
> 'humidity_in': 56.0, 'pressure': 30.44, 'battery': 2.0, 'rain': 0.0}
>
> Sep 27 12:20:08 piweather weewx[1273] DEBUG user.interceptor: mapped 
> packet: {'dateTime': 1632741017, 'usUnits': 1, 'pressure': 30.44, 
> 'outHumidity': 70.0, 'inHumidity': 56.0, 'outTemp': 57.7, 'inTemp': 73.4, 
> 'windSpeed': 4.47, 'windGust': 7.61, 'windDir': 192.0, 'radiation': 88.4, 
> 'dewpoint': 48.0, 'windchill': 57.7, 'rain': 0.0, 'UV': 2.0, 
> 'txBatteryStatus': 2.0}
>
>
> Please let me know if you want any more information or log files 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 weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/c3de0074-23f8-415c-b7da-bdcd14aaabbfn%40googlegroups.com.


[weewx-user] Weewx / Interceptor stopped updating database and reports

2021-09-27 Thread Darren Parris
Hi

I hope someone can help, I have posted on WXForums see link below and it 
was suggested try here.

In a nutshell, I'm using weewx 4.5.1 on a raspberry pi, using the 
interceptor driver to capture the weather data. All has been working fine 
for a long time, On Sept 12, the reports stopped being generated and the 
database file timestamp has stopped being updated. I'm not aware of any 
changes being made at this time.

I have re installed the RPi, with latest Raspbian, reinstalled Weewx, 
interceptor etc, still have the same issue over the database and reports 
not being updated. If I set the simulator driver, all works instantly. DB 
and reports are updated.

More detailed  background to the issue and steps already taken can be seen 
here.
https://www.wxforum.net/index.php?topic=42742.new#new


A couple of syslog entries below shows that data is being captured, however 
I have just noticed that the date time value remains the same. Is that 
correct?


Sep 27 12:16:40 piweather weewx[1273] DEBUG user.interceptor: raw packet: 
{'dateTime': 1632741017, 'usUnits': 1, 'rain_total': 13.61, 
'temperature_out': 57.7, 'humidity_out': 71.0, 'dewpoint': 48.4, 
'windchill': 57.7, 'wind_dir': 255.0, 'wind_speed': 5.59, 'wind_gust': 
7.61, 'solar_radiation': 91.93, 'uv': 2.0, 'temperature_in': 73.4, 
'humidity_in': 56.0, 'pressure': 30.44, 'battery': 2.0, 'rain': 0.0}

Sep 27 12:16:40 piweather weewx[1273] DEBUG user.interceptor: mapped 
packet: {'dateTime': 1632741017, 'usUnits': 1, 'pressure': 30.44, 
'outHumidity': 71.0, 'inHumidity': 56.0, 'outTemp': 57.7, 'inTemp': 73.4, 
'windSpeed': 5.59, 'windGust': 7.61, 'windDir': 255.0, 'radiation': 91.93, 
'dewpoint': 48.4, 'windchill': 57.7, 'rain': 0.0, 'UV': 2.0, 
'txBatteryStatus': 2.0}

Sep 27 12:20:08 piweather weewx[1273] DEBUG user.interceptor: raw packet: 
{'dateTime': 1632741017, 'usUnits': 1, 'rain_total': 13.61, 
'temperature_out': 57.7, 'humidity_out': 70.0, 'dewpoint': 48.0, 
'windchill': 57.7, 'wind_dir': 192.0, 'wind_speed': 4.47, 'wind_gust': 
7.61, 'solar_radiation': 88.4, 'uv': 2.0, 'temperature_in': 73.4, 
'humidity_in': 56.0, 'pressure': 30.44, 'battery': 2.0, 'rain': 0.0}

Sep 27 12:20:08 piweather weewx[1273] DEBUG user.interceptor: mapped 
packet: {'dateTime': 1632741017, 'usUnits': 1, 'pressure': 30.44, 
'outHumidity': 70.0, 'inHumidity': 56.0, 'outTemp': 57.7, 'inTemp': 73.4, 
'windSpeed': 4.47, 'windGust': 7.61, 'windDir': 192.0, 'radiation': 88.4, 
'dewpoint': 48.0, 'windchill': 57.7, 'rain': 0.0, 'UV': 2.0, 
'txBatteryStatus': 2.0}


Please let me know if you want any more information or log files 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 weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/c9e6d66b-28ae-4861-a7d7-e64fa84a7904n%40googlegroups.com.


[weewx-user] Re: Belchertown new install

2021-09-27 Thread Karen K
May be, you want to add 'belchertown' at the end of the URL you enter into 
the browser.

zman_...@yahoo.com schrieb am Montag, 27. September 2021 um 07:58:31 UTC+2:

> I am doing a brand new install of the Belchertown skin so here is a noob 
> question for the group.  How do I actually get weewx to start using the 
> Belchertown skin and start uploading it to my webhost?  Do I need to set 
> enable = true in the weewx.conf file?
>
> It seems to still constantly upload the Seasons skin to my web host.  
> Where is the switch to start using the new Belchertown skin?  
>
> Here is the weewx.conf file.
>
> [[Belchertown]]
> skin = Belchertown
> enable=true
> HTML_ROOT = /var/www/html/weewx/belchertown
>
> Is this the old Seasons skin?  This is what it constantly uploads.  I'm 
> not seeing Belchertown at all and I'm pulling my hair out trying to 
> understand what is wrong.  
>
> Thanks for the help.
> Chris 
> [image: Capture.JPG]
>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/5460f941-d1a2-4fa8-83ad-b7b64c1b10f5n%40googlegroups.com.