M5StickC + Issue: Cannot execute program after download
-
Hello,
I'm trying to execute a program which works fine in "live" mode.
Here is a proof:
https://imgur.com/hnCO0Zj
When i click "Download" in UIFlow, program goes to the m5 however when i click on the "Play" it does not execute.
Do you know what I'm doing wrong?
https://imgur.com/RtO18y2
-
We need to see your source code in order to help
-
Sure, here you go. I'm using the NCIR hat
from m5stack import * from m5ui import * from uiflow import * import hat import hat setScreenColor(0x000000) hat_ncir_0 = hat.get(hat.NCIR) label1 = M5TextBox(93, 58, "Text", lcd.FONT_DejaVu56, 0xFFFFFF, rotate=90) title0 = M5Title(title="Title", x=30, fgcolor=0xFFFFFF, bgcolor=0x0000FF) while True: title0.setTitle('Pool Temp') label1.setText(str(hat_ncir_0.temperature)) wait_ms(2)
-
I have rename the program and retried and eventually it worked! thanks