<?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[Variable WiFi sensitivity]]></title><description><![CDATA[<p dir="auto">Hi. I have three M5AtomS3 lite units. Two of them are fine, but one appears to be a bit deaf when it comes to WiFi. I've also got two M5AtomS3 units with screens. Again, one is fine, and the second one appears to give poor results.<br />
I've run some WiFi scan tests on all 5 using the following code:</p>
<pre><code class="language-#include">#include &lt;WiFi.h&gt;

void setup() {
  USBSerial.begin(115200);
  WiFi.mode(WIFI_STA);
  WiFi.disconnect();
}

void loop() {    
  int16_t NetworkCount;
  static uint8_t ctr=0;
  NetworkCount = WiFi.scanNetworks(false,true,true);
  USBSerial.printf("%2d ",NetworkCount);
  vTaskDelay(5000);
  ctr++;
  if(ctr==10) {
    USBSerial.printf("\n");
    while(true);
  }
}
</code></pre>
<p dir="auto">This gives me the following results:</p>
<ul>
<li>AtomS3:		14 16 16 15 19 17 17 15 15 13</li>
<li>AtomS3:		 7  7  8  8  8  9  7  9  8 10</li>
<li>AtomS3 lite:	20 16 20 18 17 17 18 19 16 17</li>
<li>AtomS3 Lite:	19 20 21 24 19 20 18 20 18 21</li>
<li>AtomS3 Lite:	 4  4  4  4  4  4  4  4  4  4</li>
</ul>
<p dir="auto">As a control reference, I get these results from an ESP32S3Pro</p>
<ul>
<li>ProS3:		23 23 23 23 24 25 21 21 19 21</li>
</ul>
<p dir="auto">I'm not bothered that a ProS3 finds more networks, but am puzzled by the significant drop off with the two Atoms. Has anyone come across this issue before? Is there any sort of fix for the deaf units, or might this just be a batch production issue?<br />
Many thanks,<br />
Susan</p>
]]></description><link>https://community.m5stack.com/topic/5609/variable-wifi-sensitivity</link><generator>RSS for Node</generator><lastBuildDate>Sat, 16 May 2026 20:13:19 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/5609.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 25 Aug 2023 08:26:39 GMT</pubDate><ttl>60</ttl></channel></rss>