WXforum.net

Weather Station Hardware => The WxTech Dream Machine => Topic started by: joegr on March 27, 2018, 03:24:40 PM

Title: Arduino receiver for Acurite 5-in-1, tower, and maybe lightning sensors
Post by: joegr on March 27, 2018, 03:24:40 PM
I made a little Arduino based receiver to replace the obsoleted Acurite smart hub.  I mainly did this because I needed a way to get the data from the sensor(s) into my home automation.  However, I did set it up to send data to Weather Underground too.

https://github.com/joegr123/WeatherStation
Title: Re: Arduino receiver for Acurite 5-in-1, tower, and maybe lightning sensors
Post by: Bushman on March 27, 2018, 03:41:11 PM
That;s great!  I also note one of the links shows the Raspberry Pi build!!! 
Title: Re: Arduino receiver for Acurite 5-in-1, tower, and maybe lightning sensors
Post by: Lagares on July 18, 2020, 09:34:53 AM
Fits any Acurite monitor? I have a 01035 model station.
Title: Re: Arduino receiver for Acurite 5-in-1, tower, and maybe lightning sensors
Post by: mangus580 on November 23, 2020, 03:37:36 PM
I made a little Arduino based receiver to replace the obsoleted Acurite smart hub.  I mainly did this because I needed a way to get the data from the sensor(s) into my home automation.  However, I did set it up to send data to Weather Underground too.

https://github.com/joegr123/WeatherStation

I am having some difficulties making it work....  Are you available to help troubleshoot?  I am guessing I am missing something simple....
Title: Re: Arduino receiver for Acurite 5-in-1, tower, and maybe lightning sensors
Post by: joegr on January 05, 2021, 05:27:24 PM
I guess that depends on what you mean by available.  I can answer some questions back and forth via email.
Title: Re: Arduino receiver for Acurite 5-in-1, tower, and maybe lightning sensors
Post by: mangus580 on January 05, 2021, 07:26:59 PM
It would work for me...  I could also do facebook messenger, and google hangouts too if either of those work.  Send me your email address (use a private message if you prefer to not post it public)

Thanks! 

I figure I am missing something simple, knowing my track record with things LOL
Title: Re: Arduino receiver for Acurite 5-in-1, tower, and maybe lightning sensors
Post by: mangus580 on January 05, 2021, 11:38:41 PM
Thanks Joe for the quick help!  Solved my issue, and it works great now!

Just to document for anyone needing it in the future....

In the D_Interrupts file, locate:

Code: [Select]
void handler()
and change it to:

Code: [Select]
void IRAM_ATTR handler()
Joe stated that something was changed in the Arduino IDE that requires this modification.

Thanks again Joe!!
Title: Re: Arduino receiver for Acurite 5-in-1, tower, and maybe lightning sensors
Post by: mangus580 on January 12, 2021, 11:38:48 AM
Another update....  Some library changes have effected the code for the BMP280.  If you want to use a BMP280 with this, you need to find and comment out the following lines:

Code: [Select]
digitalWrite(LED_BUILTIN, !bitState);    - in D_Interrupts

digitalWrite(LED_BUILTIN, HIGH); // start with LED off   - E_Setup
pinMode(LED_BUILTIN, OUTPUT); // LED output   - E_Setup