<?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[M5Stack Fire]]></title><description><![CDATA[M5Stack Fire]]></description><link>https://community.m5stack.com/category/24</link><generator>RSS for Node</generator><lastBuildDate>Sun, 12 Apr 2026 17:21:08 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/category/24.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 19 Nov 2025 06:50:12 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Firev2.7 Test결과 PSRAM이 인식이안됩니다.]]></title><description><![CDATA[<p dir="auto">Re: [Fire with UIFlow2](/topic/6685/fire```<br />
code_text</p>
<pre><code class="language--with-uiflow2)">

# /flash/mem_fire_check.py 

# check_psram_status.py - M5Stack Fire PSRAM Detection Script
import gc
import os
import sys
import machine


def check_psram_status():
    print("M5Stack Fire PSRAM Detection Status")
    print("=" * 50)

    # 1. System information
    print("1. System Information:")
    print(f" - MicroPython version : {sys.implementation.version}")
    print(f" - Platform           : {sys.platform}")
    print(f" - Machine            : {os.uname().machine}")

    # 2. Official esp32 PSRAM API check
    print("\n2. Official PSRAM API Check:")
    try:
        import esp32
        if hasattr(esp32, 'PSRAM'):
            size = esp32.PSRAM.size()
            print(f"   esp32.PSRAM available: {size:,} bytes "
                  f"({size / 1024 / 1024:.1f} MB)")
        else:
            print("   esp32.PSRAM attribute NOT found")
    except Exception as e:
        print(f"   Failed to access esp32.PSRAM → {e}")

    # 3. Current heap status
    print("\n3. Heap Memory Status:")
    gc.collect()
    total_heap = gc.mem_alloc() + gc.mem_free()
    print(f" - Total heap   : {total_heap:,} bytes ({total_heap / 1024 / 1024:.2f} MB)")
    print(f" - Allocated    : {gc.mem_alloc():,} bytes")
    print(f" - Free         : {gc.mem_free():,} bytes")

    # 4. PSRAM allocation stress test
    print("\n4. PSRAM Allocation Test (512KB chunks):")
    test_psram_allocation()

    print("=" * 50)


def test_psram_allocation():
    gc.collect()
    start_free = gc.mem_free()
    buffers = []
    chunk_size = 512 * 1024  # 512KB

    try:
        for i in range(1, 17):  # Try up to ~8MB
            buf = bytearray(chunk_size)
            buffers.append(buf)
            allocated = len(buffers) * chunk_size
            current_free = gc.mem_free()

            print(f"   {allocated / 1024 / 1024:.1f} MB allocated → "
                  f"{current_free / 1024 / 1024:.2f} MB free")

            # If free memory drops too fast → we're NOT using PSRAM
            if start_free - current_free &gt; (start_free * 0.8):
                print("   Sudden heap drop detected → Running WITHOUT PSRAM")
                break

    except MemoryError:
        print(f"   MemoryError at {allocated / 1024 / 1024:.1f} MB → "
              "PSRAM is NOT enabled in firmware")
    except Exception as e:
        print(f"   Unexpected error: {e}")
    finally:
        del buffers[:]
        gc.collect()
        print(f"   Cleanup complete → Free memory: "
              f"{gc.mem_free() / 1024 / 1024:.2f} MB")


