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 11422 matches

by mcrossley
Fri 27 Mar 2020 9:14 am
Forum: Oregon Scientific
Topic: CumulusMX errors with WMRS200
Replies: 5
Views: 7825

Re: CumulusMX errors with WMRS200

Looks like it is failing to read from the USB data stream. Please try and reproduce this on a physical machine.
Also when gathering diagnostics please start CumulusMX.exe with the -debug parameter - thanks.
by mcrossley
Thu 26 Mar 2020 11:09 am
Forum: Davis VP/VP2/Vue
Topic: System change cumulusMX
Replies: 1
Views: 1075

Re: System change cumulusMX

Assuming the htx file from WeatherLink is a text file, you would have to create a template file for Cumulus to process. The template would contain all the boiler plate text, and use web tags for the data you want to insert. Then add the template to the Extra files in the Cumulus config, tick "P...
by mcrossley
Thu 26 Mar 2020 9:41 am
Forum: Weather
Topic: Rainfall Records Rescue Project
Replies: 3
Views: 3933

Re: Rainfall Records Rescue Project

I've done a few already - I picked my birth year!
by mcrossley
Wed 25 Mar 2020 9:35 pm
Forum: Cumulusutils
Topic: Original release topic
Replies: 603
Views: 84626

Re: Cumulusutils

My sun chart is in server side PHP, if you wanted to do that client-side you'd probably have to use Canvas (bitmap drawing) or SVG (vector drawing) in JavaScript - or plot it in something like Highcharts.
by mcrossley
Wed 25 Mar 2020 12:36 pm
Forum: Cumulus MX Current (releases since b3043)
Topic: Errors on CumulusMX startup
Replies: 19
Views: 3231

Re: Errors on CumulusMX startup

It runs the archive retrieval twice because if the catch-up is long, and particularly on a slow machine (pi zero anyone), then another archive record could have been written before we finish processing the first batch.
by mcrossley
Wed 25 Mar 2020 12:31 pm
Forum: Cumulus MX Current (releases since b3043)
Topic: MQTT Export - Added Build 3071
Replies: 70
Views: 23227

Re: MQTT Export

Vossenberg wrote: Tue 24 Mar 2020 10:11 pm If you need somebody to test, i''ll be around!
Noted.
by mcrossley
Tue 24 Mar 2020 8:06 pm
Forum: Cumulus MX Current (releases since b3043)
Topic: MQTT Export - Added Build 3071
Replies: 70
Views: 23227

Re: MQTT Export

I don't know if anybody has used it - I seem to recall it being discussed in the past - but it is on my to-do list for a built-in function, I have a version of the Climatica console that uses MQTT.
by mcrossley
Tue 24 Mar 2020 5:15 pm
Forum: Cumulus MX Current (releases since b3043)
Topic: Thank you Mark
Replies: 1
Views: 685

Re: Thank you Mark

Thanks Adrian, I'll try and keep Cumulus going for a while longer yet :lol:

The editors are rudimentary, but slicker versions cost $$$ unfortunately. We can hope the free version adds in-line editing soon.
by mcrossley
Tue 24 Mar 2020 5:12 pm
Forum: SteelSeries Gauges
Topic: Trend graphs not updating using MX
Replies: 4
Views: 3185

Re: Trend graphs not updating using MX

I'm confused, do you mean the graphs page, or the pop-up graphs on the SS gauges? If the latter (which I think is what you mean), then there is no built-in support in Cumulus MX for generating those, the ones you are seeing will be the last ones generated by Cumulus 1 when it was running. To generat...
by mcrossley
Mon 23 Mar 2020 5:51 pm
Forum: Cumulus MX Current (releases since b3043)
Topic: Cumulus MX Announcements and Download - PLEASE READ FIRST
Replies: 144
Views: 306864

Re: Cumulus MX Announcements and Download - PLEASE READ FIRST

Version 3.4.6 - Build 3070 is now available for download. Fix for station wind chill on Davis WLL devices Fix for auto-discovered Davis WLL Station-Ids not being saved to the config file More robust failure handling for realtime FTP connections Additional diagnostics output in the console and log fi...
by mcrossley
Mon 23 Mar 2020 3:40 pm
Forum: Cumulus MX Interface Customisation
Topic: Don't try to change "todayyest.html"
Replies: 13
Views: 4668

Re: Don't try to change "todayyest.html"

I see the image too?
by mcrossley
Mon 23 Mar 2020 1:54 pm
Forum: SteelSeries Gauges
Topic: gauges.js problem with $.active
Replies: 9
Views: 3424

Re: gauges.js problem with $.active

Silly question ... Is jqXHR.abort(); actually necessary ? I had a issue at one time when there was a problem on the web server with hung requests piling up and consuming large amounts of memory. You'd think they'd timeout and clean themselves up, but they didn't appear to. Maybe it was an old versi...
by mcrossley
Mon 23 Mar 2020 12:40 pm
Forum: SteelSeries Gauges
Topic: gauges.js problem with $.active
Replies: 9
Views: 3424

Re: gauges.js problem with $.active

The $ object is global afaik, so as long as the tiny pub/sub code has run $.publish should be there - unless you include another copy of JQuery in the containing page which overwrites the addition.
by mcrossley
Mon 23 Mar 2020 12:35 pm
Forum: SteelSeries Gauges
Topic: gauges.js problem with $.active
Replies: 9
Views: 3424

Re: gauges.js problem with $.active

By adding additional ajax to the same page, then yes you are going to trip the active flag if they are running when the gauges does its refresh. I guess you could change it to use a variable flag that is set/unset when the gauge ajax starts and completes/fails.
by mcrossley
Mon 23 Mar 2020 12:22 pm
Forum: SteelSeries Gauges
Topic: gauges.js problem with $.active
Replies: 9
Views: 3424

Re: gauges.js problem with $.active

$.publish is what pushes the data to the gauges. It is defined by Tiny Pub/Sub at the top of gauges.js /*! Tiny Pub/Sub - v0.7.0 - 2013-01-29 * https://github.com/cowboy/jquery-tiny-pubsub * Copyright (c) 2013 "Cowboy" Ben Alman; Licensed MIT */ (function($) { 'use strict'; var o = $({}); ...