Yes, Kind of. But there is weird Behaviour.
I used the following simple block
![alt text](image url)
When I run the program using the play button on UIFlow, I get the text "Ok" printed on the LCD.
I get excited and I download the code into the Device, and I get to see the text " Not OK"
The Python Error I get is "list index out of range"
Here is my modified code
from m5stack import *
from m5ui import *
from uiflow import *
import urequests
setScreenColor(0x222222)
label0 = M5TextBox(40, 93, "Text", lcd.FONT_Default,0xFFFFFF, rotate=0)
try:
req = urequests.request(method='GET', url='https://api.thingspeak.com/apps/thinghttp/send_request?api_key=AAXWP1R39OHJW1U1', headers={'Content-Type':'text/html'})
lcd.print('ok', 0, 0, 0xffffff)
except Exception as e:
lcd.print('not ok', 0, 0, 0xffffff)
label0.setText(str(e))