<?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[UiFlow 2.0 discuss(how-to, bug, feature request or sometings)]]></title><description><![CDATA[<p dir="auto">Any issues related to uiflow 2.0 can be discussed here.</p>
<p dir="auto">UiFlow 2.0 website: <a href="https://uiflow2.m5stack.com/" target="_blank" rel="noopener noreferrer nofollow ugc">link</a><br />
UiFlow 2.0 API Docs(WIP): <a href="https://uiflow-micropython.readthedocs.io/en/develop/" target="_blank" rel="noopener noreferrer nofollow ugc">link</a><br />
UiFlow 2.0 source code: <a href="https://github.com/m5stack/uiflow-micropython" target="_blank" rel="noopener noreferrer nofollow ugc">link</a><br />
M5burner: <a href="https://docs.m5stack.com/en/download" target="_blank" rel="noopener noreferrer nofollow ugc">download link</a><br />
Quick look: <a href="https://twitter.com/M5Stack/status/1611730509784305665" target="_blank" rel="noopener noreferrer nofollow ugc">twitter link</a></p>
<p dir="auto">Burning firmware requires a login account (forum account), which will automatically bind the device to the account.</p>
<p dir="auto">More info wiil add late in here.</p>
]]></description><link>https://community.m5stack.com/topic/4955/uiflow-2-0-discuss-how-to-bug-feature-request-or-sometings</link><generator>RSS for Node</generator><lastBuildDate>Sun, 08 Mar 2026 04:37:52 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/4955.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 08 Jan 2023 06:03:18 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Sat, 31 Jan 2026 22:39:47 GMT]]></title><description><![CDATA[<p dir="auto">I am unable to get BaseX module to work with UI Flow 2.x firmware. I can get it to work with UI Flow 1.x.</p>
]]></description><link>https://community.m5stack.com/post/30546</link><guid isPermaLink="true">https://community.m5stack.com/post/30546</guid><dc:creator><![CDATA[wmoorefi]]></dc:creator><pubDate>Sat, 31 Jan 2026 22:39:47 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Thu, 08 Jan 2026 13:32:01 GMT]]></title><description><![CDATA[<p dir="auto">Thank you for the M5Stack devices and coding tools. This community forum has been a great help too. I have been successfully using UiFlow2 to create code for a Cardputer. But I think there is a bug in the UiFlow2 web UI and/or m5f2 file format.</p>
<p dir="auto">THIS WORKS: I can save to the cloud, save the project to a local file, and reimport that file, when the script is like:</p>
<pre><code>sTestString = None

def setup():
  global sTestString

  M5.begin()
  Widgets.fillScreen(0x000000)

  sTestString = 'hello'

def loop():
  global sTestString
  M5.update()
