<?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[Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails.]]></title><description><![CDATA[<p dir="auto">Hi All,</p>
<p dir="auto">Have built a simple Micropython app for my M5Stack. It relies on the Wifi Connection and pinging the router to get some information. However; I need the device to continue to try and connect to Wifi, and if it cannot ping the router, to exit <a href="http://main.py" target="_blank" rel="noopener noreferrer nofollow ugc">main.py</a> go back to this wifi connection.</p>
<p dir="auto">Has anyone successfully done this or would know where to look?</p>
<p dir="auto">Thanks and Regards,<br />
Fox.</p>
]]></description><link>https://community.m5stack.com/topic/853/continue-to-try-wifi-connection-indefinitely-and-go-back-to-the-connection-reboot-if-a-try-fails</link><generator>RSS for Node</generator><lastBuildDate>Tue, 10 Mar 2026 13:34:38 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/853.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 08 Apr 2019 03:22:42 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Tue, 30 Apr 2019 08:08:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/1312">@foxhound</a> Best wish to you !</p>
]]></description><link>https://community.m5stack.com/post/4067</link><guid isPermaLink="true">https://community.m5stack.com/post/4067</guid><dc:creator><![CDATA[m5-docs]]></dc:creator><pubDate>Tue, 30 Apr 2019 08:08:23 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Tue, 30 Apr 2019 07:59:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/443">@ajb2k3</a></p>
<p dir="auto">Awesome, of course, I needed to call lcd.FONT_DejaVu24.<br />
However, I did manage to get lcd.font(lcd.FONT_DejaVu24) to work fine for me. I just called it at the top of my script and all is well.</p>
<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/700">@lukasmaximus</a><br />
Thanks, I'll take a look at that, so far DejaVu24 is working well for me. But if i need to make it larger I'll be sure to check that out.</p>
]]></description><link>https://community.m5stack.com/post/4066</link><guid isPermaLink="true">https://community.m5stack.com/post/4066</guid><dc:creator><![CDATA[Foxhound]]></dc:creator><pubDate>Tue, 30 Apr 2019 07:59:49 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Sun, 28 Apr 2019 01:08:41 GMT]]></title><description><![CDATA[<p dir="auto">The fonts used on the m5stack are bitmap fonts and therefore are not scalable, they are whatever size they were converted in. A while back on our forums one of our users loboris who is an active developer in the micropython community developed a cool tool to convert any font file in any size you want to a .fon bitmap font format, you cant find it here <a href="http://forum.m5stack.com/topic/388/cahnge-font-size-in-python/20" target="_blank" rel="noopener noreferrer nofollow ugc">http://forum.m5stack.com/topic/388/cahnge-font-size-in-python/20</a></p>
]]></description><link>https://community.m5stack.com/post/4030</link><guid isPermaLink="true">https://community.m5stack.com/post/4030</guid><dc:creator><![CDATA[lukasmaximus]]></dc:creator><pubDate>Sun, 28 Apr 2019 01:08:41 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Sat, 27 Apr 2019 06:05:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/1312">@foxhound</a> said in <a href="/post/4027">Continue to try Wifi Connection indefinitely, and go back to the connection/reboot if a try fails.</a>:</p>
<blockquote>
<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/481">@m5-docs</a></p>
<p dir="auto">Good idea, thanks mate!</p>
<p dir="auto">Also, can you tell me how to properly change the font? I'm trying to increase the size.</p>
<pre><code>lcd.font(FONT_DejaVu18)
</code></pre>
<p dir="auto">Doesn't compile</p>
<pre><code> lcd.font("FONT_DejaVu18")
</code></pre>
<p dir="auto">Doesn't do anything?</p>
</blockquote>
<p dir="auto">lcd.font doesn't work. try something like</p>
<pre><code>from m5stack import *
from m5ui import *

clear_bg(0x222222)



btnA = M5Button(name="ButtonA", text="ButtonA", visibility=False)
btnB = M5Button(name="ButtonB", text="ButtonB", visibility=False)
btnC = M5Button(name="ButtonC", text="ButtonC", visibility=False)
label1 = M5TextBox(118, 116, "Text", lcd.FONT_Default,0xFFFFFF, rotate=0)


