(29-12-2020, 12:20)xxDvDxx Wrote: [ -> ]Just a couple of things i dont know, what to choose In the IDE Toolsettings menu:
"Debug serial" = serial (before was "DISABLED" )
"Debug level"= ?????? (before was "NONE" )
(29-12-2020, 17:39)xxDvDxx Wrote: [ -> ]Ok i think i found how to do it by myself... according that the IP final with 104 is the PC and the 106 is the Weatherduino this is the debug results on serials, after a system reboot :
Hi,
There is some misunderstood here. When I talk about debug options, I'm referring to enabling Debug options on the WeatherDuino code, not on the Arduino IDE.
If you go to the end of the Config_Option.h you will see something like this
Code:
// --------------------------------------------------------------------------------------
// Debug helper - Print debug messages to serial monitor. For testing purposes ONLY.
//
// !!! NEVER LEAVE ANY OF THESE DEBUG FUNCTIONS ACTIVE WHEN THE STATION IS CONNECTED BY USB TO ANY WEATHER SOFTWARE !!!
// --------------------------------------------------------------------------------------
//#define PRINT_DEBUG_WIFI
//#define PRINT_DEBUG_NTP // Prints to serial monitor messages related to sync time with NTP server
//#define PRINT_DEBUG_WU_UPLOAD // Prints to serial monitor messages related to Weather Underground upload.
//#define PRINT_DEBUG_TS_UPLOAD
//#define PRINT_DEBUG_MYSERVER_UPLOAD
//#define PRINT_DEBUG_VCHECK
//#define PRINT_DEBUG_TCP_SERVER
//#define PRINT_DEBUG_AURIOL
//#define PRINT_DEBUG_BIOS
//#define PRINT_DEBUG_RF_MESSAGES
//#define PRINT_DEBUG_WIFI_SENSORS_DEF
//#define PRINT_DEBUG_WIFI_SENSORS
//#define PRINT_GENERALDEBUG
//#define PRINT_DEBUG_FORECAST
In your case, enable this one:
Code:
#define PRINT_DEBUG_WU_UPLOAD
From what you said, I believe that your main problem is the unit not being receiving data from the rain gauge. Lets try to explain:
Quote:About the startup on receiving rain gauge data , it still in “gathering data from sensors “ status till its timeout and go in the main view...
There isn't any timeout for the “gathering data from sensors “ , it will remain on that screen forever until it receives data from temperature / humidity, wind and rain gauge sensors, however if you touch the screen, the unit will exit from that screen, but the initialization sequence wasn't completed, so, the condition to not upload data to WU will remain. My best suggestion is trying to put the receiver closer to the Rain Gauge, or if possible the otherwise.
Until you get a good reception from the three main sensors (T, W, R), the unit doesn't even try to upload to WU. As I said, this is done that way, to prevent sending incomplete or wrong data to WU.
Having the WeatherDuino side by side to the Auriol console, does not mean that both will be able to receive the data. Depending on the type of antenna, WeatherDuino may require to be far or closer to transmitters.
If you haven't done it yet, you may also try a "Factory reset". Go to the Menu screen, you will see an button for it.
Regards