<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Help on checking former OK pws]]></title><description><![CDATA[<p dir="auto">Hello.</p>
<p dir="auto">I have been publishing data on Windy since July 2021 but for some odd reason it stopped publishing and I don't know when in time that happened. Since I publish my data on WU, PWSW, ThinkgSpeak and others and use WU mainly for checks, thought everything was OK, but it was not.</p>
<p dir="auto">I recently reviewed Windy code, and everything seems OK but it seems it never updates the DB. It has been a couple of days since I refreshed API key and the data never shows.</p>
<p dir="auto">I am using ```char WINDYPAGE [] = "GET /pws/update/?";</p>
<pre><code class="language-for">
Could someone give it a check or maybe a hint on what to check next?

My station is https://www.windy.com/station/pws-f052cfed

Thank you for your time.
Jeffo.</code></pre>
]]></description><link>https://community.windy.com/topic/25597/help-on-checking-former-ok-pws</link><generator>RSS for Node</generator><lastBuildDate>Sun, 07 Jun 2026 20:57:46 GMT</lastBuildDate><atom:link href="https://community.windy.com/topic/25597.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 15 May 2023 12:33:39 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Help on checking former OK pws on Thu, 18 May 2023 13:35:21 GMT]]></title><description><![CDATA[<p dir="auto">All connected and no data.<br />
Despite being publishing normally on PWS Weather and Weather Underground.</p>
<p dir="auto"><img src="https://i.imgur.com/ayds5bz.png" alt="alt text" class=" img-fluid img-markdown" /></p>
<p dir="auto">here is the code:</p>
<pre><code>void windy(void)
{
ledON();
  Serial.print("Connecting to ");
  Serial.println(server4);
  WiFiClient client;
  if (client.connect(server4, 80)) {
    Serial.print("connected to ");
    Serial.println(client.remoteIP());
    delay(100);
  } else {
    Serial.println("connection failed");
  }

client.print(WINDYPAGE);
//client.print("station=");
//client.print("0");
client.print("temp=");
client.print(tempc);
client.print("&amp;tempf=");
client.print(temp_f);
client.print("&amp;humidity=");
client.print(humidity);
client.print("&amp;wind=");
client.print(windSpeed * 0.44704);
client.print("&amp;winddir=");
client.print(CalDirection);
client.print("&amp;windgustmph=");
client.print(windgustmph * 4.47);
client.print("&amp;gust=");
client.print(windgustmph * 0.44704);
client.print("&amp;dewpoint=");
client.print(dewpt_c);
client.print("&amp;mbar=");
client.print(baromhpa);
client.print("&amp;precip=");
client.print(rain);
client.print("/ HTTP/1.1\r\nHost: stations.windy.com:80\r\nConnection: close\r\n\r\n");
Serial.println(" ");
delay(1000);
}
</code></pre>
]]></description><link>https://community.windy.com/post/143856</link><guid isPermaLink="true">https://community.windy.com/post/143856</guid><dc:creator><![CDATA[jf_moreira]]></dc:creator><pubDate>Thu, 18 May 2023 13:35:21 GMT</pubDate></item><item><title><![CDATA[Reply to Help on checking former OK pws on Thu, 18 May 2023 13:33:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jf_moreira" aria-label="Profile: jf_moreira">@<bdi>jf_moreira</bdi></a> Anyone?</p>
]]></description><link>https://community.windy.com/post/143855</link><guid isPermaLink="true">https://community.windy.com/post/143855</guid><dc:creator><![CDATA[jf_moreira]]></dc:creator><pubDate>Thu, 18 May 2023 13:33:09 GMT</pubDate></item></channel></rss>