label1.setFont(lcd.FONT_DejaVu24)
</code></pre>
<p dir="auto">Here I am using a label for text.</p>
]]></description><link>https://community.m5stack.com/post/4029</link><guid isPermaLink="true">https://community.m5stack.com/post/4029</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Sat, 27 Apr 2019 06:05:11 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Sat, 27 Apr 2019 00:19:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/481">@m5-docs</a></p>
<p dir="auto">Good idea, thanks mate!</p>
<p dir="auto">Also, can you tell me how to properly change the font? I'm trying to increase the size.</p>
<pre><code>lcd.font(FONT_DejaVu18)
</code></pre>
<p dir="auto">Doesn't compile</p>
<pre><code> lcd.font("FONT_DejaVu18")
</code></pre>
<p dir="auto">Doesn't do anything?</p>
]]></description><link>https://community.m5stack.com/post/4027</link><guid isPermaLink="true">https://community.m5stack.com/post/4027</guid><dc:creator><![CDATA[Foxhound]]></dc:creator><pubDate>Sat, 27 Apr 2019 00:19:08 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Fri, 26 Apr 2019 12:13:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/1312">@foxhound</a> Maybe, you need install python2.7 for compiling this firmware. A year ago, I compiled a micropython firmware with python3. And the serial monitor displayed some error which seem like yours.</p>
]]></description><link>https://community.m5stack.com/post/4005</link><guid isPermaLink="true">https://community.m5stack.com/post/4005</guid><dc:creator><![CDATA[m5-docs]]></dc:creator><pubDate>Fri, 26 Apr 2019 12:13:18 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Fri, 26 Apr 2019 11:30:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/700">@lukasmaximus</a></p>
<pre><code>esptool.py --chip esp32 --port /dev/${port} --baud 921600 --before default_reset --after no_reset write_flash -z \
--flash_mode dio --flash_freq 80m --flash_size detect \
0x1000 bootloader.bin \
0xf000 phy_init_data.bin \
0x10000 MicroPython.bin \
0x8000 partitions_mpy.bin \
0x170000 spiffs_image_0x170000.img
</code></pre>
<p dir="auto">I have a feeling however, I did not do this properly. However everything seems to be working fine besides not being able to get into the system, and not being able to change font..</p>
]]></description><link>https://community.m5stack.com/post/4004</link><guid isPermaLink="true">https://community.m5stack.com/post/4004</guid><dc:creator><![CDATA[Foxhound]]></dc:creator><pubDate>Fri, 26 Apr 2019 11:30:49 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Thu, 25 Apr 2019 23:47:13 GMT]]></title><description><![CDATA[<p dir="auto">Yep sure will, I'll get it for you tonight.</p>
]]></description><link>https://community.m5stack.com/post/4001</link><guid isPermaLink="true">https://community.m5stack.com/post/4001</guid><dc:creator><![CDATA[Foxhound]]></dc:creator><pubDate>Thu, 25 Apr 2019 23:47:13 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Wed, 24 Apr 2019 07:41:39 GMT]]></title><description><![CDATA[<p dir="auto">Strange, which version of the firmware are you using, could you post the log from <a href="http://flash.sh" target="_blank" rel="noopener noreferrer nofollow ugc">flash.sh</a> process or the command you used, maybe the files are not getting written to the correct memory addresses, usually it should look like this</p>
<p dir="auto">"--chip esp32 --port %port --baud %baud write_flash -z 0x1000 %PATH\bootloader.bin 0xf000 %PATH\phy_init_data.bin 0x10000 %PATH\MicroPython.bin 0x8000 %PATH\partitions_mpy.bin",<br />
"--chip esp32 --port %port --baud %baud --before default_reset --after no_reset write_flash -z --flash_freq 40m 0x170000 %PATH\spiffs_image_0x170000.img"</p>
]]></description><link>https://community.m5stack.com/post/3974</link><guid isPermaLink="true">https://community.m5stack.com/post/3974</guid><dc:creator><![CDATA[lukasmaximus]]></dc:creator><pubDate>Wed, 24 Apr 2019 07:41:39 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Wed, 24 Apr 2019 04:07:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/700">@lukasmaximus</a></p>
<p dir="auto">Hey Luke,<br />
thanks for getting back to me. I flashed with the <a href="http://flash.sh" target="_blank" rel="noopener noreferrer nofollow ugc">flash.sh</a> (I'm on linux) including all the .spiffs file.</p>
<p dir="auto">However, when I try to get I get the following.</p>
<p dir="auto"><img src="/assets/uploads/files/1556078821580-caf04472-80f1-4d4e-96a8-89d0f7ae5bfa-image-resized.png" alt="0_1556078818398_caf04472-80f1-4d4e-96a8-89d0f7ae5bfa-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.m5stack.com/post/3972</link><guid isPermaLink="true">https://community.m5stack.com/post/3972</guid><dc:creator><![CDATA[Foxhound]]></dc:creator><pubDate>Wed, 24 Apr 2019 04:07:08 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Wed, 24 Apr 2019 03:42:19 GMT]]></title><description><![CDATA[<p dir="auto">which micropython version are you using? if you did a custom flash not from the official m5stack burner you may have forgotten to flash the .spiffs file which contains all the folders and files you want to put on the filesystem</p>
]]></description><link>https://community.m5stack.com/post/3970</link><guid isPermaLink="true">https://community.m5stack.com/post/3970</guid><dc:creator><![CDATA[lukasmaximus]]></dc:creator><pubDate>Wed, 24 Apr 2019 03:42:19 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Wed, 24 Apr 2019 03:40:42 GMT]]></title><description><![CDATA[<p dir="auto"><img src="/assets/uploads/files/1556077238544-screen-shot-2019-04-24-at-11.39.47.png" alt="0_1556077238314_Screen Shot 2019-04-24 at 11.39.47.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.m5stack.com/post/3969</link><guid isPermaLink="true">https://community.m5stack.com/post/3969</guid><dc:creator><![CDATA[lukasmaximus]]></dc:creator><pubDate>Wed, 24 Apr 2019 03:40:42 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Wed, 24 Apr 2019 02:09:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/443">@ajb2k3</a></p>
<p dir="auto">Quick one, do you know where the source code for m5base is?</p>
<p dir="auto">ALso, with ampy, have you been able to get into directories past /flash.</p>
<p dir="auto">WHenever I try and list things inside say lib(/flash/lib), it say it isn't a directory?</p>
]]></description><link>https://community.m5stack.com/post/3967</link><guid isPermaLink="true">https://community.m5stack.com/post/3967</guid><dc:creator><![CDATA[Foxhound]]></dc:creator><pubDate>Wed, 24 Apr 2019 02:09:01 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Wed, 17 Apr 2019 12:22:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/1312">@foxhound</a> Glad to hear that I could help.</p>
]]></description><link>https://community.m5stack.com/post/3794</link><guid isPermaLink="true">https://community.m5stack.com/post/3794</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Wed, 17 Apr 2019 12:22:29 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Wed, 17 Apr 2019 11:25:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/443">@ajb2k3</a><br />
Okay awesome, thanks mate, have it working well now. Just need to make some modifications.</p>
<p dir="auto">Auto connect seems to only work when called, and looks like it will throw an error if not connecting. I've found the code on the repo, so I'll modify that to continue trying when booting up if no wifi is found, and upon disconnection, call the function again.</p>
<p dir="auto">Won't get much time to work on it for a little bit but will report back next week with my progress. Thanks very much for your assistance.</p>
<p dir="auto">Also, download didn't work but ampy working really well now, thankyou!</p>
]]></description><link>https://community.m5stack.com/post/3793</link><guid isPermaLink="true">https://community.m5stack.com/post/3793</guid><dc:creator><![CDATA[Foxhound]]></dc:creator><pubDate>Wed, 17 Apr 2019 11:25:42 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Wed, 17 Apr 2019 10:55:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/443">@ajb2k3</a></p>
<p dir="auto">Awesome, thanks, I'll give this a go.</p>
]]></description><link>https://community.m5stack.com/post/3792</link><guid isPermaLink="true">https://community.m5stack.com/post/3792</guid><dc:creator><![CDATA[Foxhound]]></dc:creator><pubDate>Wed, 17 Apr 2019 10:55:03 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Wed, 17 Apr 2019 09:10:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/1312">@foxhound</a></p>
<p dir="auto">In the top right hand corner is an icon with 3 horizontal lines, click on that then click on "Download" to permanently save to the M5Go.</p>
<p dir="auto">I do believe that you use</p>
<pre><code>import wifisetup
wifisetup.auto_connect() 
</code></pre>
<p dir="auto">at the beginning of the file above the</p>
<pre><code>from m5stack import *
from m5ui import *
</code></pre>
<p dir="auto">Alternatively, save the file as <a href="http://main.py" target="_blank" rel="noopener noreferrer nofollow ugc">main.py</a> and copy it to the M5Stack using ampy.</p>
]]></description><link>https://community.m5stack.com/post/3789</link><guid isPermaLink="true">https://community.m5stack.com/post/3789</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Wed, 17 Apr 2019 09:10:17 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Wed, 17 Apr 2019 08:55:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/443">@ajb2k3</a></p>
<p dir="auto">Woohoo!! Thanks so much mate, finally in and have placed my code into the UI Flow Python Editor and have started running it :)</p>
<p dir="auto">Couple of questions related to my original question regarding wifi.</p>
<ol>
<li>How do I permenantly save the code to my device. I can run it, but I when I reboot it doesn't boot into my code again.</li>
<li>Secondly, how on boot can I edit it so it automatically tries to reconnect if the Wifi isn't found.</li>
</ol>
<p dir="auto">Thanks so much for your help, really appreciate it.</p>
]]></description><link>https://community.m5stack.com/post/3788</link><guid isPermaLink="true">https://community.m5stack.com/post/3788</guid><dc:creator><![CDATA[Foxhound]]></dc:creator><pubDate>Wed, 17 Apr 2019 08:55:12 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Wed, 17 Apr 2019 07:30:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/1312">@foxhound</a> Did you get the connection Successful message when trying to connect?</p>
]]></description><link>https://community.m5stack.com/post/3787</link><guid isPermaLink="true">https://community.m5stack.com/post/3787</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Wed, 17 Apr 2019 07:30:10 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Wed, 17 Apr 2019 05:53:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/443">@ajb2k3</a></p>
<p dir="auto">Thanks for this, it looks like in the link I can run the script to flash it using that <a href="http://flash.sh" target="_blank" rel="noopener noreferrer nofollow ugc">flash.sh</a> script, as I am on linux.</p>
<p dir="auto">I couldn't find these this is really useful, thanks mate. I'll be home from my office soon to give it a go. Thanks.</p>
]]></description><link>https://community.m5stack.com/post/3786</link><guid isPermaLink="true">https://community.m5stack.com/post/3786</guid><dc:creator><![CDATA[Foxhound]]></dc:creator><pubDate>Wed, 17 Apr 2019 05:53:48 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Wed, 17 Apr 2019 05:32:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/1312">@foxhound</a> <a href="https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/software/M5Burner_MacOS.zip" target="_blank" rel="noopener noreferrer nofollow ugc">https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/software/M5Burner_MacOS.zip</a><br />
or<br />
<a href="https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/software/M5Burner.zip" target="_blank" rel="noopener noreferrer nofollow ugc">https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/software/M5Burner.zip</a></p>
<p dir="auto">when the downloader fully fils the black circle, wait 20 seconds then press the red button on the m5 stack to reset it then press button C to access setup.<br />
Strange that yours isn't showing the ID code as I've just updated mine and they worked properly.</p>
]]></description><link>https://community.m5stack.com/post/3784</link><guid isPermaLink="true">https://community.m5stack.com/post/3784</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Wed, 17 Apr 2019 05:32:58 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Tue, 16 Apr 2019 22:46:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/443">@ajb2k3</a></p>
<p dir="auto">Thanks mate, I've followed this; however this is where it lands me after I've connected it to a network (and it's disconnected the M5Stack's internal network). I never get the ID code. DO you have a link to the 1.2.3 firmware you mentioned?</p>
<p dir="auto">I suspect there is an issue with the firmware I am using. I will look for your guide now. Have you got a link to it?</p>
<p dir="auto">Thankyou so much for your help, I really appreciate it.</p>
]]></description><link>https://community.m5stack.com/post/3782</link><guid isPermaLink="true">https://community.m5stack.com/post/3782</guid><dc:creator><![CDATA[Foxhound]]></dc:creator><pubDate>Tue, 16 Apr 2019 22:46:54 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Tue, 16 Apr 2019 12:24:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/1312">@foxhound</a> on the computer or phone connect to the new M5Stack network and type in the address. This open a page on the M5Stacks internal micro server that allows you to set the M5Stack into station mode connected to your network. Select your network and insert the password and it should connect and restart disconnecting the M5Stack’s internal network. A new page should show up giving The M5Stack’s is code.<br />
In the UIFlow tutorial section is a link to my documents that have a guide to setup, there is an issue with enterprise networks</p>
]]></description><link>https://community.m5stack.com/post/3779</link><guid isPermaLink="true">https://community.m5stack.com/post/3779</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Tue, 16 Apr 2019 12:24:23 GMT</pubDate></item><item><title><![CDATA[Reply to Continue to try Wifi Connection indefinitely, and go back to the connection&#x2F;reboot if a try fails. on Tue, 16 Apr 2019 08:57:45 GMT]]></title><description><![CDATA[<p dir="auto">Interesting, mind throwing me a link to that firmware.</p>
<p dir="auto">FWIW, what I'm currently using, I setup Wifi and then get to here, where nothing happens (besides <a href="http://io.m5stack.com/#/" target="_blank" rel="noopener noreferrer nofollow ugc">io.m5stack.com/#/</a>&lt;id&gt; opening) when I scan it</p>
<p dir="auto"><img src="https://i.imgur.com/2GME8k8m.jpg" alt="alt text" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.m5stack.com/post/3778</link><guid isPermaLink="true">https://community.m5stack.com/post/3778</guid><dc:creator><![CDATA[Foxhound]]></dc:creator><pubDate>Tue, 16 Apr 2019 08:57:45 GMT</pubDate></item></channel></rss>