// -------------------------------------------------------------------------------------- // User configurable options // -------------------------------------------------------------------------------------- // --- Relay ID, use the value set for Realy_ID in your Main RX unit const byte Relay_ID = 0xA3; // --- Define your Display type #define DisplayType 1 // 0= TFT 160x128 ST7735, 1= TFT 320x240 ILI9341, 4= 20x4 LCD, 5= 16x2 LCD // --- Define if your Display have touch capabilities - ATENTION! Requires WD board v2.20 or greater #define Touch_Display 0 // 0= Display without touch panel, 1 = Display with touch panel // --- Define Backlight timeOut byte BackLight_Timeout = 20; // Timeout for TFT backlight in minutes (1 to 255). 0= Always ON // --- Use local TH sensor or Main Station TH sensor for Inside Temp / Hum display #define UseLocalTH_Sensor 1 // 0= Local TH Sensor, 1= Main Station TH sensor // --- Define type of Local TH sensor #define InsideTH_Sensor 0 // 0= DHT22, 1= HTU21D // --- Fine adjusts for Local Inside Temperature int TemperaturaInt_offset = 0; // Inside Temperature Fine Adjust in Degrees #define Board_Type 1 // 1= Wireless Display Boards >= 2.xx, 0= Others (Old RX converted boards) //------ Extra Sensors Label - "Máx 8 chars" ---------- const char ExtraSensName[5][9]= {"Not Inst", "Not Inst", "Not Inst", "Not Inst", "Not Inst"}; // --------------------------------------------------------------------------------------------------- // End of user configurable options // ---------------------------------------------------------------------------------------------------