Navigation

    M5Stack Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. LastCaress
    3. Posts
    L
    • Continue chat with LastCaress
    • Start new chat with LastCaress
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups

    Posts made by LastCaress

    • Atom Printer mqtt

      So has anyone managed to make this work? Can't seem to put in mqtt mode, even though the configuration is correct.

      posted in SOFTWARE
      L
      LastCaress
    • RE: To switch off the M5Stick from code

      Was this solved? Also looking for power off in m5stick. Thank you.

      posted in PRODUCTS
      L
      LastCaress
    • RE: BeetleC code?

      @ajb2k3 Thank you very much!!! :D :D

      posted in PRODUCTS
      L
      LastCaress
    • BeetleC code?

      Hi, I was trying to access BeetleC code - I can burn the m5stick directly with the code , but I'd like to have access to the code itself (the link gives me a 404), either in arduino IDE or micropython. Is this available somewhere? Thank you.

      posted in PRODUCTS
      L
      LastCaress
    • RE: M5stack PM2.5 Particle Sensor

      It's a pretty cool device though, I made an x-ray

      alt text

      posted in General
      L
      LastCaress
    • RE: M5stack PM2.5 Particle Sensor

      Ok, I will contact, thank you!

      posted in General
      L
      LastCaress
    • M5stack PM2.5 Particle Sensor

      So anyone's got this? I got one but the fan doesn't seem to move ever, is this normal? And the M5Core pedestal's USB-C port is covered by the sensor, was it supposed to be like this?

      posted in General
      L
      LastCaress
    • RE: How do I concat strings in ui flow

      Doesn't this work?

      alt text

      In micropython it would be the same as python : stringA + stringB

      posted in UIFlow
      L
      LastCaress
    • RE: What is inside m5stack?

      Maybe gimp isn't good for dicom? Have you tried radiant?

      posted in PROJECTS
      L
      LastCaress
    • RE: What is inside m5stack?

      Alright, I sent you some pictures!

      posted in PROJECTS
      L
      LastCaress
    • RE: What is inside m5stack?

      I can share the .dicom images (medical images), that you can open with software like RadiAnt (free)

      posted in PROJECTS
      L
      LastCaress
    • RE: What is inside m5stack?

      I have an x-ray machine and took these pictures. You can use all pictures :P If you want I can take pictures of more components!

      posted in PROJECTS
      L
      LastCaress
    • What is inside m5stack?

      Here you go :

      alt text

      (black version)

      alt text

      (grey version)

      alt text

      (lorawan)

      alt text

      (relay module)

      posted in PROJECTS
      L
      LastCaress
    • RE: [Solved]M5stack core not recognizing Button Unit correctly

      Simple test, 4 units, two grey, two black, using the same portB and button add on:

      alt text

      and it is working now. Did you update the flow?

      posted in Bug Report
      L
      LastCaress
    • RE: [Solved]M5stack core not recognizing Button Unit correctly

      Reading pin 36 on the black cores is not possible right now. Please fix, thank you.

      posted in Bug Report
      L
      LastCaress
    • RE: [Solved]M5stack core not recognizing Button Unit correctly

      When coding in grey : Wait for press of UNIT button, works, no problem
      When coding in black : Wait for press of UNIT button, doesn't work. If press button A, it thinks it was a press by UNIT button

      posted in Bug Report
      L
      LastCaress
    • RE: [Solved]M5stack core not recognizing Button Unit correctly

      Black works with port B:
      alt text

      posted in Bug Report
      L
      LastCaress
    • RE: [Solved]M5stack core not recognizing Button Unit correctly

      But it still recognizes the ButtonA as a unit press :| Also, can't I use the bottom with the Port B & C ?

      posted in Bug Report
      L
      LastCaress
    • RE: [Solved]M5stack core not recognizing Button Unit correctly

      Ok, this is a problem with the m5stack core (black). I tried in two different ones, and they had the same problem. Then I tried in two greys and they did not have the problem. Please fix this.

      posted in Bug Report
      L
      LastCaress
    • [Solved]M5stack core not recognizing Button Unit correctly

      I was using the button unit (Port B) and it doesn't do anything. A press of the "A BUTTON" is recognized instead of the button unit.
      I tried the same code in my m5stack gray and worked. Both are at v1.2.2

      from m5stack import *
      from m5ui import *
      import units

      clear_bg(0x222222)
      btn0 = units.get(units.button,units.PORTB)
      a = 1

      title1 = M5Title(title="Title", fgcolor=0xFFFFFF, bgcolor=0x0000FF)

      def btn0_pressed():
      global a
      a = a +1
      title1 = M5Title(title=str(a), fgcolor=0xFFFFFF, bgcolor=0x0000FF)
      pass

      while True:
      btn0.wasPressed(callback=btn0_pressed)

      posted in Bug Report
      L
      LastCaress