def check_firmware_psram_support():
    print("\n5. Firmware PSRAM Support Summary:")
    print("   Testing different detection methods...")

    results = []

    # Method 1: esp32.PSRAM
    try:
        import esp32
        if hasattr(esp32, 'PSRAM') and esp32.PSRAM.size() &gt; 0:
            results.append("esp32.PSRAM API → Supported "
                          f"({esp32.PSRAM.size() / 1024 / 1024:.1f} MB)")
        else:
            results.append("esp32.PSRAM API → Not available")
    except:
        results.append("esp32.PSRAM API → Failed to import")

    # Method 2: Large allocation test
    gc.collect()
    try:
        _ = bytearray(6 * 1024 * 1024)  # 6MB
        results.append("Large allocation (6MB+) → SUCCESS (PSRAM likely enabled)")
        del _
    except MemoryError:
        results.append("Large allocation (6MB+) → FAILED (NO PSRAM)")

    gc.collect()

    # Final verdict
    for r in results:
        print(f"   • {r}")

    print("\n   Verdict:")
    if any("SUCCESS" in r or "Supported" in r for r in results):
        print("   PSRAM is ENABLED and working!")
    else:
        print("   PSRAM is DISABLED → Flash a PSRAM-enabled firmware!")


# Main execution
if __name__ == "__main__":
    check_psram_status()
    check_firmware_psram_support()



------------- Result    =============


MicroPython v1.25.0-dirty on 2025-10-24; M5STACK Fire with ESP32(SPIRAM)
Type "help()" for more information.
&gt;&gt;&gt; 
&gt;&gt;&gt; 
&gt;&gt;&gt; import check_psram_status as pp
&gt;&gt;&gt; pp.check_psram_status
&lt;function check_psram_status at 0x3f8034c0&gt;
&gt;&gt;&gt; pp.check_psram_status()
M5Stack Fire PSRAM Detection Status
==================================================
1. System Information:
 - MicroPython version : (1, 25, 0, '')
 - Platform           : esp32
 - Machine            : M5STACK Fire with ESP32(SPIRAM)

2. Official PSRAM API Check:
   esp32.PSRAM attribute NOT found

3. Heap Memory Status:
 - Total heap   : 4,184,768 bytes (3.99 MB)
 - Allocated    : 7,856 bytes
 - Free         : 4,176,864 bytes

4. PSRAM Allocation Test (512KB chunks):
   0.5 MB allocated → 3.42 MB free
   1.0 MB allocated → 2.91 MB free
   1.5 MB allocated → 2.40 MB free
   2.0 MB allocated → 1.90 MB free
   2.5 MB allocated → 1.46 MB free
   3.0 MB allocated → 0.96 MB free
   3.5 MB allocated → 0.46 MB free
   Sudden heap drop detected → Running WITHOUT PSRAM
   Cleanup complete → Free memory: 3.44 MB
