is the UIFlow2.0 desktop edition available now?
Best posts made by codeblue
-
RE: UiFlow 2.0 discuss(how-to, bug, feature request or sometings)
Latest posts made by codeblue
-
RE: what's the Pin for M5dial BtnA
@cognitive5525 said in what's the Pin for M5dial BtnA:
"Wake" on the front of the M5dial (the "main button" of the M5Dial I suppose) connected to the power-on circuit but routed via the "wake" signal to ESP-G42. (designated "S1" on the M5dial diagram.)
thanks. I think that's it , but I just curious , how you can tell the "S4" is routed to the G42? sorry I know nothing about the hardware. lol
-
what's the Pin for M5dial BtnA
Hi team,
I wanna use original Micropython firmware for M5dial, but I don't know the GPIO pin for the BtnA,Can someone helps?
Thanks,
Joey -
RE: How to access LCD directly in micro python and UIFlow 2
@ajb2k3 is is possible to use M5 libraries directly in naive micropython firmware?
-
RE: main.py been deleted for no reason
oh, looks like when I hold the btnA when booting, it will erase main.py and set boot_option to 1, how can I disable this, since I don't want my customers trigger this.
-
main.py been deleted for no reason
Hi Team,
My code was in main.py , and it does machine.reset() a lot, and after a few resets, the main.py disappears for no reason. And boot_option has been reset to 1, which was 2.
May I know why?
M5Dial uiflow2 alpha 29
-
RE: The image is not displayed
Nevermind, I get it work with this tool https://www.bytedig.com/web/image-resize
-
RE: The image is not displayed
Well, somehow I download a 240x240 image from google, and it works fine.
My images are converted from PNG files with ffmpeg command, any trick to make it work?
-
The image is not displayed
Hi Team,
I was trying to display image withWidgets.Image('res/img/demo.jpg', 0, 0)
demo.jpg is a 240x240 jpg file.the code runs without error, but no image is displayed as expected.
But with Widgets.Image('res/img/uiflow.jpg', 100, 100), I can see the built-in image.Any advice ?
Thanks,
Joey -
RE: Kernel crashed when rotate the M5dial encoder fast
@lbuque said in Kernel crashed when rotate the M5dial encoder fast:
setCallback
Thanks, will this be fixed in the future?
-
RE: Kernel crashed when rotate the M5dial encoder fast
@felmue 我如果不用类的写法, 而直接写方法,程序跑起来就没问题, 也不需要 gc.collect()
应该不是内存的问题, 因为崩溃的时候,或者报 TypeError: '' object isn't callable 的时候 hold0 还没输出, 说明还没进入btnA_wasHold_event函数, 有可能是btnA 设置回调的时候, 不能设置 self.xxxx 这样的对象函数?