@andyyuen nice job! It's very useful as a template for a more advanced project. Thank you!
U
			
			
			
		Posts made by ulver
- 
    RE: No M5Stack Controller required - A Native web UI for the M5Stack's LLM Module Kitposted in PROJECTS
- 
    RE: Please tell me how to use ApiYolo Class with images from coreS3's camera.posted in FAQSYou have to capture a jpeg from the camera buffer and pass it to the llm... An example could be: uint8_t* out_jpg = NULL; size_t out_jpg_len = 0; frame2jpg(CoreS3.Camera.fb, 255, &out_jpg, &out_jpg_len); CoreS3.Camera.free(); module_llm.yolo.inferenceAndWaitResult( yolo_work_id, out_jpg, out_jpg_len, [](String& result) { /* do something with result */ .... }, 2000, "ID"); free(out_jpg);the result will contain: {"bbox":["195.86","197.75","319.00","280.27"],"class":"keyboard","confidence":"0.69"}HTH