03-06-2017, 02:41
Werk,
I have been updating my Pro2 PLUS with the latest software and I am having no luck with the screen saver, it just stays on all the time.
I have included the relevant portion of the config.h file.
Any ideas ?
Regards
Jim
--------------------------------------------------------------------------------------
// WeatherDuino Pro2 PLUS RF Receiver - Version: 2.10 b004
// Start of user configurable options
// --------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------
// Define Name and ID's for this weather station
// --------------------------------------------------------------------------------------
const char WeatherStation_Name[] = "MeteoCercal";
#define Station_ID 0xA1 // Station_ID, use the same value in all TX units
#define Relay_ID 0xA3 // Relay_ID, use the same value in all WD units
// --------------------------------------------------------------------------------------
// Define your Weather Station location
// --------------------------------------------------------------------------------------
#define LATITUDE -19 // Put here your Station latitude in tenths of degrees North
#define LONGITUDE 146 // Put here your Station longitude in tenths of degrees (minus for West)
#define ELEVATION 55 // Put here your Station height above sea level in Meters
// --------------------------------------------------------------------------------------
// Define rules for Auto Summer Time Display, and clock adjustment
// --------------------------------------------------------------------------------------
// Example for Australia Eastern Time Zone (Sydney, Melbourne)
// TimeChangeRule aEDT = {"AEDT", First, Sun, Oct, 2, 660}; //UTC + 11 hours
// TimeChangeRule aEST = {"AEST", First, Sun, Apr, 3, 600}; //UTC + 10 hours
// Timezone myTZ(aEDT, aEST);
TimeChangeRule aEDT = {"AEST", First, Sun, Oct, 2, 600}; //Queensland Summer Time - "UTC + 10" or GMT + 10
Timezone myTZ(aEDT, aEDT);
// --------------------------------------------------------------------------------------
// Define Roll Over Hour for Meteorological Day
// --------------------------------------------------------------------------------------
#define MeteoDay_HStart 9 // Use values from 0 to 23
// --------------------------------------------------------------------------------------
// Define your Display type
// --------------------------------------------------------------------------------------
#define DisplayType 3 // 1= LCD 20x4, 3= TFT 320x240 ILI9341
// --------------------------------------------------------------------------------------
// Define Display Backlight TimeOut
// --------------------------------------------------------------------------------------
const byte BackLight_Timeout = 5; // Timeout for display backlight in minutes (1 to 255). 0 = Always ON
#define Use_ScreenSaver 1 // Instead of turn off TFT backlight show a big clock screen. 0= No, 1= Yes
// --------------------------------------------------------------------------------------
// Define data display units
// --------------------------------------------------------------------------------------
#define Date_Time_Format 0; // 0 for dd-mm-yyyy, 1 for yyyy/mm/dd
byte Temp_Display_Unit = 0; // 0 for ºC, 1 for ºF
byte ATM_Display_Unit = 0; // 0 for mBar, 1 for inHg
byte Rain_Display_Unit = 0; // 0 for mm, 1 for inches
byte Wind_Display_Unit = 3; // 0 for Km/h, 1 for mph, 2 for m/s, 3 for Knots
// --------------------------------------------------------------------------------------
// Define the type of your Barometric Pressure Sensor
// --------------------------------------------------------------------------------------
#define Barometric_Sensor 0 // 0= BME280, 1= BMP280 2= BMP085 / BMP180
I have been updating my Pro2 PLUS with the latest software and I am having no luck with the screen saver, it just stays on all the time.
I have included the relevant portion of the config.h file.
Any ideas ?
Regards
Jim
--------------------------------------------------------------------------------------
// WeatherDuino Pro2 PLUS RF Receiver - Version: 2.10 b004
// Start of user configurable options
// --------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------
// Define Name and ID's for this weather station
// --------------------------------------------------------------------------------------
const char WeatherStation_Name[] = "MeteoCercal";
#define Station_ID 0xA1 // Station_ID, use the same value in all TX units
#define Relay_ID 0xA3 // Relay_ID, use the same value in all WD units
// --------------------------------------------------------------------------------------
// Define your Weather Station location
// --------------------------------------------------------------------------------------
#define LATITUDE -19 // Put here your Station latitude in tenths of degrees North
#define LONGITUDE 146 // Put here your Station longitude in tenths of degrees (minus for West)
#define ELEVATION 55 // Put here your Station height above sea level in Meters
// --------------------------------------------------------------------------------------
// Define rules for Auto Summer Time Display, and clock adjustment
// --------------------------------------------------------------------------------------
// Example for Australia Eastern Time Zone (Sydney, Melbourne)
// TimeChangeRule aEDT = {"AEDT", First, Sun, Oct, 2, 660}; //UTC + 11 hours
// TimeChangeRule aEST = {"AEST", First, Sun, Apr, 3, 600}; //UTC + 10 hours
// Timezone myTZ(aEDT, aEST);
TimeChangeRule aEDT = {"AEST", First, Sun, Oct, 2, 600}; //Queensland Summer Time - "UTC + 10" or GMT + 10
Timezone myTZ(aEDT, aEDT);
// --------------------------------------------------------------------------------------
// Define Roll Over Hour for Meteorological Day
// --------------------------------------------------------------------------------------
#define MeteoDay_HStart 9 // Use values from 0 to 23
// --------------------------------------------------------------------------------------
// Define your Display type
// --------------------------------------------------------------------------------------
#define DisplayType 3 // 1= LCD 20x4, 3= TFT 320x240 ILI9341
// --------------------------------------------------------------------------------------
// Define Display Backlight TimeOut
// --------------------------------------------------------------------------------------
const byte BackLight_Timeout = 5; // Timeout for display backlight in minutes (1 to 255). 0 = Always ON
#define Use_ScreenSaver 1 // Instead of turn off TFT backlight show a big clock screen. 0= No, 1= Yes
// --------------------------------------------------------------------------------------
// Define data display units
// --------------------------------------------------------------------------------------
#define Date_Time_Format 0; // 0 for dd-mm-yyyy, 1 for yyyy/mm/dd
byte Temp_Display_Unit = 0; // 0 for ºC, 1 for ºF
byte ATM_Display_Unit = 0; // 0 for mBar, 1 for inHg
byte Rain_Display_Unit = 0; // 0 for mm, 1 for inches
byte Wind_Display_Unit = 3; // 0 for Km/h, 1 for mph, 2 for m/s, 3 for Knots
// --------------------------------------------------------------------------------------
// Define the type of your Barometric Pressure Sensor
// --------------------------------------------------------------------------------------
#define Barometric_Sensor 0 // 0= BME280, 1= BMP280 2= BMP085 / BMP180