==================================================
&gt;&gt;&gt;</code></pre>
]]></description><link>https://community.m5stack.com/topic/7903/firev2-7-test결과-psram이-인식이안됩니다</link><guid isPermaLink="true">https://community.m5stack.com/topic/7903/firev2-7-test결과-psram이-인식이안됩니다</guid><dc:creator><![CDATA[nongjung-dns]]></dc:creator><pubDate>Wed, 19 Nov 2025 06:50:12 GMT</pubDate></item><item><title><![CDATA[Fatal error occurred]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/343965">@LindzB</a> said in <a href="/post/30011">Fatal error occurred</a>:</p>
<blockquote>
<p dir="auto">fatal error occurred: Could not open COM3, the port is busy or doesn't exist.<br />
(could not open port 'COM3': PermissionError(13, 'Access is denied.', None, 5))</p>
<p dir="auto">Please, I need help in correcting this error.</p>
</blockquote>
<p dir="auto">Are you using M5Burner? is com3 detected in it for your device?  is there diff software with your com port 3 opened in it in the background?  lack of info about your hardware/software setup really</p>
]]></description><link>https://community.m5stack.com/topic/7836/fatal-error-occurred</link><guid isPermaLink="true">https://community.m5stack.com/topic/7836/fatal-error-occurred</guid><dc:creator><![CDATA[robski]]></dc:creator><pubDate>Mon, 29 Sep 2025 22:55:06 GMT</pubDate></item><item><title><![CDATA[M5Stack FIRE V2.6 (CH9102F)がWindows11(24H2)でUSB接続認識されない件]]></title><description><![CDATA[<p dir="auto">お世話になります。</p>
<p dir="auto">現在、M5Stack FIRE に関して次の2つのバージョンがあります。<br />
　　1) V2.6 (USBチップ: CH9102F) ※BALA2 FIREとして購入したもの<br />
　　2) V2.7 (USBチップ: CH9102F)<br />
2)のV2.7については、Windows11(24H2)で問題なくUSBシリアルポート接続<br />
認識ができていますが、同一環境(PC環境、USB接続環境、USBケーブル等)<br />
で、1)のV2.6について、デバイスマネージャでCOMポートとして認識できず<br />
困っています。</p>
<p dir="auto">様々なUSB環境(ハブ、ケーブル等)で試していますが、一瞬接続できたことも<br />
過去にありましたが、現状は、ことごとく正しく認識されません。</p>
<p dir="auto">もし、同様のトラブルに遭遇された方で、アドバイスなどがございましたら<br />
よろしくお願いします。</p>
<p dir="auto">Ruri</p>
]]></description><link>https://community.m5stack.com/topic/7435/m5stack-fire-v2-6-ch9102f-がwindows11-24h2-でusb接続認識されない件</link><guid isPermaLink="true">https://community.m5stack.com/topic/7435/m5stack-fire-v2-6-ch9102f-がwindows11-24h2-でusb接続認識されない件</guid><dc:creator><![CDATA[RuriObb]]></dc:creator><pubDate>Wed, 26 Mar 2025 01:47:26 GMT</pubDate></item><item><title><![CDATA[M5Stack LoRa (old) LoRa V1.1 kompatible]]></title><description><![CDATA[<p dir="auto">I think it's bad that users are left alone with the configuration and are referred to third-party software. Is there no way to set the DIP switches (jumpers) so that the modules are compatible, i.e. LoRa Old/433) = LoRa V1.1? The APRSCube software is not open source, i.e. it cannot be changed. If it is not possible to jumper the modules identically, they are no longer recommended for purchase.</p>
<p dir="auto">73 de DO6GZ</p>
]]></description><link>https://community.m5stack.com/topic/7368/m5stack-lora-old-lora-v1-1-kompatible</link><guid isPermaLink="true">https://community.m5stack.com/topic/7368/m5stack-lora-old-lora-v1-1-kompatible</guid><dc:creator><![CDATA[s1y99]]></dc:creator><pubDate>Thu, 06 Mar 2025 20:43:49 GMT</pubDate></item><item><title><![CDATA[Bluetooth Arduino Keyboard]]></title><description><![CDATA[<p dir="auto">Does anyone have a working Bluetooth application working on the Fire using the Arduino development.</p>
<p dir="auto">Actually, any M5Stack device would be acceptable: Atoms, Base, Fire...</p>
<p dir="auto">Even better would be to have the Fire connect to a Bluetooth keyboard to accept keys from it.</p>
]]></description><link>https://community.m5stack.com/topic/7349/bluetooth-arduino-keyboard</link><guid isPermaLink="true">https://community.m5stack.com/topic/7349/bluetooth-arduino-keyboard</guid><dc:creator><![CDATA[MichaelKlos]]></dc:creator><pubDate>Mon, 03 Mar 2025 18:22:34 GMT</pubDate></item><item><title><![CDATA[How to display UTF8 characters in M5Stack Fire]]></title><description><![CDATA[<p dir="auto">Hello everyone,</p>
<p dir="auto">I'm dealing with M5Stack Fire, and I'm trying to display Portuguese characters on display, until now without success.</p>
<p dir="auto">So basically a simple program like</p>
<pre><code>#include &lt;M5Stack.h&gt;

void setup() {
  // Initialize the M5Stack
  M5.begin();
  
  // Clear the screen and display a message
  M5.Lcd.clear();
  M5.Lcd.setCursor(50, 50);
  M5.Lcd.print("Configuração está ok"); //Meaning: configuration it's ok
}

