[weewx-user] Re: Driver crash without logs - Weewx

2020-06-11 Thread vince
On Thursday, June 11, 2020 at 5:19:24 PM UTC-7, gjr80 wrote:
>
> The thing to remember is that WeeWX tends to go quiet when a driver stops 
> feeding WeeWX, WeeWX will keep running but largely does nothing. Agree 
> there's not much to go on so far but o am not familiar with Weatherlink 
> Live and it's driver.
>
>>
>>
The driver he's running is a fork of one I wrote for a couple people who 
haven't reported any problems to date, hence my request for more info.

As background, 'my' driver queries a URL periodically, grabs the JSON, and 
constructs a packet for weewx to save.  I have multiple users who have not 
reported any issues, FWIW.   The driver is configurable for:

   - which URL to query
   - how often to query
   - how many times to try, with a configurable wait time, and a max 
   retries setting
   - if it fails try-wait-try-wait-try-wait-try (etc) the hope was that it 
   would logerr and raise the error to weewx
   - (and it was written for v3 weewx if that matters)


The forked version seems to have added a couple elements and keeps track of 
rain.  I don't know if the fork has bugs that mine doesn't have (or vice 
versa).

But if it's failing routinely I would think the normal debugging would 
apply - run weewx in the foreground and see if it works stably there, etc. 
etc. etc.

My driver is 
at 
https://github.com/vinceskahan/weewx-weatherlinklive-json/blob/master/bin/user/WeatherLinkLiveJSON.py
 
if you want to see the code.  It's based on something Matthew wrote, but of 
course any bugs should be pointed to me for my driver, and to the author of 
the fork if there are bugs in his/her fork.

Hope this helps.

-- 
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/b048d99a-f2d7-4167-ac9a-8cd2bcbe2793o%40googlegroups.com.


Re: [weewx-user] Re: Manjaro - help seeing data from Vantage Pro 2

2020-06-11 Thread John Kline
Please give the following a try:

journalctl -f _SYSTEMD_UNIT=weewx.service



>> On Jun 11, 2020, at 5:29 PM, Henri Emurian  wrote:
> 
> Hi Vince, I ran the journalctl command but don't know how to pipe it to the 
> grep command you provided. I tried running it in a second terminal but to no 
> avail. I researched the grep command and saw some syntax examples, but none 
> of them seemed to apply. Thank you for your input. 
> 
>> On Tuesday, June 9, 2020 at 2:31:29 PM UTC-4, Henri Emurian wrote:
>> I am new to Linux and recently installed Manjaro. My old operating system is 
>> Windows 7. I have a Vantage Pro 2 station which is connected via USB. On 
>> Windows 7 I used the WeatherLink software from Davis. That gave me my data 
>> by clicking the executable. 
>> I read the user guide for Weewx and installed it using the Python utility 
>> Setup.py. The install seemed to go well, although I was not sure which port 
>> to choose (I chose the default ttyUSB0). No error messages came up.
>> To run the program directly, I use cd /home/weewx, then sudo ./bin/weewxd. 
>> When I execute this command, nothing happens. The cursor just goes to the 
>> command line. There is no indication that data is being downloaded from the 
>> station. My question is, how do I know whether data is being downloaded, and 
>> how do I see my data, charts, etc? I have read the user manual and found 
>> nothing which would help. TIA for any assistance.
> 
> -- 
> 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/2f7bdee3-055f-4539-9f2d-82fc311788c0o%40googlegroups.com.

-- 
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/5617509D-2C4F-4E9C-AD3E-B07F1F2355A1%40johnkline.com.


[weewx-user] Re: Manjaro - help seeing data from Vantage Pro 2

2020-06-11 Thread mwall


On Thursday, June 11, 2020 at 8:29:43 PM UTC-4, Henri Emurian wrote:
>
> Hi Vince, I ran the journalctl command but don't know how to pipe it to 
> the grep command you provided. I tried running it in a second terminal but 
> to no avail. I researched the grep command and saw some syntax examples, 
> but none of them seemed to apply. Thank you for your input. 
>

henri,

a linux 'pipe' is one way to send the output from one program to another.  
it is indicated using the vertial bar character: |

so to pipe the output from journalctl into grep, you would do this:

journalctl | grep -i weewx

the string 'weewx' is what you are looking for, and the '-i' option says 
"ignore case"

actually, you must do this:

sudo journalctl | grep -i weewx

because systemd forces you to have escalated privileges in order to read 
the systemd version of system logs.

if you install syslog-ng then you will get the standard unix logs, which 
are plain text.

journalctl is the systemd way of logging - it is copying the way windows 
does logging, by cramming everything into a single binary blob that is much 
more difficult to work with and more prone to failure than the standard 
unix approach.  journalctl is another example of how systemd is taking over 
the linux ecosystem, and not in a good way.  (apologies for the 
editorials.  or not.)

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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/5754882b-829a-4901-bb58-3add29889caeo%40googlegroups.com.


[weewx-user] Re: Manjaro - help seeing data from Vantage Pro 2

2020-06-11 Thread Henri Emurian
Hi Vince, I ran the journalctl command but don't know how to pipe it to the 
grep command you provided. I tried running it in a second terminal but to 
no avail. I researched the grep command and saw some syntax examples, but 
none of them seemed to apply. Thank you for your input. 

