04-06-2017, 03:58
That is good to hear, thanks.
(04-06-2017, 03:53)Werk_AG Wrote: The good news is that it is counting the rain tips!So does that mean it is a software issue that will be worked out in a future release, or is it something I configured improperly or something else in my build?
Quote:The most important thing to a successful assembling is to understanding how the system works...I see that now and understand. Thanks.
That value doesn't represent the total rain tips. Based on the current tip rate that value is the estimated rain tips per hour, an it is used to calculate the rainfall rate.
(06-06-2017, 05:01)Werk_AG Wrote: If I was you, having two TX units, even just for doing tests, I would configured one as TX0 and the other as TX1. The total number of rain tips is recorded on eeprom, at both TX and RX units,. Having two TX units with the same ID, and both with the "Send Rain" enabled may cause problems even if just one is powered at each time.The only reason there are 2 TX units configured as "TX1" is because the first TX board I tested did not show any rain when I manually tipped the buckets. The debug apparently shows that it was/is measuring rain, but if that's the case then why did it not display rain on the RX when only a single TX board was programmed as TX1? I am not sure I follow you.
Quote:Is it required for 2 or more TX boards to be received by the RX before it will display rain data?No.
// --------------------------------------------------------------------------------------
// Define which data this unit will send. 0 = Not send this data, 1= Send this data
// --------------------------------------------------------------------------------------
#define ID0 0 // Temp/Hum Data
#define ID1 0 // Not Used
#define ID2 1 // Wind data
#define ID3 1 // Rain data
#define ID4 0 // SolRad / UV data
#define ID5 1 // Hardware Status - System Temp, Battery Voltage etc
#define ID7 0 // Send Soil & Leaf Temperature Data
#define ID9 0 // Send Soil & Leaf Moisture / Wetness Data// --------------------------------------------------------------------------------------
// Define which data this unit will send. 0 = Not send this data, 1= Send this data
// --------------------------------------------------------------------------------------
#define ID0 1 // Temp/Hum Data
#define ID1 0 // Not Used
#define ID2 0 // Wind data
#define ID3 0 // Rain data
#define ID4 0 // SolRad / UV data
#define ID5 1 // Hardware Status - System Temp, Battery Voltage etc
#define ID7 0 // Send Soil & Leaf Temperature Data
#define ID9 0 // Send Soil & Leaf Moisture / Wetness Data// --------------------------------------------------------------------------------------
// Define the source of your main outside sensors
// --------------------------------------------------------------------------------------
// ---- If you are using just one TX board, the source for all items should be equal to your single TX Unit ID (most likely zero).
// ---- Define the source of your main Temperature / Humidity sensor
#define TH_OutUnit 1 // 0= Temp/Hum sensor connected to TX_Unit 0, 1= Temp/Hum sensor connected to TX_Unit 1, ...
// ---- Define the source of your Main Wind sensor
#define WIND_OutUnit 0 // 0= Wind instruments connected to TX_Unit 0, 1= for TX_Unit 1, ...
// ---- Define the source of your main Rain Gauge
#define RAIN_OutUnit 0 // 0= Rain Gauge connected to TX_Unit 0, 1= for TX_Unit 1, 3 for Auriol RF Rain Gauge
// ---- Define the source of your main Solar / UV sensores
#define SRUV_OutUnit 9 // 0= Solar Rad / UV sensors connected to TX_Unit 0, 1= connected to TX_Unit1, 9 for not used
// ---- Define type of Solar Radiation / UV Sensors
// ---- Support for Solar Radiation sensor type 2 and UV sensor type 4 (it is a PAR sensor not a UV Sensor) still are experimental
#define Solar_Sensor 0 // 0 not used, 1= Solar Cell "Pyranometer", 2= Apogee SP-110 Pyranometer, 3= Reserved, 4= Apogee SQ-110: Photosynthetically Active Radiation Sensor
#define UV_Sensor 0 // 0 not used, 1= UVM-30A, 2= VEML6075, 3= Reserved
#define UV_Transmission 65 // UV Transmission percentage of UV sensor cover material// --------------------------------------------------------------------------------------
// Test Mode : Never run a live system in test mode
// --------------------------------------------------------------------------------------
#define TestMode false // false= Normal working mode, true= Test mode only (no logger, no usb connection)
(07-06-2017, 03:36)danner Wrote: I still don't understand what happened though. The only difference was I had the rain/wind as TX1 and the temp/humidity as TX0. Just happy it is working.