OpenMV

From Noisebridge
Jump to navigation Jump to search

Getting to blinky[edit]

  1. Connect USB to Power Source

That's it, you are done. If you should be seeing a blue blinky


mod blinky[edit]

Blink briefly with the red LED. This make it look like a cheap security camera.

import pyb, time
led = pyb.LED(1)
usb = pyb.USB_VCP()
while (usb.isconnected()==False):
   led.on()
   time.sleep(2)
   led.off()
   time.sleep(800)


main.py[edit]

You can edit the main python code by editing the main.py file that is accessible as a USB storage device when connected via USB.


REPL[edit]

Interactive coding can be done using the REPL. This is accessible via the USB as a serial interface.


hardware tricks[edit]

The device can be reset by shorting the RST ping to ground.