On Tuesday, June 9, 2020 at 2:31:29 PM UTC-4, Henri Emurian wrote:
>
> I am new to Linux and recently installed Manjaro. My old operating system 
> is Windows 7. I have a Vantage Pro 2 station which is connected via USB. On 
> Windows 7 I used the WeatherLink software from Davis. That gave me my data 
> by clicking the executable. 
> I read the user guide for Weewx and installed it using the Python utility 
> Setup.py. The install seemed to go well, although I was not sure which port 
> to choose (I chose the default ttyUSB0). No error messages came up.
> To run the program directly, I use cd /home/weewx, then sudo ./bin/weewxd. 
> When I execute this command, nothing happens. The cursor just goes to the 
> command line. There is no indication that data is being downloaded from the 
> station. My question is, how do I know whether data is being downloaded, 
> and how do I see my data, charts, etc? I have read the user manual and 
> found nothing which would help. TIA for any assistance.
>

-- 
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/2f7bdee3-055f-4539-9f2d-82fc311788c0o%40googlegroups.com.


[weewx-user] Re: Driver crash without logs - Weewx

2020-06-11 Thread gjr80
To be fair the thread is titled 'Driver crash...' and when a driver that is 
polling every few seconds seeming stops responding calling that a driver 
crash seems reasonable.

The thing to remember is that WeeWX tends to go quiet when a driver stops 
feeding WeeWX, WeeWX will keep running but largely does nothing. Agree 
there's not much to go on so far but o am not familiar with Weatherlink 
Live and it's driver.

Gary

On Friday, 12 June 2020 09:23:03 UTC+10, vince wrote:
>
> On Thursday, June 11, 2020 at 10:35:48 AM UTC-7, Florentin Prevost wrote:
>>
>> You've seen in detail the log ?
>> Because i say already 2 times that Weewx stop without log. Look at this 
>> line on below comment :
>
> Jun  8 19:15:07 DRSRV1 weewx[24193] DEBUG urllib3.connectionpool: 
>> http://home.drealine.com:80 "GET /v1/current_conditions HTTP/1.1" 200 
>> None
>>
>> Jun  8 19:16:01 DRSRV1 CRON[1116]: (root) CMD (   
>> /home/check_weewx/watchdog_weewx.sh weewx >> /var/log/syslog)
>>
>> After this request, there are no reports. Need to restart weewx to have 
>> new data from WLL.
>>
>
> Yes I saw the detail.  Yes I read the logs. I'm going to assume English is 
> your second language, as your tone is not very nice.
>
> You have not provided any data showing that weewx itself crashed or 
> stopped.  Your log says it is still running unless I am misreading the 
> words "weewx is still running".  I also see nothing in the log saying you 
> restarted weewx, as the process id in the logs you've provided is the same 
> in every line.
>
> Might you have 'multiple' weewx processes running ?  You probably can't 
> query the Davis gear too often, so it's possible you are just querying too 
> often.
>
> Did you set your query interval to a very short period in weewx.conf ?   
> We'd need to see that too in order to help.  We can't do much with such 
> minimal data to look at.
>
> The next time you think it broke, do a "curl http:/
> home.dreamline.com/v1/current_conditions" and see if the Davis gear 
> answers with a JSON set of data.
>
> Does rebooting the pi help ?
>
> We can't help you if you don't provide more information.
>
>

-- 
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/f30235a3-93cf-4d5c-a688-5cf22dad02c5o%40googlegroups.com.


[weewx-user] Re: weewx and opensprinkler

2020-06-11 Thread Xant

WiFi75

Your posting is REALLY timely in my case...

As an early adopter of HomeAutomation, I have my lawn serviced by 
Cyber-Rain... really "high-tech" among my neighbors at that time, but the 
original Company sold a couple year ago and sending "end-of-life" notices - 
as their services, depends on their cloud Hosting services to function, 
otherwise the lawn will fry...

So, what's going on with Cyber-Rain (http://www.cyber-rain.com), now Galcon.

1) Microsoft Silverlight
"Microsoft Silverlight is a deprecated application framework for writing 
and running rich Internet applications, similar to Adobe Flash. A plugin 
for Silverlight is still available for some browsers." As today, only IE 
would support it.
The requirement of Silverlight, shows that NO further development was 
performed towards Cyber-Rain application.

2) Cyber-Rain apps
Outdated, flawed... 

There are MANY more tech difficulties just to have the Sprinkles to work... 
but no need to mention... Cyber-Rain is gone, and I need a Replacement. 
Unfortunately, another good hardware to go to pile... (and $).

Back to "options"... as I'm researching for Stable and Most connected 
option...

A) OpenSprinkler
Its promising... based on RPi, but still into to early call. And don't want 
to spent more $ to hardware that would have short live

B) "Any" Sprinkler
Current sided to Rachio 3e, for price and connectivity. with a close call 
by RainMachine.

Feedbacks are welcome, towards WeeWX and HomeAssistant connectivity.

Xant

-- 
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/9612060a-280c-4624-a365-70d20ce1d5e6o%40googlegroups.com.


[weewx-user] Re: Driver crash without logs - Weewx

2020-06-11 Thread vince
On Thursday, June 11, 2020 at 10:35:48 AM UTC-7, Florentin Prevost wrote:
>
> You've seen in detail the log ?
> Because i say already 2 times that Weewx stop without log. Look at this 
> line on below comment :

Jun  8 19:15:07 DRSRV1 weewx[24193] DEBUG urllib3.connectionpool: 
> http://home.drealine.com:80 "GET /v1/current_conditions HTTP/1.1" 200 None
>
> Jun  8 19:16:01 DRSRV1 CRON[1116]: (root) CMD (   
> /home/check_weewx/watchdog_weewx.sh weewx >> /var/log/syslog)
>
> After this request, there are no reports. Need to restart weewx to have 
> new data from WLL.
>

