Navigation

    M5Stack Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Popular
    • All categories
    • Official Updates
    • Events
    •      Review
    •      Campaign
    • Features Wish List
    • General
    •      Anouncements
    •      Forum Rules (!!!!READ THIS FIRST BEFORE POSTING!!!!)
    •      News and Blog posts
    • PRODUCTS
    •      Modules
    •      Units
    •      FAQS
    •      Cores
    •          Core2 for AWS
    •          M5Stack Fire
    •          M5stack Grey
    •          M5 Stick/StickC
    •          M5GO
    •          FACES Kit
    •          M5Stick V
    •          Core 2
    •      Bases
    •      Atom
    • PROJECTS
    • SOFTWARE
    •      UIFlow
    •          Lessons and Guides
    •          Bug Report
    •          Custom Blocks
    •      Arduino
    •          Lessons and Guides
    •      Micropython
    •          Lessons and Guides
    •      M5EZ
    •      ESP - IDF
    • Global Communities
    •      Русскоязычный форум
    •      Foro español
    •      Deutsches Forum
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All Time
    • Day
    • Week
    • Month

    • C

      Fire - Core2 and module Lora
      Modules • • Carles B.

      8
      0
      Votes
      8
      Posts
      147
      Views

      Hello @Carles-B yeah, I cannot say for sure if the LoRa module would actually fit as I don't have one to try. Good luck with your experiments and thank you very much for your donation. I appreciate it. Thanks Felix
    • B

      Separate firmware from M5burner
      UIFlow • • BricoMS

      6
      0
      Votes
      6
      Posts
      144
      Views

      @world101 It doesn't run on one of our students Windows 10 32bit machine
    • P

      Core2 BtnA, BtnB and BtnC not working with m5button library
      Core 2 • • Pensive

      5
      0
      Votes
      5
      Posts
      76
      Views

      P

      thanks for the help @felmue - ive got it working now - i think i must have been pretty tired because I have no idea how all 3 attempts failed. It works with .waspressed and by attaching a handler to events for the M5.BtnA - I have no idea what I was doing wrong all 3 times. I found one issue - it was a silly mistake in my handler logic :D but this does not explain .ispressed not working before. Maybe its something to do with a lack of sensitiviity as well - but the important thing is - they do work and I've got it working. But trying to make a button bigger all the way down to 280 does not seem to work - which is a shame becasue I have to make 2 declarations to the handler. but thats ok. Thank you
    • W

      M5Stick-C-Plus LCD-Driver
      Micropython • • Wolli01

      4
      0
      Votes
      4
      Posts
      58
      Views

      B

      What they could possibly do is release a uiflow free firmware version where the modules would be frozen and you could access them directly. But in this case, anyone here could do it, by taking the micropython vanilla and freezing the C drivers in it. Like the Lobo version. But we are ignorant and lazy.
    • S

      Difference between Lora Module and COM.LoraWan
      Modules • • SinZapatillas

      4
      0
      Votes
      4
      Posts
      73
      Views

      C

      @sinzapatillas If you do not want to view the data on your computer or mobile phone, none of the data will be displayed on your computer or mobile phone. Regards Carles
    • F

      Atom Lite with Earth sensor powered by Tailbat
      Atom • • findmyname

      4
      0
      Votes
      4
      Posts
      62
      Views

      F

      Hi @Felix , First of all thanks for amazing write up. Automatic load detection time | TloadD | The load current is continuously less than 45mA | 32s Oh no that is a bad news for me :) this is kind of important info - I would expect that this is mentioned on m5stack page. However with the M5Atom TailBat battery of 190mAh that still only gives about 17 hours of operation. Really nice test thanks. What is your procedure to measure power consumption? Do you know what is appropriate HW to power on Atom L. for weeks, months on battery ? Thx
    • B

      Can't upload with esptool.py to M5Atom on macOS Big Sur
      SOFTWARE • • blackketter

      4
      0
      Votes
      4
      Posts
      79
      Views

      B

      Thanks for the suggestion, @felmue, but I figured out the problem! The default baud rate of 460800 is too fast for this device. If I specify --baud 115200 (in platformio.ini, that would be upload_speed = 115200) it works. Maybe this will be useful to someone else in the future.
    • L

      How to control the speed of 180 degree steering gear in uiflow
      Global Communities • • Lvdada

      3
      0
      Votes
      3
      Posts
      77
      Views

      L

      谢谢
    • F

      [M5Paper] Ideas/recommendations for a revision or V2 model
      Features Wish List • m5paper • • fonix232

      3
      2
      Votes
      3
      Posts
      88
      Views

      B

      Hello, Instead of ESP32-S3, an ESP32-S2-FN4R2 allows flash and PSRAM to be integrated https://www.youtube.com/watch?v=iW3xD7Eo5Gw Flash equal to M5stack, SDRAM larger than M5stack. This allows to release pins to control the eInk with the 74HC4094D, 8-stage shift-and-store bus register, used as IO extander in the LilyGO T5 4.7 Bill of materials : Sorry, comments are in french, my native language .... Touch connector : Schematic : https://github.com/Xinyuan-LilyGO/LilyGo-EPD47/blob/master/schematic/LilyGo-EPD47.pdf SYL
    • G

      M5Paper UI Framework Sample Project
      PROJECTS • • grundprinzip

      3
      1
      Votes
      3
      Posts
      141
      Views

      G

      @fonix232 Thanks! For me the exercise is much more exploring how the epaper display works when drawing the different components and how to optimize partial updates. I will have a look at the projects you mentioned and see if I can find some inspiration!
    • A

      COLOR_TCS3472 on Atom Lite cannot find sensor
      PRODUCTS • • Alban_T

      2
      0
      Votes
      2
      Posts
      34
      Views

      Hello @Alban_T the sketch you linked is for M5Stack devices. M5Atom Lite is a bit different. For instance: I assume you modified #include <M5Stack.h> to #include <M5Atom.h>. did you also adapt the M5.begin() call to enable I2C? E.g. M5.begin(true, true, true) - the second true enables I2C on Atom Lite. is your sensor connected to the proper GPIOs? E.g. SDL - GPIO25 and SCL - GPIO21. excerpt from M5Atom.cpp as reference: void M5Atom::begin(bool SerialEnable , bool I2CEnable , bool DisplayEnable ) { if( _isInited ) return; _isInited = true; if( I2CEnable ) { Wire.begin(25,21,10000); } Hope this helps. If not, feel free to post the full sketch. Good luck. Felix
    • T

      About power supply of M5stack
      FAQS • • takero

      2
      0
      Votes
      2
      Posts
      52
      Views

      Please strictly follow the power supply voltage specifications we use. 5V
    • need help converting text to int (CORE2)
      UIFlow • • Arno

      2
      0
      Votes
      2
      Posts
      58
      Views

      T

      X = int("x")
    • Version of M5Burner to run on 32bit Win10 systems
      Bug Report • • jimwsmith

      2
      1
      Votes
      2
      Posts
      61
      Views

      @m5stack please help
    • The Max value of the slider cannot be modified !
      Bug Report • • Arno

      2
      0
      Votes
      2
      Posts
      46
      Views

      K

      Can you flip to the code side and modify it right before you upload it to the controller? I know this is a bug report, but that might be a good work around till they can fix it.
    • G

      M5Paper Canvas Rendering Artifacts
      PRODUCTS • • grundprinzip

      2
      0
      Votes
      2
      Posts
      78
      Views

      M

      My question is, if the behavior is required or an artifact of the integration with the driver? I think this is required. When actually transferring data to the screen, this is done 4 pixels at a time. Shouldn't the library simply forbid creating a canvas that is not a multiple of 4? Probably, yes.
    • J

      Alguien sabe como identificar de forma clara los pines del M5Stack Basic??
      Foro español • • joja

      2
      0
      Votes
      2
      Posts
      43
      Views

      C

      @joja En este link puedes ver la comparativa de los pines entre el Stack y el Core2, gentileza de @felmue Saludos Carles
    • B

      1.7.2 uiflow menu speed (core2)
      Bug Report • • BricoMS

      2
      0
      Votes
      2
      Posts
      51
      Views

      B

      Adding investigation, this seems to happen only if you upload to the core2 an empty project.
    • U

      Using the Set Bit Block
      UIFlow • • uppermill

      1
      0
      Votes
      1
      Posts
      14
      Views

      No one has replied

    • D

      UnitV do not read QRCode
      Units • • Dario

      1
      0
      Votes
      1
      Posts
      28
      Views

      No one has replied