(22-12-2017, 09:19)f4aii Wrote: hello,
which interval is the external temperature transmitted?
I have often - - - posted, I tried different places, different coding, another TX board, another RX board.
When I restart the RX, it stays locked for a long time while waiting for the frame of the temperature, the system often restarts 2X and it takes 10 minutes to get the display
This problem occurred with the installation of version 4 several weeks ago.
thanks.
Hi f4aii
The outdoor temperature is transmited each 17 seconds. This value is not arbitrary and should not be changed.
Sometimes the described issue may not be related only to transmission problems, but also with some problem with reading the sensor. So, firstly please check if there isn't any problem with reading the sensor. Start by enabling the debug option for ID0 on the TX software. Using the Serial Monitor check if there are a reading more or less at each 17 seconds. If there isn't, you have found the problem.
In the user configurable options also check if there isn't any sensor enabled that isn't present.
Code:
// --------------------------------------------------------------------------------------
// Define type of Temperature / Humidity sensor used as Sensor 0 and / or Sensor 1
// --------------------------------------------------------------------------------------
#define TH_Sensor0 1 // [SENSOR 0] - 0 for SHT2x sensor, 1 for SHT31 sensor, 2 for HTU21 sensor, 9 for Not Used
#define TH_Sensor1 9 // [SENSOR 1] - 0 for SHT1x sensor, 1 for DHT22 sensor, 9 for Not Used
Here, enable only the data you need to send for a particular TX unit.
Example for a TX unit with Temp/Hum, Wind and Rain Gauge
Code:
// --------------------------------------------------------------------------------------
// 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 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
Check all user configurable settings, always disabling anything that isn't in use, like the Soil/Left interface etc...
If every of those things are correct, then we can start to think in a problem with the RF data transmission.
Before we continue, please check all this.
If possible, please also give some details of your installation, number of TX units in use, type of T/H sensor, TX and RX software version.
Thank you.