void loop() {
  // No need to put anything in loop for this example
}

</code></pre>
<p dir="auto">But this does not print the ç character, ã or even á.<br />
I tried to load a custom font, but this is not good, because then I can't set it's size dynamically.</p>
<p dir="auto">Is there any way to make the M5Stack fire support these characters?</p>
]]></description><link>https://community.m5stack.com/topic/7319/how-to-display-utf8-characters-in-m5stack-fire</link><guid isPermaLink="true">https://community.m5stack.com/topic/7319/how-to-display-utf8-characters-in-m5stack-fire</guid><dc:creator><![CDATA[gbastos]]></dc:creator><pubDate>Fri, 21 Feb 2025 13:41:34 GMT</pubDate></item><item><title><![CDATA[Core and Fire not working after adding LoRa modules]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/443">@ajb2k3</a> Thanks for the suggestion. Working on my Core now.</p>
]]></description><link>https://community.m5stack.com/topic/7132/core-and-fire-not-working-after-adding-lora-modules</link><guid isPermaLink="true">https://community.m5stack.com/topic/7132/core-and-fire-not-working-after-adding-lora-modules</guid><dc:creator><![CDATA[pwcrilly]]></dc:creator><pubDate>Mon, 30 Dec 2024 06:54:24 GMT</pubDate></item><item><title><![CDATA[PbHub and reflective IR sensor]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/151821">@neus-morla</a><br />
have you tried link it directly to your Fire? it may be a PbHub config problem</p>
]]></description><link>https://community.m5stack.com/topic/7042/pbhub-and-reflective-ir-sensor</link><guid isPermaLink="true">https://community.m5stack.com/topic/7042/pbhub-and-reflective-ir-sensor</guid><dc:creator><![CDATA[kuriko]]></dc:creator><pubDate>Sat, 30 Nov 2024 22:02:41 GMT</pubDate></item><item><title><![CDATA[Can we use GPIO36 as Servo control pIn ?]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/166460">@RuriObb</a> No, it is an input pin only. as specified in the various my stack documents.</p>
]]></description><link>https://community.m5stack.com/topic/6910/can-we-use-gpio36-as-servo-control-pin</link><guid isPermaLink="true">https://community.m5stack.com/topic/6910/can-we-use-gpio36-as-servo-control-pin</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Sat, 19 Oct 2024 20:31:59 GMT</pubDate></item><item><title><![CDATA[Playing wav files in Fire, UIFlow v1.13.8. It works.]]></title><description><![CDATA[<p dir="auto">It took many hours to get WAV files playing, so I though I would share my findings here.</p>
<p dir="auto"><strong>First</strong> the UIFlow UI does not show a "play WAV file" not in the SDCard section, the Speaker section, nor in the DAC section.</p>
<p dir="auto"><strong>Second</strong></p>
<pre><code>from wav import wav_player
wav_player.playWav('/sd/myfile.wav')
</code></pre>
<p dir="auto">fails with an <code>I2S does not have MODE_MASTER</code> error.</p>
<p dir="auto"><strong>Third</strong></p>
<pre><code>import machine
dac0 = machine.DAC(25)
dac0.wavplay('/sd/myfile.wav')
</code></pre>
<p dir="auto">does not work either, no sound is produced.</p>
<p dir="auto">However the similar (according to <a href="https://github.com/m5stack/M5Stack_MicroPython/blob/master/MicroPython_BUILD/components/micropython/esp32/machine_dac.c" target="_blank" rel="noopener noreferrer nofollow ugc">the code</a>)</p>
<pre><code>from wav import wav
ww = wave.open('/sd/myfile.wav')
sample_rate = ww.getframerate()

