So has anyone managed to make this work? Can't seem to put in mqtt mode, even though the configuration is correct.
Posts made by LastCaress
-
Atom Printer mqtt
-
RE: To switch off the M5Stick from code
Was this solved? Also looking for power off in m5stick. Thank you.
-
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.
-
RE: M5stack PM2.5 Particle Sensor
It's a pretty cool device though, I made an x-ray
-
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?
-
RE: How do I concat strings in ui flow
Doesn't this work?
In micropython it would be the same as python : stringA + stringB
-
RE: What is inside m5stack?
Maybe gimp isn't good for dicom? Have you tried radiant?
-
RE: What is inside m5stack?
I can share the .dicom images (medical images), that you can open with software like RadiAnt (free)
-
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!
-
What is inside m5stack?
Here you go :
(black version)
(grey version)
(lorawan)
(relay module)
-
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:
and it is working now. Did you update the flow?
-
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.
-
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 -
RE: [Solved]M5stack core not recognizing Button Unit correctly
Black works with port B:
-
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 ?
-
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.
-
[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.2from m5stack import *
from m5ui import *
import unitsclear_bg(0x222222)
btn0 = units.get(units.button,units.PORTB)
a = 1title1 = M5Title(title="Title", fgcolor=0xFFFFFF, bgcolor=0x0000FF)
def btn0_pressed():
global a
a = a +1
title1 = M5Title(title=str(a), fgcolor=0xFFFFFF, bgcolor=0x0000FF)
passwhile True:
btn0.wasPressed(callback=btn0_pressed)