WeatherDuino_4PESP8266_WD_v5.0_b009 - Printable Version
+- WeatherDuino Forum (
https://www.meteocercal.info/forum)
+-- Forum: Weather Stations - WeatherDuino Pro2 Line (
https://www.meteocercal.info/forum/Forum-Weather-Stations-WeatherDuino-Pro2-Line)
+--- Forum: Software Questions (
https://www.meteocercal.info/forum/Forum-Software-Questions)
+--- Thread: WeatherDuino_4PESP8266_WD_v5.0_b009 (
/Thread-WeatherDuino-4PESP8266-WD-v5-0-b009)
WeatherDuino_4PESP8266_WD_v5.0_b009 -
atbukc - 21-03-2019
This latest software version references the language files as per previous versions e.g.
en_GB.h
However the actual file names in the folder _lang have changed to en_GB_UTF8.h the code in Config_options needs changing as per below to avoid a compilation error..
#include "_lang/en_GB_UTF8.h" // Change the language code according to your preference. Keep "_lang/" and the ".h" at the end
Other than that all seems good so far
Andy
RE: WeatherDuino_4PESP8266_WD_v5.0_b009 -
werk_ag - 21-03-2019
Hello Andy, sorry to say, but that isn't correct.
On the Config_Options for the latest WeatherDuino_4PESP8266_WD_v5.0_b009 software you only need to define the language code
Code:
// --------------------------------------------------------------------------------------
// Define User Interface Language
// --------------------------------------------------------------------------------------
// Change the language code according to your preference.
// Currently available languages: en_GB, fr_FR, de_DE, pt_PT, es_ES, cs_CZ, nl_NL, it_IT, pl_PL
#define en_GB
The software will select the correct language file based on the language code.
RE: WeatherDuino_4PESP8266_WD_v5.0_b009 -
atbukc - 21-03-2019
(21-03-2019, 19:36)Werk_AG Wrote: Hello Andy, sorry to say, but that isn't correct.
On the Config_Options for the latest WeatherDuino_4PESP8266_WD_v5.0_b009 software you only need to define the language code
Code:
// --------------------------------------------------------------------------------------
// Define User Interface Language
// --------------------------------------------------------------------------------------
// Change the language code according to your preference.
// Currently available languages: en_GB, fr_FR, de_DE, pt_PT, es_ES, cs_CZ, nl_NL, it_IT, pl_PL
#define en_GB
The software will select the correct language file based on the language code.
Ah all is clear now! I must have slipped up when copying by config data across from the previous version of the software, thans for correcting me & for the great improvements to this version..
Andy
RE: WeatherDuino_4PESP8266_WD_v5.0_b009 -
werk_ag - 21-03-2019

Thank you.