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

Solar Sensor

Discussion specific to Fine Offset and similar rebadged weather stations
watsonm
Posts: 208
Joined: Sun 03 Jan 2016 3:39 pm
Weather Station: N96GY -but like Triggers Broom!!
Operating System: Raspberry Pi4 Vers:11 Bullseye
Location: Poundbury, Dorset

Re: Solar Sensor

Post by watsonm »

I use pushover

Code: Select all

https://pushover.net/
to send a message from my linux box to my mobile phone. if you are detecting the spikes in a python script this is easy to setup.

Code: Select all

def msg_phone(message):
    conn = http.client.HTTPSConnection("api.pushover.net:443")
    conn.request("POST", "/1/messages.json",
      urllib.parse.urlencode({
     "token": "xxxxxxxxxxxxxxxxxxxxxxxxxx",
     "user": "xxxxxxxxxxxxxxxxxxxxxxxx",
     "message": message
      }), { "Content-type": "application/x-www-form-urlencoded" })
    conn.getresponse()
    log_err(message)
Regards Mike
Image
Raspberry Pi 4 Bullseye
Directly connected : BMP388 pressure sensor. DHT22 For internal Humidity/temp Sensor. PMS5003 Particle Sensor
Wireless connected: 3 (WS2083)Temp TXr's, WH57 Lightning Sensor, FO Solar sensor
Ulric2
Posts: 13
Joined: Mon 21 Feb 2022 11:30 am
Weather Station: FineOffset
Operating System: Ubuntu 20.04

Re: Solar Sensor

Post by Ulric2 »

Thank you! Detecting the spikes in a Python script is EXACTLY what I'm doing :-)

Pushover looks brilliant for this and has saved me a lot of time.

Copy >> Paste. Thank you again!
Ulric2
Posts: 13
Joined: Mon 21 Feb 2022 11:30 am
Weather Station: FineOffset
Operating System: Ubuntu 20.04

Re: Solar Sensor

Post by Ulric2 »

An update on the radio interference. I have now installed rtl_433 with an RTL-SDR dongle. This picks up the transmission from the Fine Offset sensors perfectly and so, I'm hoping it will also pick up whatever spurious signals are causing my problem.

I've attempted to configure it in the Alarms section of CumulusMX so that whenever loss of data contact, sensor contact, data spikes or occur, it should start up rtl_433 and log for one hour. Has anyone else attempted to do this?
watsonm
Posts: 208
Joined: Sun 03 Jan 2016 3:39 pm
Weather Station: N96GY -but like Triggers Broom!!
Operating System: Raspberry Pi4 Vers:11 Bullseye
Location: Poundbury, Dorset

Re: Solar Sensor

Post by watsonm »

RTL_433 needs to be configured for what data it is receiving. For example if the lightning receiver is running Protocol 190 must be set , if Soil moisture then protocol 142, for the Fine Offset wh1080 weather station proocol 32. These protocols are the defined data streams for these devices. Not sure what "they" would transmit to stop legitimate transmitter locking cars but interference has no defined data stream so I just wonder if you will see anything.
Maybe you need to run SDR# to visually monitor the data being sent. It has a "waterfall " display where you can see the bursts from your weather devices. Once you are familiar with a normal display you may be able to notice when interference is active.

Good Luck...
Regards Mike
Image
Raspberry Pi 4 Bullseye
Directly connected : BMP388 pressure sensor. DHT22 For internal Humidity/temp Sensor. PMS5003 Particle Sensor
Wireless connected: 3 (WS2083)Temp TXr's, WH57 Lightning Sensor, FO Solar sensor
Ulric2
Posts: 13
Joined: Mon 21 Feb 2022 11:30 am
Weather Station: FineOffset
Operating System: Ubuntu 20.04

Re: Solar Sensor

Post by Ulric2 »

Yes, I've been right through the config file for rtl_433 and made settings which seem appropriate, including truncating the list of protocols to only those which either suffer interference or, at a guess, might do. At the moment, I don't think I've got the set up quite right but it will be a matter of experimentation, I suppose.
Post Reply