25-09-2022, 00:23
Some news on this matter...
It seems that, currently, when uploading data to WU using the IP address in the URL instead of host name, the upload fails.
For those who need a quick fix, here is one for the 4Pro DB receiver software (v6.2_b006):
on NET.ino, near line 89, search for:
replace by:
It seems that, currently, when uploading data to WU using the IP address in the URL instead of host name, the upload fails.
For those who need a quick fix, here is one for the 4Pro DB receiver software (v6.2_b006):
on NET.ino, near line 89, search for:
Code:
if (Wunderground_IP[0] != 0)
{
WU_url = F("http://");
WU_url += Wunderground_IP.toString();
WU_url += "/weatherstation/updateweatherstation.php";
}
else WU_url = F("http://weatherstation.wunderground.com/weatherstation/updateweatherstation.php");replace by:
Code:
WU_url = F("http://weatherstation.wunderground.com/weatherstation/updateweatherstation.php");
