tscircuit/sparkfun-boards

This code defines a detailed PCB schematic and physical footprint layout for various embedded hardware modules, mapping electrical pins, mechanical mounting holes, and silk-screen annotations for manufacturing and assembly.

Version
0.0.32
License
unset
Stars
3

boards/SparkFun-Qwiic-ToF-Imager-VL53L5CX/VL53L5CX.tsx

import type { ChipProps } from "@tscircuit/props"

const pinLabels = {
  pin1: ["AUDD"],
  pin2: ["IOUDD"],
  pin3: ["RSUD6"],
  pin4: ["GND"],
  pin5: ["I2C_RST"],
  pin6: ["N_LP"],
  pin7: ["INT"],
  pin8: ["SCL"],
  pin9: ["SDA"],
} as const

export const VL53L5CX = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip pinLabels={pinLabels} manufacturerPartNumber="VL53L5CX" {...props} />
  )
}