🤖Have you ever tried Chat.M5Stack.com before asking??😎
  • Double buffer in m5stickC

    2
    0 Votes
    2 Posts
    7k Views
    M
    You need to look at using sprites to avoid the flickering / flashing when you blank the screen. Take a look at the example sprite projects to see how it's done. The M5.Lcd functions can be called on a sprite object, so bitmap drawing, text drawing etc can be done the same way. Clearing, and drawing the sprite happens off screen, and then is copied quickly to the screen with pushSprite() which avoids visible flashing. The examples provided show you how to do it all, but here's the basic process : create your sprite object TFT_eSprite tftSprite = TFT_eSprite(&M5.Lcd); create a sprite and give it the size tftSprite.createSprite(160, 80); clear the sprite tftSprite.fillSprite(WHITE); draw into the sprite tftSprite.drawBitmap(x, y, w, h,(uint16_t *)img, 0xffff); copy the sprite to the screen, and let it know where to draw it tftSprite.pushSprite(0, 0);
  • Max voltage of 5V Input

    1
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • M5StickC display scrolling

    1
    0 Votes
    1 Posts
    5k Views
    No one has replied
  • M5STICK OLED cant turn on

    12
    0 Votes
    12 Posts
    25k Views
    lukasmaximusL
    @ftoure hetzer was referring to the original M5Stick not the M5stickC. @hetzer did you manage to do what you wanted with it. I find it's better to work with original M5Stick as the M5stick didn't have much functionality in UIflow even when it was supported
  • M5stick C compiling issue

    4
    0 Votes
    4 Posts
    5k Views
    ajb2k3A
    @eternalgrace94 said in M5stick C compiling issue: Usually when press run, the code will upload and the device will run the program accordingly, but as of recent, I have to reboot the device so it will run the program Anyone knows a solution to this, or is this device damaged? I get this from time to time especially when im updating code several times in quick succession, and yeh, I just do a full restart. If you have issues connecting to the UIFlow Website it may be due to server load as there are alot of people trying to access the server.
  • 1 Votes
    1 Posts
    4k Views
    No one has replied
  • [solved] Getting Microphone to work on M5Stick

    11
    0 Votes
    11 Posts
    24k Views
    H
    What about on the m5stick c
  • M5Stick OLED

    4
    0 Votes
    4 Posts
    8k Views
    ajb2k3A
    @akelix said in M5Stick OLED: There is no Extendable Socket in new m5Stick oled module. Is there any plans to come it back? I use this port in my devices, and oled screen is very convenient form me. One groove port is not enough. It could not be powered only by usb-c port now. I'm making a video on how to bypass the power limitations of the socket to power items. so far this is the raw footage - https://www.youtube.com/watch?v=DDBk7ZcKED0
  • UI Flow loses connection to device after uploding demo example

    2
    0 Votes
    2 Posts
    3k Views
    OyczEO
    This is normal in ueflow. Turn it off. Hold right button then push power. Then when screen wake up release side button and push it again to force cloud. Other way is turn off Hold bug button under LCD and power it on. then by using right button in under the LCD you can navigate on lets say boot manu.
  • Error during connecting to WIFI

    4
    0 Votes
    4 Posts
    6k Views
    E
    Thanks! I had really a space in my WIFI name so i changed it and now it works fine!
  • 0 Votes
    4 Posts
    8k Views
    ajb2k3A
    @mchack widows does have issue but i'm worried that it could be connected to the heat issue.
  • 0 Votes
    2 Posts
    5k Views
    m5stackM
    @liemph yeah. most I2C Unit M5SticKC can use, you can in our github find some example about it. github link: https://github.com/m5stack/M5StickC/tree/master/examples/Unit
  • USB Mode

    3
    0 Votes
    3 Posts
    6k Views
    m5stackM
    you could follow this tutorial , then learn how to setup the usb mode https://docs.m5stack.com/#/en/uiflow/UIFlow_Desktop_IDE
  • SH200I test strange results

    8
    0 Votes
    8 Posts
    14k Views
    hagueH
    @salty_good Is there a calibration yet? Any update? Thanks
  • Serial2 on M5StickC

    5
    0 Votes
    5 Posts
    18k Views
    ajb2k3A
    @klimbot Sorry, not a user of arduino, I use micropython but yes, the rshat gives the clue. Pin 26, 0 is the communication port, 36 is the input.
  • M5StickC-BeetleC Observations

    4
    1 Votes
    4 Posts
    8k Views
    ajb2k3A
    @happy-hippo No issues taken mate. No Independent writer. I started writing my own documentation as a way to understand the products but its grown quite big now (209 pages just for UIFlow!) so I know the frustration.
  • StickC UiFlow displaying a jpg image from variable

    1
    0 Votes
    1 Posts
    4k Views
    No one has replied
  • M5StickC-Puppy Performance

    2
    0 Votes
    2 Posts
    5k Views
    lukasmaximusL
    Please email support@m5stack.com to get a replacement
  • M5StickC Yun

    2
    1
    0 Votes
    2 Posts
    6k Views
    lukasmaximusL
    Hi @Happy-Hippo It is true that the bmp280 and dht12 do tend to have their readings thrown off a little by the M5StickC's internal temperature, which was a bit of an oversight on M5Stack's part. Perhaps adding a layer of insulating material between the stick and the yun might solve it. I cant see how the atmospheric pressure should be so adversely affected though. I'd imagine going with an mqtt platform such as thingspeak or iftt would be the best way to get the weather data to your stick C but I haven't personally tried it. Great idea to pacify your wife, let's see if it works :p
  • Beginer question!

    2
    0 Votes
    2 Posts
    5k Views
    H
    @vogonjelc The Arudino libraries are quite easy to find. https://github.com/m5stack/M5StickC There are alot of examples on it. Here's a site with some projects: https://github.com/eggfly/M5StickCProjects