androidalekra / ESP32CAM_OPENMV

61 stars 22 forks source link

Can't get openmv serial port and folder after burnt openmv code on ESP32-CAM #1

Open leoncntx opened 2 years ago

leoncntx commented 2 years ago

Hi androidalekra,

We have successfully using esptool to erase and burnt the 3 bins code which is according to your attached file and assign address, But we can't get any openmv serial port and folder since we connect the ESP32-CAM b'd to OPENMV IDE system of PC via usb cable.

Any advise please?

Thanks, Leon

androidalekra commented 2 years ago

This is just a fork https://github.com/tenpa1105/M5Camera_OpenMV for esp32cam. The original OPENMW is on STM32, which have USB but not WIFI like ESP32.(https://openmv.io/) ESP32CAM with OPENMW IDE does not work.

example basic control:


import image,camera camera.init(0, format=camera.GRAYSCALE, framesize=camera.FRAME_QVGA)

while True: img = camera.capture() res = img.find_qrcodes() if len(res) > 0: print(res[0].payload())


IMAGE documentation https://wiki.sipeed.com/soft/maixpy/en/api_reference/machine_vision/image/image.html CAMERA documentation https://github.com/lemariva/micropython-camera-driver