Yes I saw the detail.  Yes I read the logs. I'm going to assume English is 
your second language, as your tone is not very nice.

You have not provided any data showing that weewx itself crashed or 
stopped.  Your log says it is still running unless I am misreading the 
words "weewx is still running".  I also see nothing in the log saying you 
restarted weewx, as the process id in the logs you've provided is the same 
in every line.

Might you have 'multiple' weewx processes running ?  You probably can't 
query the Davis gear too often, so it's possible you are just querying too 
often.

Did you set your query interval to a very short period in weewx.conf ?   
We'd need to see that too in order to help.  We can't do much with such 
minimal data to look at.

The next time you think it broke, do a "curl 
http:/home.dreamline.com/v1/current_conditions" and see if the Davis gear 
answers with a JSON set of data.

Does rebooting the pi help ?

We can't help you if you don't provide more information.

-- 
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/c12c6a46-fded-4d6b-b235-2011908cf133o%40googlegroups.com.


[weewx-user] Re: Manjaro - help seeing data from Vantage Pro 2

2020-06-11 Thread vince
On Thursday, June 11, 2020 at 4:00:24 PM UTC-7, Henri Emurian wrote:
>
> Thanks for the help mwall. Journalctl does show me log data, but the 
> amount of data is voluminous, and I can't find any logs on weewx. Is there 
> a way to filter the results so that I can see the weewx logs? As for 
> syslog, I tried 'sudo pacman -S syslog-ng',but it didn't return anything. 
> It appeared to be looking for syslog to install, but each attempt gave 
> error 404. 
>
>
>
Run the command and pipe it to "grep -i weewx"
 

-- 
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/7577b80b-0777-4285-8aee-0f505f120109o%40googlegroups.com.


[weewx-user] Re: Manjaro - help seeing data from Vantage Pro 2

2020-06-11 Thread Henri Emurian
Thanks for the help mwall. Journalctl does show me log data, but the amount 
of data is voluminous, and I can't find any logs on weewx. Is there a way 
to filter the results so that I can see the weewx logs? As for syslog, I 
tried 'sudo pacman -S syslog-ng',but it didn't return anything. It appeared 
to be looking for syslog to install, but each attempt gave error 404. 

On Tuesday, June 9, 2020 at 2:31:29 PM UTC-4, Henri Emurian wrote:
>
> I am new to Linux and recently installed Manjaro. My old operating system 
> is Windows 7. I have a Vantage Pro 2 station which is connected via USB. On 
> Windows 7 I used the WeatherLink software from Davis. That gave me my data 
> by clicking the executable. 
> I read the user guide for Weewx and installed it using the Python utility 
> Setup.py. The install seemed to go well, although I was not sure which port 
> to choose (I chose the default ttyUSB0). No error messages came up.
> To run the program directly, I use cd /home/weewx, then sudo ./bin/weewxd. 
> When I execute this command, nothing happens. The cursor just goes to the 
> command line. There is no indication that data is being downloaded from the 
> station. My question is, how do I know whether data is being downloaded, 
> and how do I see my data, charts, etc? I have read the user manual and 
> found nothing which would help. TIA for any assistance.
>

-- 
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/3531ccc3-010c-4fd8-a6ce-33ac33d30d05o%40googlegroups.com.


[weewx-user] Problems with SDR driver failure to start process.

2020-06-11 Thread weather list
Running RTL_433 manually outputs:

time  : 2020-06-11 14:09:10
model : Ambient Weather F007TH Thermo-Hygrometer   
  House Code: 175   Channel   : 1 Battery   : OK   
 Temperature: 89.3 F
Humidity  : 41 % Integrity : CRC


Running  sudo PYTHONPATH=bin python bin/user/sdr.py the F007TH is not 
parsed:
out:[u'{"time" : "2020-06-11 18:16:14", "model" : "Ambient Weather F007TH 
Thermo-Hygrometer", "device" : 175, "channel" : 1, "battery" : "OK", 
"temperature_F" : 89.300, "humidity" : 41, "mic" : "CRC"}\n']

sdr.py has a parser for the AmbientF007TH:
class AmbientF007THPacket(Packet):
# 2017-01-21 18:17:16 : Ambient Weather F007TH Thermo-Hygrometer
# House Code: 80
# Channel: 1
# Temperature: 61.8
# Humidity: 13 %

#IDENTIFIER = "Ambient Weather F007TH Thermo-Hygrometer"
IDENTIFIER = "Ambientweather-F007TH"
PARSEINFO = {
'House Code': ['house_code', None, lambda x: int(x)],
'Channel': ['channel', None, lambda x: int(x)],
'Temperature': [
'temperature', re.compile('([\d.-]+) F'), lambda x: float(x)],
'Humidity': ['humidity', re.compile('([\d.]+) %'), lambda x: 
float(x)]}

@staticmethod
def parse_text(ts, payload, lines):
pkt = dict()
pkt['dateTime'] = ts
pkt['usUnits'] = weewx.METRIC
pkt.update(Packet.parse_lines(lines, AmbientF007THPacket.PARSEINFO))
house_code = pkt.pop('house_code', 0)
channel = pkt.pop('channel', 0)
sensor_id = "%s:%s" % (channel, house_code)
pkt = Packet.add_identifiers(
pkt, sensor_id, AmbientF007THPacket.__name__)
return pkt

# {"time" : "2017-01-21 13:01:30", "model" : "Ambient Weather F007TH 
Thermo-Hygrometer", "device" : 80, "channel" : 1, "temperature_F" : 61.800, 
"humidity" : 10}
# as of 06feb2020:
# {"time" : "2020-02-05 19:33:11", "model" : "Ambientweather-F007TH", 
"id" : 201, "channel" : 5, "battery_ok" : 1, "temperature_F" : 39.400, 
"humidity" : 60, "mic" : "CRC"}

