@world101 wonderfull my friend ! You saved my work and ly nerfs lol. It works.
Latest posts made by nash68
-
RE: m5f file not loading anymore
-
m5f file not loading anymore
Hi,
I was running since june a little program on my M5stick. Today I wan't to modify it, but is impossible to open the file in workflow UI.... When I look inside the m5f with a notepad it seems that more or less everything is here... but impossible to make the stuff working again.
If anyone could help me to recover my code it would be great !
Here is a link to the file :https://drive.google.com/file/d/1PFBu4VAHuXbSenaFG8Kt-Ia4xEs2p3xA/view?usp=sharing
-
RE: uiflow v1.3.2 (stable) ntp_sync and strftime are missing
Any plan for integration ?
-
uiflow v1.3.2 (stable) ntp_sync and strftime are missing
Hi,
with the new version, it seems that command line :
rtc.ntp_sync(server="cn.ntp.org.cn", tz="CET-7CEST")
gives now an error :
AttributeError: 'RTC' object has no attribute 'ntp_sync'And strftiime command :
d = time.strftime("%Y-%m-%d", time.localtime())
gives also an error :
AttributeError: 'module' object has no attribute 'strftime'Something has changed or something is missing ?
Yours. -
RE: uiflow v1.3.2 (stable) Bug on block "change i by 1"
Hi,
The code generated is ok now. We have :
i = (i if isinstance(i, int) else 0) + 1Thanks.
-
uiflow v1.3.2 (stable) Bug on block "change i by 1"
Hi folks,
I am very happy to see a new version, but there is a bug.
When I try to use the block "change i by 1" I have an Error : name 'Number' isn't defined.
The python code that is generated looks like : i = (i if isinstance(i, Number) else 0) + 1Is it possible to fix that ?
yours.