Here are the scripts. Both crash the camera and the IDE hard if I connect without pressing the switch and exiting the loop:
UART
```
import time
import math
time.sleep(5)
thresholds = [(0,20,-6,6,-6,6)] #Black
import sensor
sensor.reset()
sensor.set_pixformat(sensor.RGB565)
sensor.set_framesize(sensor.QVGA)
sensor.skip_frames(time=1000)
sensor.set_auto_gain(False) # must be turned off for color tracking
sensor.set_auto_whitebal(False) # must be turned off for color tracking
clock = time.clock()
# Start uart
import machine
import struct
sw = machine.Pin("SW", machine.Pin.IN)
u = machine.UART(1, 115200)
while True:
clock.tick()
img = sensor.snapshot()
blobs = img.find_blobs(
[thresholds[threshold_index]],
pixels_threshold=200,
area_threshold=200,
merge=True,
)
if len(blobs) > 0:
blob = blobs[-1]
# These values depend on the blob not being circular - otherwise they will be shaky.
if blob.elongation() > 0.5:
img.draw_edges(blob.min_corners(), color=(255, 0, 0))
img.draw_line(blob.major_axis_line(), color=(0, 255, 0))
img.draw_line(blob.minor_axis_line(), color=(0, 0, 255))
# These values are stable all the time.
img.draw_rectangle(blob.rect())
img.draw_cross(blob.cx(), blob.cy())
# Note - the blob rotation is unique to 0-180 only.
img.draw_keypoints(
[(blob.cx(), blob.cy(), int(math.degrees(blob.rotation())))], size=20
)
u.write("{} {}\n".format(blob.cx(), blob.cy()))
else:
u.write("00 00\n")
print(clock.fps())
if not sw.value():
break
I2C target
# This work is licensed under the MIT license.
# Copyright (c) 2013-2023 OpenMV LLC. All rights reserved.
# https://github.com/openmv/openmv/blob/master/LICENSE
#
# Single Color RGB565 Blob Tracking Example
#
# This example shows off single color RGB565 tracking using the OpenMV Cam.
import time
import math
from machine import Pin, I2CTarget, LED
led = LED("LED_BLUE")
sw = Pin("SW", Pin.IN)
print(sw.value())
threshold_index = 0 # 0 for red, 1 for green, 2 for blue
# Color Tracking Thresholds (L Min, L Max, A Min, A Max, B Min, B Max)
# The below thresholds track in general red/green/blue things. You may wish to tune them...
# thresholds = [
# (30, 100, 15, 127, 15, 127), # generic_red_thresholds
# (30, 100, -64, -8, -32, 32), # generic_green_thresholds
# (0, 30, 0, 64, -128, 0),
# ] # generic_blue_thresholds
thresholds = [(0,20,-6,6,-6,6)] #Black
import sensor
sensor.reset()
sensor.set_pixformat(sensor.RGB565)
sensor.set_framesize(sensor.QVGA)
sensor.set_windowing([0,sensor.height()//2,sensor.width(),sensor.height()])
sensor.skip_frames(time=1000)
sensor.set_auto_gain(False) # must be turned off for color tracking
sensor.set_auto_whitebal(False) # must be turned off for color tracking
clock = time.clock()
# Only blobs that with more pixels than "pixel_threshold" and more area than "area_threshold" are
# returned by "find_blobs" below. Change "pixels_threshold" and "area_threshold" if you change the
# camera resolution. "merge=True" merges all overlapping blobs in the image.
# Start i2c
import struct
# Initialiseer de buffer met een grootte van exact 4 bytes
buf = bytearray(4)
# Start de I2C Target (Slave) met de gevulde 4-byte buffer
target = I2CTarget(1, addr=42, mem=buf)
n = 0
while True:
n = (n + 1) % 60
if n == 0:
led.on()
if n == 30:
led.off()
clock.tick()
img = sensor.snapshot()
blobs = img.find_blobs(
[thresholds[threshold_index]],
pixels_threshold=200,
area_threshold=200,
merge=True,
)
if len(blobs) > 0:
blob = blobs[-1]
# These values depend on the blob not being circular - otherwise they will be shaky.
if blob.elongation() > 0.5:
img.draw_edges(blob.min_corners(), color=(255, 0, 0))
img.draw_line(blob.major_axis_line(), color=(0, 255, 0))
img.draw_line(blob.minor_axis_line(), color=(0, 0, 255))
# These values are stable all the time.
img.draw_rectangle(blob.rect())
img.draw_cross(blob.cx(), blob.cy())
# Note - the blob rotation is unique to 0-180 only.
img.draw_keypoints(
[(blob.cx(), blob.cy(), int(math.degrees(blob.rotation())))], size=20
)
struct.pack_into('<hh', buf, 0, blob.cx(), blob.cy())
else:
struct.pack_into('<hh', buf, 0, 0, 0)
print(clock.fps())
if not sw.value():
break