<?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[Topics tagged with core]]></title><description><![CDATA[A list of topics that have been tagged with core]]></description><link>https://community.m5stack.com/tags/core</link><generator>RSS for Node</generator><lastBuildDate>Wed, 29 Apr 2026 09:38:16 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/tags/core.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 03 Jun 2025 15:54:37 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Battery charging does not work on BASIC V2.7]]></title><description><![CDATA[@sgflux
I measured the voltage of the ‘5V pin’.
With the V2.4 I get 5 V,
with the V2.7 only 4.7V.
Could this be the reason why it only charges with a maximum of 150 to 200mA?
How can I increase the voltage output of the IP5306?
Is this possible via i2c?
]]></description><link>https://community.m5stack.com/topic/7596/battery-charging-does-not-work-on-basic-v2-7</link><guid isPermaLink="true">https://community.m5stack.com/topic/7596/battery-charging-does-not-work-on-basic-v2-7</guid><dc:creator><![CDATA[sgflux]]></dc:creator><pubDate>Tue, 03 Jun 2025 15:54:37 GMT</pubDate></item><item><title><![CDATA[LAN connection possible?]]></title><description><![CDATA[@kuriko Thanks, I will try it.
]]></description><link>https://community.m5stack.com/topic/7088/lan-connection-possible</link><guid isPermaLink="true">https://community.m5stack.com/topic/7088/lan-connection-possible</guid><dc:creator><![CDATA[the_hacker]]></dc:creator><pubDate>Thu, 12 Dec 2024 19:30:03 GMT</pubDate></item><item><title><![CDATA[Sleep  &#x2F; low  power on Paper V1.1 without clearing the display on Wake?]]></title><description><![CDATA[@ajb2k3 thanks so much for that insight. Do you have an implementation of HV write mode for the  Paper display in a different platform (UIflow etc)? Don't worry if not, because it seems that existing shutdown() is able to retain images according to @felmue's example.
]]></description><link>https://community.m5stack.com/topic/5806/sleep-low-power-on-paper-v1-1-without-clearing-the-display-on-wake</link><guid isPermaLink="true">https://community.m5stack.com/topic/5806/sleep-low-power-on-paper-v1-1-without-clearing-the-display-on-wake</guid><dc:creator><![CDATA[simonm]]></dc:creator><pubDate>Tue, 14 Nov 2023 01:06:00 GMT</pubDate></item><item><title><![CDATA[UiFlow 2.0 Firmware locks up my Core3]]></title><link>https://community.m5stack.com/topic/5515/uiflow-2-0-firmware-locks-up-my-core3</link><guid isPermaLink="true">https://community.m5stack.com/topic/5515/uiflow-2-0-firmware-locks-up-my-core3</guid><pubDate>Sun, 23 Jul 2023 19:43:31 GMT</pubDate></item><item><title><![CDATA[M5Stack Basic Core stopped working]]></title><link>https://community.m5stack.com/topic/4270/m5stack-basic-core-stopped-working</link><guid isPermaLink="true">https://community.m5stack.com/topic/4270/m5stack-basic-core-stopped-working</guid><pubDate>Thu, 05 May 2022 13:22:09 GMT</pubDate></item><item><title><![CDATA[M5Paper partial Update Canvas]]></title><description><![CDATA[As mentioned in the other thread, the missing step is transferring the canvas framebuffer to the EPD.
If your loop function is changed as below, it works as you expect.
void loop() {
  for (int i=1; i&lt;7; i++)
  {
    canvas1.drawString(testString[i],20,20);
    /* m5epd_err_t UpdateArea(uint16_t x, uint16_t y, uint16_t w, uint16_t h, m5epd_update_mode_t mode); */
    M5.EPD.WriteFullGram4bpp((uint8_t*)canvas1.frameBuffer());
    M5.EPD.UpdateArea(0,0,100,100,UPDATE_MODE_GL16);
    delay(1000);
  }
}

]]></description><link>https://community.m5stack.com/topic/2939/m5paper-partial-update-canvas</link><guid isPermaLink="true">https://community.m5stack.com/topic/2939/m5paper-partial-update-canvas</guid><dc:creator><![CDATA[murraypaul]]></dc:creator><pubDate>Thu, 11 Feb 2021 12:51:00 GMT</pubDate></item><item><title><![CDATA[M5Paper load font from sdcard]]></title><description><![CDATA[Hi @Powersoft please don't double post, and refer to my reply on your other post
]]></description><link>https://community.m5stack.com/topic/2724/m5paper-load-font-from-sdcard</link><guid isPermaLink="true">https://community.m5stack.com/topic/2724/m5paper-load-font-from-sdcard</guid><dc:creator><![CDATA[lukasmaximus]]></dc:creator><pubDate>Sun, 10 Jan 2021 13:01:30 GMT</pubDate></item><item><title><![CDATA[Battery status?]]></title><description><![CDATA[I've just started out but it looks like the following shows the voltage and mine maxed out at 4.178V, this gradually decreases and I think below 3.6V isn't really usable.  You can use this and some testing to determine the percentage of battery.
#include "M5StickCPlus.h"

TFT_eSprite Disbuff = TFT_eSprite(&amp;M5.Lcd);

void setup() {
    M5.begin();
    M5.Axp.ScreenBreath(8);
    M5.Lcd.setRotation(1);

    Disbuff.createSprite(240, 135);
    Disbuff.setTextColor(TFT_WHITE);
}

void loop() {
    Disbuff.fillRect(0, 0, 240, 135, TFT_BLACK);
    Disbuff.setCursor(10, 10);
    Disbuff.printf("BAT_V: %.3fV",M5.Axp.GetBatVoltage());
    Disbuff.pushSprite(0,0);
}

There are other options power functions that may help in this doc:
AXP192 (Power management)
Good luck.
]]></description><link>https://community.m5stack.com/topic/2359/battery-status</link><guid isPermaLink="true">https://community.m5stack.com/topic/2359/battery-status</guid><dc:creator><![CDATA[OnRed]]></dc:creator><pubDate>Tue, 13 Oct 2020 14:05:00 GMT</pubDate></item><item><title><![CDATA[External library]]></title><description><![CDATA[it's a library to control a sensor, I had already built my custom blocks that worked with that library, but when I updated everything I was unable to make it go.
so do I have to import the library into the / flash root?
and then?
]]></description><link>https://community.m5stack.com/topic/2025/external-library</link><guid isPermaLink="true">https://community.m5stack.com/topic/2025/external-library</guid><dc:creator><![CDATA[SamueleBrunini]]></dc:creator><pubDate>Tue, 09 Jun 2020 11:11:02 GMT</pubDate></item><item><title><![CDATA[M5Stick IMU Yaw Readings Off]]></title><description><![CDATA[I have achieved quite good results with the Seeed Studio Grove 3-Axis Digital Compass V2.
https://wiki.seeedstudio.com/Grove-3-Axis_Digitial_Compass_v2.0/
]]></description><link>https://community.m5stack.com/topic/1916/m5stick-imu-yaw-readings-off</link><guid isPermaLink="true">https://community.m5stack.com/topic/1916/m5stick-imu-yaw-readings-off</guid><dc:creator><![CDATA[hague]]></dc:creator><pubDate>Fri, 01 May 2020 08:46:13 GMT</pubDate></item></channel></rss>