</code></pre>
<p dir="auto">THIS DOESN'T WORK: If I edit it and assign a particular more complex value to the string, I cannot save to the cloud, nor reimport a file saved locally:</p>
<pre><code>sTestString = 'OL,1,RW7###jp0 55  j"#k#!7##ih###4up j`%##7#'
</code></pre>
<p dir="auto">This string happens to be a line from a teletext page .tti file, which includes some display control codes. Here is a screenshot of the code which can't be saved to the cloud or reimported, in the UiFlow2 UI:</p>
<p dir="auto"><img src="/assets/uploads/files/1767878231094-4afd05da-a1ee-4057-a251-fcb98e423e69-image.png" alt="4afd05da-a1ee-4057-a251-fcb98e423e69-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Decoding this string's value is:</p>
<p dir="auto">\u004f\u004c\u002c\u0031\u002c\u001b\u0052\u007f\u001b\u0057\u0037\u0023\u0023\u0023\u006a\u0070\u0030\u0020\u0035\u0035\u0020\u0020\u006a\u0022\u0023\u006b\u0023\u0021\u0037\u0023\u0023\u0069\u0068\u0023\u0023\u0023\u0034\u0075\u0070\u0020\u006a\u0060\u0025\u0023\u0023\u0037\u0023</p>
<p dir="auto">While the script cannot be saved to the cloud (there is no response), the project can be saved to a local file. In the .m5f2 project file, the relevant saved value is:</p>
<pre><code>&lt;field name=\"VAR\" id=\"usN/c#7FD;q`ieH|V~5K\"&gt;sTestString&lt;/field&gt;&lt;value name=\"VALUE\"&gt;&lt;block type=\"text\" id=\"ap8ErHQgaUZ`^d-W-%_I\"&gt;&lt;field name=\"TEXT\"&gt;OL,1,\u001bR\u001bW7###jp0 55  j\"#k#!7##ih###4up j`%##7#&lt;/field&gt;&lt;/block&gt;&lt;/value&gt;
</code></pre>
<p dir="auto">This local file cannot then by imported again into UiFlow2, giving an "error opening file" message:</p>
<p dir="auto"><img src="/assets/uploads/files/1767878794570-2dca212f-b98c-4d77-ba73-8801f4396409-image.png" alt="2dca212f-b98c-4d77-ba73-8801f4396409-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">I believe the problem is related to some unicode characters rather than the " character.</p>
]]></description><link>https://community.m5stack.com/post/30418</link><guid isPermaLink="true">https://community.m5stack.com/post/30418</guid><dc:creator><![CDATA[GuerillaPlanter]]></dc:creator><pubDate>Thu, 08 Jan 2026 13:32:01 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Tue, 23 Dec 2025 10:53:17 GMT]]></title><description><![CDATA[<p dir="auto"><strong>Hi there,</strong></p>
<p dir="auto">I updated firmware on my Tab5 and installed UiFlow 2.0 V 2.4.0.<br />
I hoped for fixed UI libs, LVGL (M5UI) is not working for me:<br />
If I use pictures for button graphics (&lt;30kB) hiding/ showing them to get 2 state feedback is very, very slow!<br />
The same graphics work fine/ fluent with old M5GFX, so I assume there must be a bug?</p>
<p dir="auto">Also: it seems that Wifi is not working anymore with V2.4.0: cannot get http calls.<br />
(also normally on booting Tab5 shows UIFlow settings page, with V2.4.0 not anymore and if I download project it's not booting...</p>
<p dir="auto">Hopefully you can fix it soon, I hoped to get something running over Christmas holidays ;-)</p>
<p dir="auto"><strong>Thanks a lot,</strong><br />
Kind regards from Switzerland!<br />
Stephan</p>
]]></description><link>https://community.m5stack.com/post/30350</link><guid isPermaLink="true">https://community.m5stack.com/post/30350</guid><dc:creator><![CDATA[Amani4791]]></dc:creator><pubDate>Tue, 23 Dec 2025 10:53:17 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Sat, 27 Sep 2025 08:30:18 GMT]]></title><description><![CDATA[<p dir="auto"><img src="/assets/uploads/files/1758961809282-c8fa1994-6b95-44a3-bd12-2a546e067051-image.png" alt="c8fa1994-6b95-44a3-bd12-2a546e067051-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.m5stack.com/post/30007</link><guid isPermaLink="true">https://community.m5stack.com/post/30007</guid><dc:creator><![CDATA[otosan-maker]]></dc:creator><pubDate>Sat, 27 Sep 2025 08:30:18 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Sat, 27 Sep 2025 08:26:29 GMT]]></title><description><![CDATA[<p dir="auto">I have found a bug in MQTT software. When I subscrive to a topic, the python code creates the subscription at the beggining of the setup code, before it connects to wifi and mqtt.</p>
<p dir="auto">Here is the sample:<br />
def setup():<br />
global page0, label0, LTemp, label1, temperatura, slider0, button0, off, mqtt_client, wlan, rotary<br />
<strong>mqtt_client.subscribe('termostato/temperatura', mqtt_termostato_temperatura_event, qos=0)</strong></p>
<p dir="auto">M5.begin()<br />
m5ui.init()<br />
page0 = m5ui.M5Page(bg_c=0xffffff)<br />
label0 = m5ui.M5Label("Umbral", x=30, y=81, text_c=0x85231b, bg_c=0x302c2c, bg_opa=0, font=lv.font_montserrat_24, parent=page0)<br />
LTemp = m5ui.M5Label("Temperatura:", x=41, y=39, text_c=0x000000, bg_c=0xffffff, bg_opa=0, font=lv.font_montserrat_14, parent=page0)<br />
label1 = m5ui.M5Label("19,0", x=152, y=81, text_c=0x85231b, bg_c=0xffffff, bg_opa=0, font=lv.font_montserrat_24, parent=page0)<br />
temperatura = m5ui.M5Label("00.00", x=141, y=39, text_c=0x000000, bg_c=0xffffff, bg_opa=0, font=lv.font_montserrat_14, parent=page0)<br />
slider0 = m5ui.M5Slider(x=38, y=119, w=160, h=22, mode=lv.slider.MODE.NORMAL, min_value=190, max_value=290, value=210, bg_c=0x115e9f, color=0x2c90e4, parent=page0)<br />
button0 = m5ui.M5Button(text="Set", x=54, y=172, bg_c=0x2196f3, text_c=0xffffff, font=lv.font_montserrat_14, parent=page0)<br />
off = m5ui.M5Button(text="OFF", x=124, y=171, bg_c=0xf36021, text_c=0xffffff, font=lv.font_montserrat_14, parent=page0)</p>
<p dir="auto">off.add_event_cb(off_event_handler, lv.EVENT.ALL, None)<br />
BtnA.setCallback(type=BtnA.CB_TYPE.WAS_CLICKED, cb=btnA_wasClicked_event)<br />
slider0.add_event_cb(slider0_event_handler, lv.EVENT.ALL, None)<br />
button0.add_event_cb(button0_event_handler, lv.EVENT.ALL, None)</p>
<p dir="auto">page0.screen_load()<br />
wlan = network.WLAN(network.STA_IF)<br />
rotary = Rotary()<br />
wlan.connect('bencab', 'arrabal6')<br />
rotary.set_rotary_value(19)<br />
mqtt_client = MQTTClient('m5termostato', '192.168.1.34', port=1883, user='user', password='pass', keepalive=33149)<br />
label1.set_text(str((slider0.get_value()) / 10))</p>
]]></description><link>https://community.m5stack.com/post/30006</link><guid isPermaLink="true">https://community.m5stack.com/post/30006</guid><dc:creator><![CDATA[otosan-maker]]></dc:creator><pubDate>Sat, 27 Sep 2025 08:26:29 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Tue, 09 Sep 2025 20:03:51 GMT]]></title><description><![CDATA[<p dir="auto">I wrote in another thread about my Sync... 0% problem.</p>
<p dir="auto">I am pretty sure now that it is a bug. I does not matter which program I use. I can run them from UIFlow 2.0. But as soon as I download a program, I will get the Sync... 0%</p>
<p dir="auto">Also, if I burn firmware without selecting startup, it will not even connect to UIFlow 2.0.</p>
<p dir="auto">I would really appreciate any guidance you could give.</p>
]]></description><link>https://community.m5stack.com/post/29909</link><guid isPermaLink="true">https://community.m5stack.com/post/29909</guid><dc:creator><![CDATA[Schwibach]]></dc:creator><pubDate>Tue, 09 Sep 2025 20:03:51 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Sat, 23 Aug 2025 04:37:46 GMT]]></title><description><![CDATA[<p dir="auto">Today, I updated the UIFlow to V2.3.4, and burned V2.3.4 firmware as well. Then I tested that image component again with M5GFX in UIFlow 2.3.4. But the issue still exists. After I switch two JPG pics with one image component for sometime, the memory will reduced continiously. Finally, the system will break out. And I try to use gc.collect() after every drawImage(), but it's not useful.<br />
Here is my design and python code:<br />
import os, sys, io, gc<br />
import M5<br />
from M5 import *</p>
<p dir="auto">ImageSwitchFlag = None</p>
<p dir="auto">def GcCollectAndPrint():<br />
global ImageSwitchFlag<br />
gc.collect()<br />
print(gc.mem_free())<br />
pass</p>
<p dir="auto">def btnA_wasClicked_event(state):<br />
global ImageSwitchFlag<br />
if ImageSwitchFlag == 0:<br />
M5.Lcd.drawImage("/flash/res/img/RotaryBGBacklight.jpg", 0, 0)<br />
GcCollectAndPrint()<br />
ImageSwitchFlag = 1<br />
elif ImageSwitchFlag == 1:<br />
M5.Lcd.drawImage("/flash/res/img/RotaryBGBT.jpg", 0, 0)<br />
GcCollectAndPrint()<br />
ImageSwitchFlag = 0</p>
<p dir="auto">def setup():<br />
global ImageSwitchFlag</p>
<p dir="auto">M5.begin()<br />
Widgets.fillScreen(0x000000)</p>
<p dir="auto">BtnA.setCallback(type=BtnA.CB_TYPE.WAS_CLICKED, cb=btnA_wasClicked_event)</p>
<p dir="auto">ImageSwitchFlag = 0</p>
<p dir="auto">def loop():<br />
global ImageSwitchFlag<br />
M5.update()</p>
<p dir="auto">if <strong>name</strong> == '<strong>main</strong>':<br />
try:<br />
setup()<br />
while True:<br />
loop()<br />
except (Exception, KeyboardInterrupt) as e:<br />
try:<br />
from utility import print_error_msg<br />
print_error_msg(e)<br />
except ImportError:<br />
print("please update to latest firmware")******</p>
<p dir="auto"><img src="/assets/uploads/files/1755923713065-b442ffec-d9ce-4445-898c-4b8ffc3caa82-image.png" alt="b442ffec-d9ce-4445-898c-4b8ffc3caa82-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.m5stack.com/post/29832</link><guid isPermaLink="true">https://community.m5stack.com/post/29832</guid><dc:creator><![CDATA[zhumingqi]]></dc:creator><pubDate>Sat, 23 Aug 2025 04:37:46 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Fri, 22 Aug 2025 01:01:16 GMT]]></title><description><![CDATA[<p dir="auto">I tested more UI design. And I found that the memory leak only happens when I use image component and switch images frequently. Is that a UIFlow2.3.3 bug or my design is incorrect?</p>
]]></description><link>https://community.m5stack.com/post/29813</link><guid isPermaLink="true">https://community.m5stack.com/post/29813</guid><dc:creator><![CDATA[zhumingqi]]></dc:creator><pubDate>Fri, 22 Aug 2025 01:01:16 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Wed, 20 Aug 2025 08:20:47 GMT]]></title><description><![CDATA[<p dir="auto">I used UIFlow2 to devleop a simple UI demo, and I monitor the free memory with gc.mem_free(). I found the free memory reduced continiously though I called gc.collect() every loop. Finally, the UI can not update again, but the loop still was running.</p>
]]></description><link>https://community.m5stack.com/post/29805</link><guid isPermaLink="true">https://community.m5stack.com/post/29805</guid><dc:creator><![CDATA[zhumingqi]]></dc:creator><pubDate>Wed, 20 Aug 2025 08:20:47 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Mon, 04 Aug 2025 12:28:30 GMT]]></title><description><![CDATA[<p dir="auto">I recently los all my private cloud projects....is there a way to get them back from your servers?</p>
]]></description><link>https://community.m5stack.com/post/29692</link><guid isPermaLink="true">https://community.m5stack.com/post/29692</guid><dc:creator><![CDATA[thecuri]]></dc:creator><pubDate>Mon, 04 Aug 2025 12:28:30 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Mon, 23 Jun 2025 16:57:42 GMT]]></title><description><![CDATA[<p dir="auto">Thanks for sharing the UiFlow 2.0 resources! I appreciate having a dedicated space for bugs, how-tos, and feature requests. Does anyone have tips on avoiding common firmware burning errors, especially with account binding? Also curious if there’s a timeline for the full API docs release. Looking forward to seeing how this evolves!</p>
]]></description><link>https://community.m5stack.com/post/29321</link><guid isPermaLink="true">https://community.m5stack.com/post/29321</guid><dc:creator><![CDATA[hacxx]]></dc:creator><pubDate>Mon, 23 Jun 2025 16:57:42 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Fri, 20 Jun 2025 20:38:33 GMT]]></title><description><![CDATA[<p dir="auto">When Will LVGL be integrated in UIFlow 2 ?   I don't see a progress there for many months. The new devices such as Tab5 are useless without LVGL.  Programming with UiFlow 2.0 and printing simple lines and squares look very old school.</p>
]]></description><link>https://community.m5stack.com/post/29290</link><guid isPermaLink="true">https://community.m5stack.com/post/29290</guid><dc:creator><![CDATA[sgu]]></dc:creator><pubDate>Fri, 20 Jun 2025 20:38:33 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Fri, 20 Jun 2025 20:34:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/196711">@charlesRD</a><br />
i have similar issues</p>
<p dir="auto">the Tab5 does not burn UIFlow at all!</p>
]]></description><link>https://community.m5stack.com/post/29289</link><guid isPermaLink="true">https://community.m5stack.com/post/29289</guid><dc:creator><![CDATA[sgu]]></dc:creator><pubDate>Fri, 20 Jun 2025 20:34:58 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Thu, 03 Apr 2025 15:06:33 GMT]]></title><description><![CDATA[<p dir="auto">Hello,</p>
<p dir="auto">I have some difficulties to burn UIFLOW on new devices</p>
<p dir="auto">For ATom lite it seems to work but i get ERROR The device type is unknown! on device manager.<br />
I dont know if it can acces to the wifi. i tried several time to unregister and burn it again, reinstall M5 burner, but it doesn't help.</p>
<p dir="auto">It can't connect to my M5 stamp C3, maybe there is a way to make a factory reset on them?</p>
<p dir="auto">The previous Atom and Stick set up in february still worked well, and appears with green dot on device manager. when i try to burn it now i get the  "unknown type" error and red dot.</p>
<p dir="auto">it looks like i am not able anymore to have the same atom running when i burn them today.</p>
<p dir="auto">Did i forgot something ?</p>
<p dir="auto">Thank you very much,</p>
<p dir="auto">Charles</p>
]]></description><link>https://community.m5stack.com/post/28784</link><guid isPermaLink="true">https://community.m5stack.com/post/28784</guid><dc:creator><![CDATA[charlesRD]]></dc:creator><pubDate>Thu, 03 Apr 2025 15:06:33 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Tue, 25 Feb 2025 07:51:03 GMT]]></title><description><![CDATA[<p dir="auto">I am looking for all of the lcd drawing tools that were available in uiflow1.0. I was making some interactive graphics and I was drawing lines or rectangles in a loop and doing that in uiflow2.0 requires you to first drag out 100 lines in the ui builder which just is too slow. Here are the bloacks I am looking for in uiflow 2.0. How can I do something similar in uiflow 2.0 <img src="/assets/uploads/files/1740469723291-screenshot-2025-02-18-235307-resized.png" alt="Screenshot 2025-02-18 235307.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.m5stack.com/post/28327</link><guid isPermaLink="true">https://community.m5stack.com/post/28327</guid><dc:creator><![CDATA[jpilarski]]></dc:creator><pubDate>Tue, 25 Feb 2025 07:51:03 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Thu, 23 Jan 2025 07:53:53 GMT]]></title><description><![CDATA[<p dir="auto">Could you unlock from UIFlow 2 the capability to code in micropython…</p>
]]></description><link>https://community.m5stack.com/post/28007</link><guid isPermaLink="true">https://community.m5stack.com/post/28007</guid><dc:creator><![CDATA[Davidalan5757]]></dc:creator><pubDate>Thu, 23 Jan 2025 07:53:53 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Wed, 22 Jan 2025 10:13:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/219585">@Calilov330000</a><br />
why don't you try a simple laptop/desktop?</p>
]]></description><link>https://community.m5stack.com/post/27986</link><guid isPermaLink="true">https://community.m5stack.com/post/27986</guid><dc:creator><![CDATA[kuriko]]></dc:creator><pubDate>Wed, 22 Jan 2025 10:13:28 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Wed, 22 Jan 2025 01:13:23 GMT]]></title><description><![CDATA[<p dir="auto">Does anyone know how to connect my m5stack core 2 ?<br />
Im using the raspberry pi 5. Is the m5stackbcore 2 plug and play with raspberry pi or the websites? Ive neen trying to connect this thing for 2 weeks. This is crazy it takes this much trouble</p>
]]></description><link>https://community.m5stack.com/post/27985</link><guid isPermaLink="true">https://community.m5stack.com/post/27985</guid><dc:creator><![CDATA[Calilov330000]]></dc:creator><pubDate>Wed, 22 Jan 2025 01:13:23 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Mon, 02 Dec 2024 01:57:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/182633">@riztronic</a> The device includes a 5V to 3.3V power circuit, a built-in three-axis BMM150 geomagnetic sensor,</p>
]]></description><link>https://community.m5stack.com/post/27277</link><guid isPermaLink="true">https://community.m5stack.com/post/27277</guid><dc:creator><![CDATA[teastain]]></dc:creator><pubDate>Mon, 02 Dec 2024 01:57:34 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Mon, 02 Dec 2024 01:28:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/182633">@riztronic</a><br />
did you mean a built-in magnetometer?</p>
]]></description><link>https://community.m5stack.com/post/27276</link><guid isPermaLink="true">https://community.m5stack.com/post/27276</guid><dc:creator><![CDATA[kuriko]]></dc:creator><pubDate>Mon, 02 Dec 2024 01:28:38 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Sun, 01 Dec 2024 17:02:21 GMT]]></title><description><![CDATA[<p dir="auto">missing magnetometer scratch code for atom s3r , please add</p>
]]></description><link>https://community.m5stack.com/post/27274</link><guid isPermaLink="true">https://community.m5stack.com/post/27274</guid><dc:creator><![CDATA[riztronic]]></dc:creator><pubDate>Sun, 01 Dec 2024 17:02:21 GMT</pubDate></item><item><title><![CDATA[Reply to UiFlow 2.0 discuss(how-to, bug, feature request or sometings) on Mon, 18 Nov 2024 11:28:53 GMT]]></title><description><![CDATA[<p dir="auto">I'm using UIFlow2 on Microsoft Edge and when I try to create a variable with the name of an object that already exists, I get the conflict information and even if I correct it, when I exit the variable creation window, UIFlow2 crashes and I have to reload the page to continue.</p>
]]></description><link>https://community.m5stack.com/post/27082</link><guid isPermaLink="true">https://community.m5stack.com/post/27082</guid><dc:creator><![CDATA[cryptospok]]></dc:creator><pubDate>Mon, 18 Nov 2024 11:28:53 GMT</pubDate></item></channel></rss>