Welcome to the Cumulus Support forum.

Latest Cumulus MX V3 release 3.28.6 (build 3283) - 21 March 2024

Cumulus MX V4 beta test release 4.0.0 (build 4019) - 03 April 2024

Legacy Cumulus 1 release 1.9.4 (build 1099) - 28 November 2014
(a patch is available for 1.9.4 build 1099 that extends the date range of drop-down menus to 2030)

Download the Software (Cumulus MX / Cumulus 1 and other related items) from the Wiki

Search found 26104 matches

by steve
Tue 04 Sep 2018 6:03 pm
Forum: Fine Offset/EasyWeather
Topic: FTP upload error
Replies: 20
Views: 9276

Re: FTP upload error

The ftplog.txt file is in the Cumulus installation folder once you have turned on ftp logging. It might have more information but it looks like your ftp settings are incorrect.
by steve
Mon 03 Sep 2018 5:02 pm
Forum: Fine Offset/EasyWeather
Topic: FTP upload error
Replies: 20
Views: 9276

Re: FTP upload error

If you turn on ftp logging, the ftplog.txt file should have further information to help resolve the problem.
by steve
Sun 02 Sep 2018 8:56 pm
Forum: Cumulus MX Current (releases since b3043)
Topic: USB stop responding
Replies: 35
Views: 13772

Re: USB stop responding

If I do any more updates, I'll have a look to see if there's anything I can do.
by steve
Sun 02 Sep 2018 5:36 pm
Forum: Cumulus MX Current (releases since b3043)
Topic: USB stop responding
Replies: 35
Views: 13772

Re: USB stop responding

In response to a 'history available' packet, Cumulus sends a 'DA' ("request historic data") packet, which is supposed to make the station send the history packet - according to the unofficial spec that I used to write the code - https://www.bashewa.com/wmr200-protocol.php It's not immediat...
by steve
Sun 02 Sep 2018 5:06 pm
Forum: CumulusMX Beta (releases up to b3043 ONLY)
Topic: Add Extra Temp Value to Interface Page
Replies: 11
Views: 9765

Re: Add Extra Temp Value to Interface Page

I think that if you have the above string in a variable called str, and you have an HTML span called extratemp, then the following javascript will do what you want: var jsonData = JSON.parse(str); document.getElementById("extratemp").textContent=Math.trunc(jsonData.data[0][1]); You can pro...
by steve
Sun 02 Sep 2018 4:29 pm
Forum: CumulusMX Beta (releases up to b3043 ONLY)
Topic: Add Extra Temp Value to Interface Page
Replies: 11
Views: 9765

Re: Add Extra Temp Value to Interface Page

If you show the result of that json data call, I (or someone else more clever than me) should be able to show you the javascript to extract just the single value. It's probably as simple as indexing by zero - data[0] - if it's a simple row which is returned, I can't remember.
by steve
Sun 02 Sep 2018 4:23 pm
Forum: Cumulus MX Current (releases since b3043)
Topic: USB stop responding
Replies: 35
Views: 13772

Re: USB stop responding

The station seems to have got a bit confused, it suddenly said that there was an archive packet available in the middle of 'live' running. It should only signal that when software hasn't previously been reading live data. It's possible that the response from Cumulus wasn't what it was expecting at t...
by steve
Sun 02 Sep 2018 12:45 pm
Forum: CumulusMX Beta (releases up to b3043 ONLY)
Topic: am i missing somthing or what?
Replies: 14
Views: 4996

Re: am i missing somthing or what?

The dayfile editor takes the last rain value for each day in the monthly log file and uses that for the total for that day. The monthly record editor uses the daily totals in dayfile.txt to determine the runs of wet or dry days, adding one to the appropriate count for each day that it finds in the f...
by steve
Sun 02 Sep 2018 11:58 am
Forum: CumulusMX Beta (releases up to b3043 ONLY)
Topic: am i missing somthing or what?
Replies: 14
Views: 4996

Re: am i missing somthing or what?

You said it was May and you're editing July? The point of editing the ini file is so you don't have to use the data logs for that figure. Editing the ini file and then using the editor is not sensible. Your data is clearly incorrect somewhere. If you are updating that record from the dayfile data th...
by steve
Sat 01 Sep 2018 6:26 pm
Forum: CumulusMX Beta (releases up to b3043 ONLY)
Topic: am i missing somthing or what?
Replies: 14
Views: 4996

Re: am i missing somthing or what?

You don't need to rebuild the dayfile to correct the current number of days since it last rained, and rebuilding dayfile.txt definitely doesn't overwrite today.ini, so I have no idea what you're doing wrong. What do you mean by "this was back in my 2018"?
by steve
Sat 01 Sep 2018 6:18 pm
Forum: CumulusMX Beta (releases up to b3043 ONLY)
Topic: am i missing somthing or what?
Replies: 14
Views: 4996

Re: am i missing somthing or what?

The current figure for the number of days since it last rained before today (consecutive dry days) is held in today.ini as I posted above.
by steve
Sat 01 Sep 2018 6:10 pm
Forum: CumulusMX Beta (releases up to b3043 ONLY)
Topic: am i missing somthing or what?
Replies: 14
Views: 4996

Re: am i missing somthing or what?

Which figure exactly are you trying to alter?
by steve
Sat 01 Sep 2018 5:44 pm
Forum: CumulusMX Beta (releases up to b3043 ONLY)
Topic: am i missing somthing or what?
Replies: 14
Views: 4996

Re: am i missing somthing or what?

http://wiki.sandaysoft.com/a/Today.ini

ConsecutiveDryDays

I think you mean "Days since it last rained", not "Days since last dry day", unless you've had a completely different summer there to everyone else in Europe.
by steve
Fri 31 Aug 2018 8:34 pm
Forum: CumulusMX Beta (releases up to b3043 ONLY)
Topic: Froggit WH3000SE
Replies: 5
Views: 2715

Re: Froggit WH3000SE

Not that I can think of. Even if there's a way of reading the data from a PC, it's not supported by Cumulus. The only way would be as described in the wiki for unsupported stations - if you can create data in the easyweather.dat format.
by steve
Fri 31 Aug 2018 8:31 pm
Forum: CumulusMX Beta (releases up to b3043 ONLY)
Topic: Add Extra Temp Value to Interface Page
Replies: 11
Views: 9765

Re: Add Extra Temp Value to Interface Page

It's possible, but you'll need to do a bit of work, and it will require some javascript knowledge. If you look at extrasensors.js, you'll see that it gets the extra temperature data with a call to api/extra/temp.json - if you put http://localhost:8998/api/extra/temp.json into your browser (or use th...