12-02-2024, 00:44
Hi Gerard,
Apparently this seems a kind of config issue.
Supossing you have this on the TX unit:
then check if in receivers Config_Options.h you have something like this:
This means receive data from TX Unit_ID 0
Again in RX Config_Options you may enable PRINT_DEBUG_RF_MESSAGES by uncommenting this line:
This will show you if the receiver is receiving and decoding the data from the TX unit.
Rgs.
Werk_AG
Apparently this seems a kind of config issue.
Supossing you have this on the TX unit:
Code:
// --------------------------------------------------------------------------------------
// Define ID and TX unit number
// --------------------------------------------------------------------------------------
#define Station_ID 0xA1 // Must be equal to your RX Unit (Value from 0x00 to 0xFF)
#define Unit_ID 0 // If you use only one TX unit define it as Unit_ID = 0
// For a second TX unit, define it as Unit_ID = 1then check if in receivers Config_Options.h you have something like this:
Code:
// --------------------------------------------------------------------------------------
// 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_SOURCE 0 // 0= Temp/Hum sensor connected to TX_Unit 0, 1= for TX_Unit 1, ..., 3 for Auriol RF Temp / Hum
// ---- Define the source of your Main Wind sensor
#define WIND_SOURCE 0 // 0= Wind instruments connected to TX_Unit 0, 1= for TX_Unit 1, ..., 3 for Auriol RF Wind Speed & Dir
// ---- Define the source of your main Rain Gauge
#define RAIN_SOURCE 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 Radiation sensor
#define SOLAR_SOURCE 9 // 0= Solar Radiation sensor connected to TX_Unit 0, 1= for TX_Unit1, ..., 9 for not used
// ---- Define the source of your main UV sensor
#define UV_SOURCE 9 // 0= UV sensor connected to TX_Unit 0, 1= for TX_Unit1, ..., 9 for not usedThis means receive data from TX Unit_ID 0
Again in RX Config_Options you may enable PRINT_DEBUG_RF_MESSAGES by uncommenting this line:
Code:
//#define PRINT_DEBUG_RF_MESSAGESThis will show you if the receiver is receiving and decoding the data from the TX unit.
Rgs.
Werk_AG