# read all data, play in background
data = ww.readframes(ww.getnframes())
dac_buffer = array.array("B", data)
ret = dac0.write_buffer(dac_buffer, sample_rate, wait=False)
</code></pre>
<p dir="auto">works fine. <strong>Finally !</strong></p>
<p dir="auto">If the sound file is big you can also use</p>
<pre><code>while True:
  data = ww.readframes(2048)
  if len(data) &gt; 0:
    dac_buffer = array.array("B", data)
    ret = dac0.write_buffer(dac_buffer, sample_rate, wait=True)
  else:
    break
</code></pre>
<p dir="auto">or similar (notice the difference in wait=False or True)</p>
<p dir="auto">I hope this helps future users.<br />
In the end <a href="https://github.com/m5stack/M5Stack_MicroPython/tree/master/MicroPython_BUILD/components/micropython/esp32" target="_blank" rel="noopener noreferrer nofollow ugc">digging into the code of what M5Stack provides</a> or not has been the best way to understand how to make the best out of the codebase.</p>
<p dir="auto">(could not use UIFlow 2 due to <a href="https://community.m5stack.com/topic/6887">SDCard issue</a>)</p>
]]></description><link>https://community.m5stack.com/topic/6893/playing-wav-files-in-fire-uiflow-v1-13-8-it-works</link><guid isPermaLink="true">https://community.m5stack.com/topic/6893/playing-wav-files-in-fire-uiflow-v1-13-8-it-works</guid><dc:creator><![CDATA[rodrigob]]></dc:creator><pubDate>Sun, 13 Oct 2024 22:49:48 GMT</pubDate></item><item><title><![CDATA[How to extract the current Flash and EEPROM data from M5Stack fire to Windows11 file ?]]></title><description><![CDATA[<p dir="auto">I noticed that Arduino IDE can output tge detail Information on ELF file etc. while compiling. I think this detail information will be very helpful for studing further about the binary content in the M5Stack Flash memory.<br />
Thank you everybody.</p>
]]></description><link>https://community.m5stack.com/topic/6865/how-to-extract-the-current-flash-and-eeprom-data-from-m5stack-fire-to-windows11-file</link><guid isPermaLink="true">https://community.m5stack.com/topic/6865/how-to-extract-the-current-flash-and-eeprom-data-from-m5stack-fire-to-windows11-file</guid><dc:creator><![CDATA[RuriObb]]></dc:creator><pubDate>Fri, 04 Oct 2024 22:56:26 GMT</pubDate></item><item><title><![CDATA[Fire with UIFlow2]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/145007">@a-wussow</a> Glad to see you got it working again.</p>
]]></description><link>https://community.m5stack.com/topic/6685/fire-with-uiflow2</link><guid isPermaLink="true">https://community.m5stack.com/topic/6685/fire-with-uiflow2</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Wed, 07 Aug 2024 19:21:07 GMT</pubDate></item><item><title><![CDATA[M5Stack Fire Buttons is not working.]]></title><description><![CDATA[<p dir="auto">Hello <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/82961">@poyrazturkoglu</a></p>
<p dir="auto">please have a look at the button example <a href="https://github.com/m5stack/M5Stack/blob/master/examples/Basics/Button/Button.ino" target="_blank" rel="noopener noreferrer nofollow ugc">here</a>.</p>
<p dir="auto">I think you are missing an M5.update() inside the loop().</p>
<p dir="auto">Thanks<br />
Felix</p>
]]></description><link>https://community.m5stack.com/topic/6064/m5stack-fire-buttons-is-not-working</link><guid isPermaLink="true">https://community.m5stack.com/topic/6064/m5stack-fire-buttons-is-not-working</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Wed, 07 Feb 2024 17:27:20 GMT</pubDate></item><item><title><![CDATA[How to restore shipped code on FIRE?]]></title><description><![CDATA[<p dir="auto">Factory shipped firmware is in M5Burner, code may be in the GITHUB repository.</p>
]]></description><link>https://community.m5stack.com/topic/6019/how-to-restore-shipped-code-on-fire</link><guid isPermaLink="true">https://community.m5stack.com/topic/6019/how-to-restore-shipped-code-on-fire</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Wed, 24 Jan 2024 22:12:18 GMT</pubDate></item><item><title><![CDATA[Extra juicy and question about USB type C charging.]]></title><description><![CDATA[<p dir="auto">Hello <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/9288">@ghettokon</a></p>
<p dir="auto">maybe related to the note at the bottom <a href="http://docs.m5stack.com/en/core/fire_v2.6" target="_blank" rel="noopener noreferrer nofollow ugc">here</a>?</p>
<p dir="auto">Note: 2018.2A PCB version of the device does not support C2C (TypeC to TypeC) connection and PD power supply.</p>
<p dir="auto">Thanks<br />
Felix</p>
]]></description><link>https://community.m5stack.com/topic/5680/extra-juicy-and-question-about-usb-type-c-charging</link><guid isPermaLink="true">https://community.m5stack.com/topic/5680/extra-juicy-and-question-about-usb-type-c-charging</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Thu, 28 Sep 2023 18:04:29 GMT</pubDate></item><item><title><![CDATA[Arduino using GROVE B as I2C]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/4037">@felmue</a></p>
<p dir="auto">BTW i forgot to mention that I also removed those nasty magnets  as they disturb the used magnetometer. The metal screws where also replaced with plastic made.</p>
]]></description><link>https://community.m5stack.com/topic/5657/arduino-using-grove-b-as-i2c</link><guid isPermaLink="true">https://community.m5stack.com/topic/5657/arduino-using-grove-b-as-i2c</guid><dc:creator><![CDATA[alpaka]]></dc:creator><pubDate>Wed, 20 Sep 2023 16:24:05 GMT</pubDate></item><item><title><![CDATA[Fire is dead ... how can this be solved ?]]></title><description><![CDATA[<p dir="auto">SOLUTION<br />
I found the solution:<br />
You need to follow these steps</p>

