0hmX/robocraze-ov7670-camera-module-clone

This code defines and generates a 4-layer PCB hardware layout featuring an OV7670 VGA camera sensor module with fixed component placement, power regulation using ME6211 voltage regulators, a 2x9 header interface, and associated signal routing and mechanical footprints, designed for manufacturing and assembly.

Version
1.0.7
License
MIT
Stars
0

components/RobocrazeOV7670Module.tsx

import type { ChipProps } from "@tscircuit/props"
import { RobocrazeOV7670ModuleHostFootprint } from "../footprints/RobocrazeOV7670ModuleHostFootprint"
import { ov7670ModulePinLabels } from "./OV7670ModuleHeader"

/** Complete module wrapper for placing this finished board on a host PCB. */
export const RobocrazeOV7670Module = (
  props: ChipProps<typeof ov7670ModulePinLabels>,
) => (
  <connector
    {...props}
    pinCount={18}
    pinLabels={ov7670ModulePinLabels}
    manufacturerPartNumber="ROBOCRAZE-OV7670-2X9"
    footprint={<RobocrazeOV7670ModuleHostFootprint />}
    doNotPlace
  />
)