@staticmethod
def parse_json(obj):
pkt = dict()
pkt['dateTime'] = Packet.parse_time(obj.get('time'))
pkt['usUnits'] = weewx.US
house_code = obj.get('device', 0)
channel = obj.get('channel')
pkt['temperature'] = Packet.get_float(obj, 'temperature_F')
pkt['humidity'] = Packet.get_float(obj, 'humidity')
sensor_id = "%s:%s" % (channel, house_code)
pkt = Packet.add_identifiers(
pkt, sensor_id, AmbientF007THPacket.__name__)
return pkt

My sdr.conf section for SDR:
[SDR]
# This section is for the software-defined radio driver.
   
# The driver to use
driver = user.sdr
#path = /usr/local/bin/rtl_433
#log_unknown_sensors = False
#log_unmapped_sensors = True
[[sensor_map]]
extraTemp2 = temperature.*.AmbientF007THPacket# pool 
temperature


When run under weeex-multi using:
sudo /etc/init.d/weewx start sdr

I find this in the log; I think this must be the problem but I have not 
been able to figure out how to fix it:
import of driver failed: failed to start process 'rtl_433 -M utc -F json': 
[Errno 2] No such file or directory ()
Jun 11 15:56:05 NUC2498 weewx-sdr[1653]: engine: Unable to load driver: 
failed to start process 'rtl_433 -M utc -F json': [Errno 2] No such file or 
directory


Debian 9
WeeWx 3.92
Intel NUC


-- 
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/23987357-215e-4be5-be6e-293a6c2343e0o%40googlegroups.com.


[weewx-user] Re: Driver crash without logs - Weewx

2020-06-11 Thread Florentin Prevost
You've seen in detail the log ?
Because i say already 2 times that Weewx stop without log. Look at this line on 
below comment : 

Jun  8 19:15:07 DRSRV1 weewx[24193] DEBUG urllib3.connectionpool: 
http://home.drealine.com:80 "GET /v1/current_conditions HTTP/1.1" 200 None

Jun  8 19:16:01 DRSRV1 CRON[1116]: (root) CMD (   
/home/check_weewx/watchdog_weewx.sh weewx >> /var/log/syslog)

After this request, there are no reports. Need to restart weewx to have new 
data from WLL.

-- 
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/0ebcad33-901a-44a9-9110-6f45947bd720o%40googlegroups.com.


[weewx-user] Re: Manjaro - help seeing data from Vantage Pro 2

2020-06-11 Thread mwall
On Thursday, June 11, 2020 at 12:20:40 PM UTC-4, Henri Emurian wrote:
>
> In the file structure, I do have var/log/ but no messages or syslog in the 
> file. Any other ideas?
>

you could try 'journalctl' - that is the systemd approach to reading log 
files.  since arch/manjaro have been completely taken over by systemd that 
could be the problem.

but you might have to install/enable syslog-ng

something like

sudo pacman -S syslog-ng
sudo systemctl enable syslog-ng
sudo systemctl start syslog-ng

should do it

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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/9bbb4113-d5eb-4a1b-ac8f-372aa6c7a380o%40googlegroups.com.


[weewx-user] Re: Driver crash without logs - Weewx

2020-06-11 Thread vince
On Thursday, June 11, 2020 at 4:43:09 AM UTC-7, Florentin Prevost wrote:
>
> At Jun  8 19:15:07, the weewx fail and no error appear. It is possible to 
> reload a driver ?


Nothing in the log you provided shows weewx crashing at all.


-- 
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/d337d9ca-69be-4095-9416-d424f19786bfo%40googlegroups.com.


[weewx-user] Re: Manjaro - help seeing data from Vantage Pro 2

2020-06-11 Thread Henri Emurian
Thanks for your response. I set debut=1 and tried both commands, and both 
give me this: tail: cannot open '/var/log/messages' for reading: No such 
file or directory
tail: no files remaining 
and tail: cannot open '/var/log/syslog' for reading: No such file or 
directory
tail: no files remaining

In the file structure, I do have var/log/ but no messages or syslog in the 
file. Any other ideas?

On Tuesday, June 9, 2020 at 2:31:29 PM UTC-4, Henri Emurian wrote:
>
> I am new to Linux and recently installed Manjaro. My old operating system 
> is Windows 7. I have a Vantage Pro 2 station which is connected via USB. On 
> Windows 7 I used the WeatherLink software from Davis. That gave me my data 
> by clicking the executable. 
> I read the user guide for Weewx and installed it using the Python utility 
> Setup.py. The install seemed to go well, although I was not sure which port 
> to choose (I chose the default ttyUSB0). No error messages came up.
> To run the program directly, I use cd /home/weewx, then sudo ./bin/weewxd. 
> When I execute this command, nothing happens. The cursor just goes to the 
> command line. There is no indication that data is being downloaded from the 
> station. My question is, how do I know whether data is being downloaded, 
> and how do I see my data, charts, etc? I have read the user manual and 
> found nothing which would help. TIA for any assistance.
>

-- 
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/2cc126c9-ce41-48bc-9894-15c916745952o%40googlegroups.com.


[weewx-user] Re: cannot find 'theme' Belchertown

2020-06-11 Thread Jose
you are right. a quick reinstall fixed it. thanks Pat . 