Remove all modules, leaving only the host
Then try to lower the baud rate when burning
If there are wires, you can short-circuit G0-GND before powering on the device and then power on again.0_1711007605157_432299571_430472252787300_1867478767739245481_n.jpg

]]></description><link>https://community.m5stack.com/topic/5244/fire-is-dead-how-can-this-be-solved</link><guid isPermaLink="true">https://community.m5stack.com/topic/5244/fire-is-dead-how-can-this-be-solved</guid><dc:creator><![CDATA[mylesdebaerdemaeker]]></dc:creator><pubDate>Sun, 23 Apr 2023 14:34:11 GMT</pubDate></item><item><title><![CDATA[m5burner &quot;Get configurations failed&quot;, unable to update]]></title><description><![CDATA[<p dir="auto">FIXED:</p>
<p dir="auto">My mistake was assuming the "Configurations" button was essential. If I ignore than and click "Burn" everything is fine.</p>
]]></description><link>https://community.m5stack.com/topic/4976/m5burner-get-configurations-failed-unable-to-update</link><guid isPermaLink="true">https://community.m5stack.com/topic/4976/m5burner-get-configurations-failed-unable-to-update</guid><dc:creator><![CDATA[Mike Wilson]]></dc:creator><pubDate>Thu, 12 Jan 2023 14:54:39 GMT</pubDate></item><item><title><![CDATA[how to display image with IP&#x2F;api address]]></title><description><![CDATA[<p dir="auto">I have a link which is <a href="http://10.100.113.167:8123/api/" target="_blank" rel="noopener noreferrer nofollow ugc">http://10.100.113.167:8123/api/</a></p>
<p dir="auto">How do I display it on the M5 stack with its display.</p>
<p dir="auto">Happy to discuss more here</p>
]]></description><link>https://community.m5stack.com/topic/5006/how-to-display-image-with-ip-api-address</link><guid isPermaLink="true">https://community.m5stack.com/topic/5006/how-to-display-image-with-ip-api-address</guid><dc:creator><![CDATA[ofhowc]]></dc:creator><pubDate>Wed, 04 Jan 2023 07:04:25 GMT</pubDate></item><item><title><![CDATA[Fire getBatteryLevel()]]></title><description><![CDATA[<p dir="auto">Hello <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/21132">@Veto6017</a></p>
<p dir="auto">hmm, with an M5Stack Fire (HW: 2018.2A) running your code I get "Power canControl OK".</p>
<p dir="auto">Have you tried to run I2C_Tester.ino? The I2C scan finds 0x10 (BMM150), 0x68 (MPU6886) and 0x75 (IP5306).</p>
<p dir="auto">Thanks<br />
Felix</p>
]]></description><link>https://community.m5stack.com/topic/4789/fire-getbatterylevel</link><guid isPermaLink="true">https://community.m5stack.com/topic/4789/fire-getbatterylevel</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Wed, 09 Nov 2022 20:03:07 GMT</pubDate></item><item><title><![CDATA[Error in access SD card]]></title><description><![CDATA[<p dir="auto">Edit:<br />
is there any limit in size for the SD cards ?<br />
if so, what is it ?</p>
<p dir="auto">Best regards,<br />
C.A.</p>
]]></description><link>https://community.m5stack.com/topic/4709/error-in-access-sd-card</link><guid isPermaLink="true">https://community.m5stack.com/topic/4709/error-in-access-sd-card</guid><dc:creator><![CDATA[CA_HeArc]]></dc:creator><pubDate>Sat, 15 Oct 2022 12:59:08 GMT</pubDate></item><item><title><![CDATA[Serial Coms issue with jetson nano]]></title><description><![CDATA[<p dir="auto">I would like to use some servos based on the object detection coordinates coming from jetson nano through USB.<br />
Somehow coordinates are being updated later and later as the time passes.<br />
I have added the simple test code.(<img src="/assets/uploads/files/1659110199807-capture-resized.png" alt="0_1659110197835_Capture.PNG" class=" img-fluid img-markdown" /> image url)</p>
]]></description><link>https://community.m5stack.com/topic/4479/serial-coms-issue-with-jetson-nano</link><guid isPermaLink="true">https://community.m5stack.com/topic/4479/serial-coms-issue-with-jetson-nano</guid><dc:creator><![CDATA[hetzer]]></dc:creator><pubDate>Fri, 29 Jul 2022 15:57:06 GMT</pubDate></item><item><title><![CDATA[M5Stack Fire Turning Off After A Few Seconds]]></title><description><![CDATA[<p dir="auto">Hello <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/21196">@codewitch</a></p>

have you tried keeping it plugged in for a while to charge the battery?
have you tried to run it w/o battery, e.g. with the M5GO bottom removed?

<p dir="auto">Thanks<br />
Felix</p>
]]></description><link>https://community.m5stack.com/topic/4348/m5stack-fire-turning-off-after-a-few-seconds</link><guid isPermaLink="true">https://community.m5stack.com/topic/4348/m5stack-fire-turning-off-after-a-few-seconds</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Tue, 07 Jun 2022 07:11:48 GMT</pubDate></item><item><title><![CDATA[Speaker Buzzing and Popping]]></title><description><![CDATA[<p dir="auto">When the Core is idle on the API key screen the speaker is popping and buzzing, and when I run a program it just buzzes indefinitely. And every time on startup, or when I press a button there is a loud pop. Is that a problem?</p>
]]></description><link>https://community.m5stack.com/topic/4326/speaker-buzzing-and-popping</link><guid isPermaLink="true">https://community.m5stack.com/topic/4326/speaker-buzzing-and-popping</guid><dc:creator><![CDATA[HWTaro9]]></dc:creator><pubDate>Fri, 27 May 2022 20:13:08 GMT</pubDate></item></channel></rss>