01-09-2019, 20:04
Hi,
I think you don't need those changes on the code to achieve the same behaviour. You can change the order of the data screens on the Config_Options.
If you do this:
you will get the same result: One touch on the right side of the screen goes to the 4 Days forecast screen, another touch on the left side of the screen and you will go back to the main weather screen.
Doing it this way, also have the advantage of not disabling the TXinfo data screen which is usefull to see from time to time.
Hope this can keep the WAF (Wife Acceptance Factor) high enough
Thanks.
Rgs
I think you don't need those changes on the code to achieve the same behaviour. You can change the order of the data screens on the Config_Options.
If you do this:
Code:
// --------------------------------------------------------------------------------------
// Define data screens order
// Use numbers from 1 to 5 to define a personalized order for the data screens
// --------------------------------------------------------------------------------------
#define AIRQUALITY_DATA 2
#define TXINFO_DATA 3
#define EXTRASENSORS_DATA 4
#define SOILLEAF_DATA 5
#define FORECAST_DATA 1you will get the same result: One touch on the right side of the screen goes to the 4 Days forecast screen, another touch on the left side of the screen and you will go back to the main weather screen.
Doing it this way, also have the advantage of not disabling the TXinfo data screen which is usefull to see from time to time.
Hope this can keep the WAF (Wife Acceptance Factor) high enough
Thanks.
Rgs

