@matejtech said in Image+ problem:
I have a M5StickC Plus and I'm programming it in UIFlow. The problem is that the M5StickC Plus freezes when trying to retrieve the image. The image format is JPG.
Here is the code:
from m5stack import *
from m5ui import *
from uiflow import *
from libs.image_plus import *
from machine import WDTsetScreenColor(0x111111)
imageplus0 = M5ImagePlus(0, 0, url='PRIVATE IMAGE SENDING IP/mjpeg/1', timer=True, interval=500)
@timerSch.event('timer1')
def ttimer1():
global wdt
wdt.feed()
passtimerSch.run('timer1', 1000, 0x00)
wdt = WDT(timeout=2000)
Experiencing freezing issues on M5StickC Plus when retrieving a JPG image in UIFlow. Code includes WDT implementation. Seeking assistance for troubleshooting and resolution.