El jueves, 11 de junio de 2020, 14:29:16 (UTC+2), Pat escribió:
>
> I would say re-install Belchertown in place. Your Belchertown skin.conf 
> is missing at least this option 
> ,
>  
> there could be others. A quick reinstall (wee_extension --install) and 
> restart of weewx should fix it. 
>
> On Thursday, June 11, 2020 at 6:50:55 AM UTC-4 Jose wrote:
>
>> Hi 
>>
>> I have just installed WeeWX v4.1 with skin Belchertown v1.1 
>>
>> This is the second time I have to reinstall due to failure while updating 
>> the system which caused general failure and raspberry will not reboot 
>> anymore
>>
>> The previous time everything worked fine without problems from scratch. 
>> WeeWx 4.1 and Belchertown 1.1 no problem. 
>>
>> This time I had to face many error messages (I don't know why), for 
>> example, the system remembering that the 'smartphone' folder (and its 
>> contents) is not included in the Belchertown skin Once I faced this 
>> problem, the following error is shown as below ...
>>
>>
>> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator: 
>> Generate failed with exception ''
>> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator: 
>>  Ignoring template /etc/weewx/skins/Belchertown/index.html.tmpl
>> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator: 
>>  Reason: cannot find 'theme' while searching for 'Extras.theme'
>> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator: 
>>   Traceback (most recent call last):
>> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator: 
>> File "/usr/share/weewx/weewx/cheetahgenerator.py", line 322, in 
>> generate
>> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator: 
>>   unicode_string = compiled_template.respond()
>> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator: 
>> File "_etc_weewx_skins_Belchertown_index_html_tmpl.py", line 665, 
>> in respond
>> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator: 
>> File "/usr/lib/python3/dist-packages/Cheetah/Template.py", line 
>> 1707, in _handleCheetahInclude
>> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator: 
>>   self._CHEETAH__cheetahIncludes[_includeID].respond(trans)
>> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator: 
>> File "_etc_weewx_skins_Belchertown_header_html_tmpl.py", line 91, 
>> in respond
>> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator: 
>>   NameMapper.NotFound: cannot find 'theme' while searching for 
>> 'Extras.theme'
>>
>>
>> As a result skin Standard is working instead of Belchertown. 
>>
>> Belchertown skin is installed correctly following 
>> https://github.com/poblabs/weewx-belchertown#install-weewx-belchertown as 
>> I did last time. 
>>
>> Any ideas?
>>
>

-- 
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/b6a4aee4-4c5a-49a1-8ac9-94720477b9f2o%40googlegroups.com.


[weewx-user] Re: cannot find 'theme' Belchertown

2020-06-11 Thread Pat
I would say re-install Belchertown in place. Your Belchertown skin.conf is 
missing at least this option 
,
 
there could be others. A quick reinstall (wee_extension --install) and 
restart of weewx should fix it. 

On Thursday, June 11, 2020 at 6:50:55 AM UTC-4 Jose wrote:

> Hi 
>
> I have just installed WeeWX v4.1 with skin Belchertown v1.1 
>
> This is the second time I have to reinstall due to failure while updating 
> the system which caused general failure and raspberry will not reboot 
> anymore
>
> The previous time everything worked fine without problems from scratch. 
> WeeWx 4.1 and Belchertown 1.1 no problem. 
>
> This time I had to face many error messages (I don't know why), for 
> example, the system remembering that the 'smartphone' folder (and its 
> contents) is not included in the Belchertown skin Once I faced this 
> problem, the following error is shown as below ...
>
>
> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator: 
> Generate failed with exception ''
> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
> Ignoring template /etc/weewx/skins/Belchertown/index.html.tmpl
> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
> Reason: cannot find 'theme' while searching for 'Extras.theme'
> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
>  Traceback (most recent call last):
> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
>File "/usr/share/weewx/weewx/cheetahgenerator.py", line 322, in 
> generate
> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
>  unicode_string = compiled_template.respond()
> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
>File "_etc_weewx_skins_Belchertown_index_html_tmpl.py", line 665, in 
> respond
> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
>File "/usr/lib/python3/dist-packages/Cheetah/Template.py", line 1707, 
> in _handleCheetahInclude
> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
>  self._CHEETAH__cheetahIncludes[_includeID].respond(trans)
> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
>File "_etc_weewx_skins_Belchertown_header_html_tmpl.py", line 91, in 
> respond
> Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
>  NameMapper.NotFound: cannot find 'theme' while searching for 
> 'Extras.theme'
>
>
> As a result skin Standard is working instead of Belchertown. 
>
> Belchertown skin is installed correctly following 
> https://github.com/poblabs/weewx-belchertown#install-weewx-belchertown as 
> I did last time. 
>
> Any ideas?
>

-- 
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/1e02767a-ddbb-4d6f-a30e-a84e225b1800n%40googlegroups.com.


[weewx-user] Re: Driver crash without logs - Weewx

2020-06-11 Thread Florentin Prevost
At Jun  8 19:15:07, the weewx fail and no error appear. It is possible to 
reload a driver ?

-- 
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/25d5a67e-2008-48a3-a732-11c342e9dbb1o%40googlegroups.com.


[weewx-user] Re: Driver crash without logs - Weewx

2020-06-11 Thread Florentin Prevost
It crashed any time.

In my last comment, I say that I've no logs but this is :


Jun  8 19:14:04 DRSRV1 weewx[24193] DEBUG urllib3.connectionpool: Starting new 
HTTP connection (1): home.drealine.com:80

Jun  8 19:14:04 DRSRV1 weewx[24193] DEBUG urllib3.connectionpool: 
http://home.drealine.com:80 "GET /v1/current_conditions HTTP/1.1" 200 None

Jun  8 19:14:05 DRSRV1 weewx[24193] DEBUG user.WeatherLinkLiveJSON: Rain this 
period: 0.0

Jun  8 19:14:05 DRSRV1 weewx[24193] DEBUG user.WeatherLinkLiveJSON: Set 
Previous period rain to: 1

Jun  8 19:14:05 DRSRV1 weewx[24193] DEBUG user.WeatherLinkLiveJSON: 
{'dateTime': 1591636445, 'usUnits': 1, 'outTemp': 57.9, 'outHumidity': 76.5, 
'dewpoint': 50.6, 'heatindex': 57.6, 'windchill': 55.7, 'windSpeed': 10.0, 
'windDir': 341, 'windGust': 15.0, 'windGustDir': 325, 'barometer': 30.015, 
'pressure': 29.776, 'rain': 0.0, 'rainRate': 0.0, 'inTemp': 68.6, 'inHumidity': 
54.6, 'inDewpoint': 51.6}

Jun  8 19:14:05 DRSRV1 weewx[24193] INFO weewx.restx: MQTT: Published record 
2020-06-08 19:14:05 CEST (1591636445)

Jun  8 19:14:08 DRSRV1 weewx[24193] DEBUG urllib3.connectionpool: Starting new 
HTTP connection (1): home.drealine.com:80

Jun  8 19:14:08 DRSRV1 weewx[24193] DEBUG urllib3.connectionpool: 
http://home.drealine.com:80 "GET /v1/current_conditions HTTP/1.1" 200 None

Jun  8 19:14:09 DRSRV1 weewx[24193] DEBUG user.WeatherLinkLiveJSON: Rain this 
period: 0.0

Jun  8 19:14:09 DRSRV1 weewx[24193] DEBUG user.WeatherLinkLiveJSON: Set 
Previous period rain to: 1

Jun  8 19:14:09 DRSRV1 weewx[24193] DEBUG user.WeatherLinkLiveJSON: 
{'dateTime': 1591636449, 'usUnits': 1, 'outTemp': 57.9, 'outHumidity': 76.5, 
'dewpoint': 50.6, 'heatindex': 57.6, 'windchill': 55.7, 'windSpeed': 11.0, 
'windDir': 330, 'windGust': 15.0, 'windGustDir': 325, 'barometer': 30.015, 
'pressure': 29.776, 'rain': 0.0, 'rainRate': 0.0, 'inTemp': 68.6, 'inHumidity': 
54.6, 'inDewpoint': 51.6}

Jun  8 19:14:09 DRSRV1 weewx[24193] INFO weewx.restx: MQTT: Published record 
2020-06-08 19:14:09 CEST (1591636449)

Jun  8 19:14:12 DRSRV1 weewx[24193] DEBUG urllib3.connectionpool: Starting new 
HTTP connection (1): home.drealine.com:80

Jun  8 19:14:12 DRSRV1 weewx[24193] DEBUG urllib3.connectionpool: 
http://home.drealine.com:80 "GET /v1/current_conditions HTTP/1.1" 200 None

Jun  8 19:14:13 DRSRV1 weewx[24193] DEBUG user.WeatherLinkLiveJSON: Rain this 
period: 0.0

Jun  8 19:14:13 DRSRV1 weewx[24193] DEBUG user.WeatherLinkLiveJSON: Set 
Previous period rain to: 1

Jun  8 19:14:13 DRSRV1 weewx[24193] DEBUG user.WeatherLinkLiveJSON: 
{'dateTime': 1591636453, 'usUnits': 1, 'outTemp': 57.9, 'outHumidity': 76.5, 
'dewpoint': 50.6, 'heatindex': 57.6, 'windchill': 55.7, 'windSpeed': 6.0, 
'windDir': 337, 'windGust': 15.0, 'windGustDir': 325, 'barometer': 30.015, 
'pressure': 29.776, 'rain': 0.0, 'rainRate': 0.0, 'inTemp': 68.6, 'inHumidity': 
54.6, 'inDewpoint': 51.6}

Jun  8 19:14:13 DRSRV1 weewx[24193] INFO weewx.restx: MQTT: Published record 
2020-06-08 19:14:13 CEST (1591636453)

Jun  8 19:14:16 DRSRV1 weewx[24193] DEBUG urllib3.connectionpool: Starting new 
HTTP connection (1): home.drealine.com:80

Jun  8 19:14:16 DRSRV1 weewx[24193] DEBUG urllib3.connectionpool: 
http://home.drealine.com:80 "GET /v1/current_conditions HTTP/1.1" 200 None

Jun  8 19:14:17 DRSRV1 weewx[24193] DEBUG user.WeatherLinkLiveJSON: Rain this 
period: 0.0

Jun  8 19:14:17 DRSRV1 weewx[24193] DEBUG user.WeatherLinkLiveJSON: Set 
Previous period rain to: 1

Jun  8 19:14:17 DRSRV1 weewx[24193] DEBUG user.WeatherLinkLiveJSON: 
{'dateTime': 1591636457, 'usUnits': 1, 'outTemp': 57.8, 'outHumidity': 76.5, 
'dewpoint': 50.5, 'heatindex': 57.5, 'windchill': 55.6, 'windSpeed': 8.0, 
'windDir': 325, 'windGust': 15.0, 'windGustDir': 325, 'barometer': 30.012, 
'pressure': 29.773, 'rain': 0.0, 'rainRate': 0.0, 'inTemp': 68.6, 'inHumidity': 
54.6, 'inDewpoint': 51.6}

Jun  8 19:14:17 DRSRV1 weewx[24193] INFO weewx.restx: MQTT: Published record 
2020-06-08 19:14:17 CEST (1591636457)

Jun  8 19:14:17 DRSRV1 weewx[24193] INFO weewx.manager: Added record 2020-06-08 
19:14:00 CEST (1591636440) to database 'weewx'

Jun  8 19:14:17 DRSRV1 weewx[24193] INFO weewx.manager: Added record 2020-06-08 
19:14:00 CEST (1591636440) to daily summary in 'weewx'

Jun  8 19:14:17 DRSRV1 weewx[24193] DEBUG weewx.reportengine: Running reports 
for latest time in the database.

Jun  8 19:14:17 DRSRV1 weewx[24193] DEBUG urllib3.connectionpool: Starting new 
HTTP connection (1): home.drealine.com:80

Jun  8 19:14:17 DRSRV1 weewx[24193] INFO weewx.restx: MQTT: Published record 
2020-06-08 19:14:00 CEST (1591636440)

Jun  8 19:14:17 DRSRV1 weewx[24193] DEBUG weewx.reportengine: Report 
'StandardReport' not enabled. Skipping.

Jun  8 19:14:17 DRSRV1 weewx[24193] DEBUG weewx.reportengine: Running report 
'Belchertown'

Jun  8 19:14:17 DRSRV1 weewx[24193] DEBUG weewx.reportengine: Found 
configuration file /etc/weewx/skins/Belchertown/skin.conf for report 
'Belchertown'

Jun  8 19:

[weewx-user] Re: Driver crash without logs - Weewx

2020-06-11 Thread Jacques Terrettaz
Hi Florentin,

Could you please set debug=1 in weewx.conf, restart weewx and share the log 
file produced during  the start and at least the first  3 minutes ? 

Le jeudi 11 juin 2020 08:55:00 UTC+2, Florentin Prevost a écrit :
>
> Hi,
>
> I'm use the prepackaged of weewx 4.1.1 on python3.
>
> The problem was that the driver not sent a get request but there are no 
> log on syslog when it fail. Also, when it fail, weewx not reports each 1min 
> (it's my archive interval).
>
>

-- 
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/44e4a544-1ba9-4d8f-9e0b-5c638cc583d1o%40googlegroups.com.


[weewx-user] cannot find 'theme' Belchertown

2020-06-11 Thread Jose
Hi 

I have just installed WeeWX v4.1 with skin Belchertown v1.1 

This is the second time I have to reinstall due to failure while updating 
the system which caused general failure and raspberry will not reboot 
anymore

The previous time everything worked fine without problems from scratch. 
WeeWx 4.1 and Belchertown 1.1 no problem. 

This time I had to face many error messages (I don't know why), for 
example, the system remembering that the 'smartphone' folder (and its 
contents) is not included in the Belchertown skin Once I faced this 
problem, the following error is shown as below ...


Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator: 
Generate failed with exception ''
Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
Ignoring template /etc/weewx/skins/Belchertown/index.html.tmpl
Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
Reason: cannot find 'theme' while searching for 'Extras.theme'
Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:   
Traceback (most recent call last):
Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
   File "/usr/share/weewx/weewx/cheetahgenerator.py", line 322, in generate
Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
 unicode_string = compiled_template.respond()
Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
   File "_etc_weewx_skins_Belchertown_index_html_tmpl.py", line 665, in 
respond
Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
   File "/usr/lib/python3/dist-packages/Cheetah/Template.py", line 1707, in 
_handleCheetahInclude
Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
 self._CHEETAH__cheetahIncludes[_includeID].respond(trans)
Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:  
   File "_etc_weewx_skins_Belchertown_header_html_tmpl.py", line 91, in 
respond
Jun 11 12:25:20 raspberrypi weewx[1163] ERROR weewx.cheetahgenerator:   
NameMapper.NotFound: cannot find 'theme' while searching for 'Extras.theme'


As a result skin Standard is working instead of Belchertown. 

Belchertown skin is installed correctly following 
https://github.com/poblabs/weewx-belchertown#install-weewx-belchertown as I 
did last time. 

Any ideas?

-- 
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/5065b318-2acf-411f-a4a5-b7997857f2d1o%40googlegroups.com.


Re: [weewx-user] Re: RSYNC

2020-06-11 Thread Jose
hi Glenn
you are right. rsync -a --delete -e ssh /home/pi/backup.tar.gz 
 user@ssh.hosting:/www/ backup/  it is working fine now. thanks. 

El jueves, 11 de junio de 2020, 3:37:43 (UTC+2), Glenn McKechnie escribió:
>
> On 11/06/2020, Jose > wrote: 
> [...] 
> > 
> >  rsync -a --delete -e ssh /home/pi/backup.tar.gz  user@ssh.hosting:/www/ 
> > backup/ &> /dev/null 
> > 
> > this command worked fine in the past but not now. When I run this 
> command 
> > nothing happens, no updating remote hosting and even no error messages. 
> so 
> > RSYNC with WeeWX is working fine but RSYNC in command line don't. 
>
> Just focusing on your statement that you see no errors with the above 
> command. 
> It's doing exactly what you've told it to, that you want no feedback 
> from it, ever. It's dead to you. 
> Send whatever it has to say (&>) to the bit bucket (/dev/null) 
>
> Remove that redirect that you have on the end and it will probably 
> offer up a few clues. 
>
> rsync -a --delete -e ssh /home/pi/backup.tar.gz  user@ssh.hosting:/www/ 
> backup/ 
>
> -- 
>
>
> Cheers 
>  Glenn 
>
> rorpi - read only raspberry pi & various weewx addons 
> https://github.com/glennmckechnie 
>

-- 
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/36663c33-5540-4cf8-a06c-1c006b27a50ao%40googlegroups.com.


[weewx-user] Re: Belchertown - German Translation

2020-06-11 Thread Manfred Maier
Here you go!

Attached please find my skin.conf (with - I guess - no relevant information 
in it), plus the relevant part of my weewx.conf that holds all the German 
translations. It's important to put the translations into the weewx.conf. 
Otherwise the translations might get lost when updating the skin.

Would be great if you could post the URL of your site. I'm always looking 
for ideas of how to improve my site ;)

Best regards!
Manfred 

Am Donnerstag, 11. Juni 2020 11:02:22 UTC+2 schrieb Manfred Maier:
>
> Sure. 
> I'll upload my translations for you. Give me 15 mins.
>
> Manfred
>
> PS: On my site you can see my German translation in action (
> wetter-zorneding.de) 
>
> Am Donnerstag, 11. Juni 2020 10:53:22 UTC+2 schrieb NanoG5Kite:
>>
>> Hello everybody
>>
>> Would someone support me with his German skin-conf...?
>>
>> Regards,
>>
>> Matthias
>>
>

-- 
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/9cd4de72-5fd5-41e5-b19b-23f9273ae138o%40googlegroups.com.
###
# SKIN CONFIGURATION FILE #
# Copyright (c) 2010 Tom Keffer#
# Updated for the Belchertown Skin by Pat O'Brien, 2019   #
###

[Extras]

# General Site Defaults
check_for_updates = 1
belchertown_debug = 0
belchertown_locale = "auto"
theme = light
theme_toggle_enabled = 1
site_title = "My Weather Website"
logo_image = ""
radar_html = ""

# Station Observations. Special observation rainWithRainRate combines Daily 
Rain with Rain Rate in 1 line
station_observations = "barometer", "dewpoint", "outHumidity", 
"rainWithRainRate"

# Manifest Settings for Mobile Phones
manifest_name = "My Weather Website"
manifest_short_name = "MWW"

# Highcharts settings
highcharts_enabled = 1
graph_page_show_all_button = 1
graph_page_default_graphgroup = "day"
highcharts_homepage_graphgroup = "homepage"
highcharts_decimal = "auto"
highcharts_thousands = "auto"

# MQTT Websockets defaults
mqtt_websockets_enabled = 0
mqtt_websockets_host = ""
mqtt_websockets_port = 1883
mqtt_websockets_ssl = 0
mqtt_websockets_topic = ""
disconnect_live_website_visitor = 180

# Show an alert if the page updated timestamp is older than expected with 
this setting. Does not apply to MQTT Websocket enabled websites
# The late time threshold is defined in seconds. This should be greater 
than your archive_interval from weewx.conf.
# Typically you would want this 2 or 3 times archive_interval
show_last_updated_alert = 0
last_updated_alert_threshold = 1800

# If mqtt_websockets_enabled is set to 0, but want the page to full reload 
on an interval, specify this below in milliseconds. 30 = 5 minutes
webpage_autorefresh = 0

# Image Reload Section.
# Set reload_hook_images to 1 to enable, then set the number of *seconds* 
for each section to reload.
# A value of -1 will disable reloading images in that section.
# radar = the radar image if you used radar_html setting
# asi = index_hook_after_station_info.inc
# af = index_hook_after_forecast.inc
# as = index_hook_after_snapshot.inc
# ac = index_hook_after_charts.inc
reload_hook_images = 0
reload_images_radar = 300
reload_images_hook_asi = -1
reload_images_hook_af = -1
reload_images_hook_as = -1
reload_images_hook_ac = -1

# Forecast defaults
forecast_enabled = 0
forecast_provider = "aeris"
forecast_api_id = ""
forecast_api_secret = ""
forecast_units = "us"
forecast_lang = "en"
forecast_stale = 3540
forecast_alert_enabled = 0
forecast_alert_limit = 1
forecast_show_daily_forecast_link = 0
forecast_daily_forecast_link = ""

# Earthquake defaults
earthquake_enabled = 0
earthquake_maxradiuskm = 1000
earthquake_stale = 10740

# Social Share Button Defaults. Define the text below under Labels
facebook_enabled = 0
twitter_enabled = 0
social_share_html = "http://yourwebsite";

# Google Analytics
#googleAnalyticsId = _deleted

# This is the display of the Pi Kiosk which is in the /pi folder
pi_kiosk_bold = "false"
pi_theme = "auto"

###

[Labels]
# Labels used in this skin

[[Generic]]
# Generic labels, keyed by an observation type.
# To change a label or translate it to your language
# change the text after the equal sign.

# Extra Obser

[weewx-user] Re: Belchertown - German Translation

2020-06-11 Thread Manfred Maier
Sure. 
I'll upload my translations for you. Give me 15 mins.

Manfred

PS: On my site you can see my German translation in action 
(wetter-zorneding.de) 

Am Donnerstag, 11. Juni 2020 10:53:22 UTC+2 schrieb NanoG5Kite:
>
> Hello everybody
>
> Would someone support me with his German skin-conf...?
>
> Regards,
>
> Matthias
>

-- 
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/bb8a5b84-2157-457b-a6e5-a50a742fad2bo%40googlegroups.com.


[weewx-user] Belchertown - German Translation

2020-06-11 Thread 'NanoG5Kite' via weewx-user
Hello everybody

Would someone support me with his German skin-conf...?

Regards,

Matthias

-- 
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/7c5253ac-fa83-43e6-88b6-7d5d4c941238o%40googlegroups.com.