<?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[Is ezdata working or not?]]></title><description><![CDATA[<p dir="auto">Hi.<br />
Right now the service <a href="https://ezdata.m5stack.com:8088/debugger/" target="_blank" rel="noopener noreferrer nofollow ugc">https://ezdata.m5stack.com:8088/debugger/</a> is not working.<br />
Nor is woring to send data to ezdata from my projects.</p>
<p dir="auto">Nor is working the site <a href="https://ezdata.m5stack.com" target="_blank" rel="noopener noreferrer nofollow ugc">https://ezdata.m5stack.com</a> is working, which gives this answer:</p>
<p dir="auto"><img src="/assets/uploads/files/1640475509885-screenshot-2021-12-26-at-0.37.42.png" alt="0_1640475509078_Screenshot 2021-12-26 at 0.37.42.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Is the service down? should we move to other?</p>
]]></description><link>https://community.m5stack.com/topic/3862/is-ezdata-working-or-not</link><generator>RSS for Node</generator><lastBuildDate>Tue, 17 Mar 2026 16:09:30 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/3862.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 25 Dec 2021 23:39:12 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Is ezdata working or not? on Fri, 13 Oct 2023 05:30:56 GMT]]></title><description><![CDATA[<p dir="auto">Good morning,<br />
I find myself with the same problem and despite the solutions provided, I can only send 9 data packets before the synchronization stops.<br />
Do you have a new solution?</p>
]]></description><link>https://community.m5stack.com/post/22457</link><guid isPermaLink="true">https://community.m5stack.com/post/22457</guid><dc:creator><![CDATA[seven53]]></dc:creator><pubDate>Fri, 13 Oct 2023 05:30:56 GMT</pubDate></item><item><title><![CDATA[Reply to Is ezdata working or not? on Sun, 08 Jan 2023 18:08:58 GMT]]></title><description><![CDATA[<p dir="auto">What Kind of errors are you getting?<br />
When I ran mine connected to a terminal I was getting memory errors which could be reduced by adding a code block with:</p>
<pre><code>import gc
gc.collect()
</code></pre>
<p dir="auto">To the beginning of the main loop.</p>
]]></description><link>https://community.m5stack.com/post/19780</link><guid isPermaLink="true">https://community.m5stack.com/post/19780</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Sun, 08 Jan 2023 18:08:58 GMT</pubDate></item><item><title><![CDATA[Reply to Is ezdata working or not? on Sun, 08 Jan 2023 14:15:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/32296">@greoj</a>, your suggestion was incredibly helpful. With my previous example, I was able to achieve 9 days of continuous operation without any suspensions. Now, with the asynchron ezData function, I'm able to record data on load every 5 seconds and it's working great. When errors pop up, the program continues to work and is able to start recording values again after a while. I think you managed to solve the problem. I'll let <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/443">@ajb2k3</a>, <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/15347">@lmartu68</a>  and <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/4037">@felmue</a> know."</p>
<p dir="auto"><img src="https://i.imgur.com/Zfv57ML.png" alt="alt text" class=" img-fluid img-markdown" /><br />
<img src="https://i.imgur.com/vEfendr.jpeg" alt="alt text" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.m5stack.com/post/19776</link><guid isPermaLink="true">https://community.m5stack.com/post/19776</guid><dc:creator><![CDATA[Dominikcnc]]></dc:creator><pubDate>Sun, 08 Jan 2023 14:15:34 GMT</pubDate></item><item><title><![CDATA[Reply to Is ezdata working or not? on Sat, 07 Jan 2023 17:45:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/31166">@dominikcnc</a><br />
You will have a more stable program if you use the asynchron EzData functions.<br />
They are unfortunately not mentioned in the "documentation", but they are available in the M5Stack Flow interface. The main difference is that the asynchron functions implement a python callback function in the background (also accessible in the Flow view) to capture possible errors.<br />
In my case I got frequent error "23" with the synchron Ezdaza functions.<br />
As with all M5Stack flow interface functions there is no python exception handling implemented.<br />
Therefore I had trouble with frequent program stops until I framed the EzData python functions in a TRY/EXCEPT block within an "execute" block.<br />
However, later I discovered the asynchron EzData functions which will actually do this job.<br />
Even better is that they do not slow down the main program flow which in my case detects the ticks and speed of my old Ferraris energy meter.<br />
Note that in case of an error the value that you tried to push to the EzData queue is simply not stored.</p>
<p dir="auto">Example of the asynchron EzData functions:<br />
<img src="/assets/uploads/files/1672919113756-578cc8a7-b52c-4889-a342-ab887be86f3f-image.png" alt="0_1672919112866_578cc8a7-b52c-4889-a342-ab887be86f3f-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.m5stack.com/post/19749</link><guid isPermaLink="true">https://community.m5stack.com/post/19749</guid><dc:creator><![CDATA[Greoj]]></dc:creator><pubDate>Sat, 07 Jan 2023 17:45:23 GMT</pubDate></item><item><title><![CDATA[Reply to Is ezdata working or not? on Sat, 31 Dec 2022 19:31:05 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> I didn't even know there was such a cool guide and I'm waiting for the second book. Good luck :)<br />
I've played with the core2 device a bit and I'm not quite satisfied. The connection with ezData is not stable enough and I keep getting errors<img src="https://imgur.com/a/LK9lbnV" alt="alt text" class=" img-fluid img-markdown" />. I tried to increase the time of sending information to 2 minute between writes and with such a configuration I managed to strim the longest for 30h. I used the start timer and timer callback functions for this. <img src="https://i.imgur.com/awjNWcQ.png" alt="alt text" class=" img-fluid img-markdown" /><br />
Now I made a program that uses the If function and sends information every 60 seconds. So far it has been working stably for 24h.<img src="https://i.imgur.com/hdOEVgJ.png" alt="alt text" class=" img-fluid img-markdown" />   <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/4037">@felmue</a> forward</p>
]]></description><link>https://community.m5stack.com/post/19685</link><guid isPermaLink="true">https://community.m5stack.com/post/19685</guid><dc:creator><![CDATA[Dominikcnc]]></dc:creator><pubDate>Sat, 31 Dec 2022 19:31:05 GMT</pubDate></item><item><title><![CDATA[Reply to Is ezdata working or not? on Fri, 23 Dec 2022 06:24:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/31166">@dominikcnc</a> I am working on a new book for the core 2 thanks to feedback from everyone about the first book. Time willing, I may be able to look into the issues over the holiday.</p>
]]></description><link>https://community.m5stack.com/post/19640</link><guid isPermaLink="true">https://community.m5stack.com/post/19640</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Fri, 23 Dec 2022 06:24:18 GMT</pubDate></item><item><title><![CDATA[Reply to Is ezdata working or not? on Thu, 22 Dec 2022 21:57:18 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> I have managed to connect to the AWS platform so far. I can send and receive information, only I do not know at this point how to make it publicly accessible and with graphs over time. I bought core2 because it was advertised as a great and easy to program device for everyone, and here it turns out that such a basic flaw has not been solved for over a year.<br />
Thanks to your advice I increased the time in the loop to 25 seconds and so far it works (still testing). Unfortunately for one value. My project assumes 7 values from the temperature sensors, so I will have to refresh the loop every 3 minutes :)</p>
]]></description><link>https://community.m5stack.com/post/19637</link><guid isPermaLink="true">https://community.m5stack.com/post/19637</guid><dc:creator><![CDATA[Dominikcnc]]></dc:creator><pubDate>Thu, 22 Dec 2022 21:57:18 GMT</pubDate></item><item><title><![CDATA[Reply to Is ezdata working or not? on Thu, 22 Dec 2022 20:22:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/4037">@felmue</a> error 23 is normally a trusted security warning.</p>
<p dir="auto">I haven't tested lately because I have been busy but I get get errors if you tried to post too quickly.</p>
<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/31166">@Dominikcnc</a> I have no problems using the Core2 AWS with AWS/Azure and a self hosted MQTT/Nodered service on a Raspberry pi</p>
]]></description><link>https://community.m5stack.com/post/19636</link><guid isPermaLink="true">https://community.m5stack.com/post/19636</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Thu, 22 Dec 2022 20:22:45 GMT</pubDate></item><item><title><![CDATA[Reply to Is ezdata working or not? on Thu, 22 Dec 2022 18:17:09 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/31166">@Dominikcnc</a></p>
<p dir="auto">actually I think I see the same as you. I count up (every 10 seconds) and after about 80 seconds (count is 8) I get error 23.</p>
<p dir="auto">Thanks<br />
Felix</p>
]]></description><link>https://community.m5stack.com/post/19633</link><guid isPermaLink="true">https://community.m5stack.com/post/19633</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Thu, 22 Dec 2022 18:17:09 GMT</pubDate></item><item><title><![CDATA[Reply to Is ezdata working or not? on Thu, 22 Dec 2022 17:12:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/4037">@felmue</a> It is strange that you can not communicate with the server. In my case the program works up to 8sec and gets error 23.<br />
I'm disappointed because I bought 3 Core2 devices and sensors that I can't use now and probably won't be able to return them anymore  <img src="https://imgur.com/a/c7nggtP" alt="error" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.m5stack.com/post/19632</link><guid isPermaLink="true">https://community.m5stack.com/post/19632</guid><dc:creator><![CDATA[Dominikcnc]]></dc:creator><pubDate>Thu, 22 Dec 2022 17:12:27 GMT</pubDate></item><item><title><![CDATA[Reply to Is ezdata working or not? on Wed, 21 Dec 2022 22:01:52 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/31166">@Dominikcnc</a></p>
<p dir="auto">sorry no, seems to be broken still. Even counting up one every 10 seconds makes my M5Core2 (v1.10.0) crash (error 23) after about 8 counts.</p>
<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/1">@m5stack</a> : hey guys, what are we doing wrong? Is there a limit about the update frequency? What are we missing?</p>
<p dir="auto">Thanks<br />
Felix</p>
]]></description><link>https://community.m5stack.com/post/19627</link><guid isPermaLink="true">https://community.m5stack.com/post/19627</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Wed, 21 Dec 2022 22:01:52 GMT</pubDate></item><item><title><![CDATA[Reply to Is ezdata working or not? on Wed, 21 Dec 2022 21:23:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/4037">@felmue</a> Hi, were you able to solve this problem? Despite software version v1.11.0, I still can't stably connect to ezData. Even when I try to do Remote+ connection with reading temp sensor values it does not work. I can give the simplest code that counts every second and increases the value by one it still does not work. Do you know how I can connect Core2 so that I can store the temperature measurement in time and have remote access&gt; thanks for any advice.</p>
]]></description><link>https://community.m5stack.com/post/19625</link><guid isPermaLink="true">https://community.m5stack.com/post/19625</guid><dc:creator><![CDATA[Dominikcnc]]></dc:creator><pubDate>Wed, 21 Dec 2022 21:23:31 GMT</pubDate></item><item><title><![CDATA[Reply to Is ezdata working or not? on Mon, 31 Jan 2022 20:07:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/4037">@felmue</a><br />
hello<br />
not relevant this topic, but UIflow 1.9.1 is not downloading code to my devices, I'm getting a red error banner, with a check your api key or filename.<br />
API key is correct.<br />
I've tried reloading the 1.9.1 firmware, and getting a new api key for my device, but nothing.<br />
Yesterday everything was working fine.<br />
Do know if there Is there any way to get into contact with support? I'm pretty sure this is a widespread issue,.<br />
thanks<br />
L.</p>
]]></description><link>https://community.m5stack.com/post/16438</link><guid isPermaLink="true">https://community.m5stack.com/post/16438</guid><dc:creator><![CDATA[lmartu68]]></dc:creator><pubDate>Mon, 31 Jan 2022 20:07:59 GMT</pubDate></item><item><title><![CDATA[Reply to Is ezdata working or not? on Sun, 23 Jan 2022 14:13:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/4037">@felmue</a><br />
Let’s hope for a solution.<br />
I’ve had a love hate relationship with M5stack devices. They’re awesome …. But they’re so buggy they drive me nuts!</p>
]]></description><link>https://community.m5stack.com/post/16313</link><guid isPermaLink="true">https://community.m5stack.com/post/16313</guid><dc:creator><![CDATA[lmartu68]]></dc:creator><pubDate>Sun, 23 Jan 2022 14:13:41 GMT</pubDate></item><item><title><![CDATA[Reply to Is ezdata working or not? on Sun, 23 Jan 2022 12:46:16 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/15347">@lmartu68</a></p>
<p dir="auto">I can use <code>get</code> multiple times but I see the same error as you after the second <code>set</code> command. Also at that state when running the same code again, my M5Core2 reboots.</p>
<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/1">@m5stack</a> : as ezData is of today it's fairly unusable with M5Core2 (haven't tried other M5Stack devices). What are we missing?</p>
<p dir="auto">Thanks<br />
Felix</p>
]]></description><link>https://community.m5stack.com/post/16312</link><guid isPermaLink="true">https://community.m5stack.com/post/16312</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Sun, 23 Jan 2022 12:46:16 GMT</pubDate></item><item><title><![CDATA[Reply to Is ezdata working or not? on Sat, 22 Jan 2022 11:22:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/1">@m5stack</a> on my core2 after 2 set.data commands I get the [Errno 12] ENOMEM every time<br />
makes the EZ data function useless.<br />
Ive tried slowing down set data commands , once every 30 seconds , but the error occurs always.<br />
I can only publish 2 data, then I must reset</p>
<p dir="auto">here is the code..what is wrong? it's quote absurd. The code is so simple....</p>
<p dir="auto">from m5stack import *<br />
from m5stack_ui import *<br />
from uiflow import *<br />
import ntptime<br />
import wifiCfg<br />
import time<br />
from flow import ezdata<br />
screen = M5Screen()<br />
screen.clean_screen()<br />
screen.set_screen_bg_color(0xFFFFFF)</p>
<p dir="auto">data = None</p>
<p dir="auto">wifiCfg.doConnect('XXXXXXX"')<br />
wifiCfg.autoConnect(lcdShow=False)</p>
<p dir="auto">import random</p>
<p dir="auto">while True:<br />
data = random.randint(0, 100)<br />
try :<br />
ezdata.setData('XXXXXXXX', 'temp', data)<br />
except Exception as e:<br />
print(str(e))<br />
wait(30)</p>
]]></description><link>https://community.m5stack.com/post/16311</link><guid isPermaLink="true">https://community.m5stack.com/post/16311</guid><dc:creator><![CDATA[lmartu68]]></dc:creator><pubDate>Sat, 22 Jan 2022 11:22:50 GMT</pubDate></item><item><title><![CDATA[Reply to Is ezdata working or not? on Mon, 27 Dec 2021 07:14:35 GMT]]></title><description><![CDATA[<p dir="auto">the first question is fixed.   you could clean the browser cache and refresh the page it would be solved.</p>
<p dir="auto">the invalid request question could use a <code>try</code> <code>except</code> to cover the request code. and then when the error happened. it won't stuck the program.</p>
<p dir="auto"><img src="/assets/uploads/files/1640589271810-88e4287c-8c0a-487a-aa37-e2fd806ce45b-image.png" alt="0_1640589255398_88e4287c-8c0a-487a-aa37-e2fd806ce45b-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.m5stack.com/post/15963</link><guid isPermaLink="true">https://community.m5stack.com/post/15963</guid><dc:creator><![CDATA[m5stack]]></dc:creator><pubDate>Mon, 27 Dec 2021 07:14:35 GMT</pubDate></item><item><title><![CDATA[Reply to Is ezdata working or not? on Sun, 26 Dec 2021 17:42:08 GMT]]></title><description><![CDATA[<p dir="auto">Update.<br />
When using ezdata "Save value" box, the M5go gets the error "Exception: Invalid Request in the setData ezdata function.</p>
]]></description><link>https://community.m5stack.com/post/15959</link><guid isPermaLink="true">https://community.m5stack.com/post/15959</guid><dc:creator><![CDATA[eldraco]]></dc:creator><pubDate>Sun, 26 Dec 2021 17:42:08 GMT</pubDate></item></channel></rss>