pixalynx/esp32-gps-cellular-tracker

This code defines a hardware layout comprising a Wi-Fi-enabled ESP32 module, GPS module, cellular GSM module, battery management components (including charger, protection circuits, and voltage regulators), USB-C connector, SIM card holder, RF components, and supporting passive components for a comprehensive GPS+Cellular tracker device.

Version
1.1.0
License
unset
Stars
0

imports/ERR1AM102F12OT.tsx

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

export const ERR1AM102F12OT = (props: Omit<CapacitorProps, "capacitance">) => {
  const { name = "C1", ...restProps } = props

  return (
    <capacitor
      name={name}
      capacitance="1000uF"
      supplierPartNumbers={{
  "jlcpcb": [
    "C106613"
  ]
}}
      manufacturerPartNumber="ERR1AM102F12OT"
      footprint="pinrow2_nosquareplating_p3.5mm_od1.6mm"
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C106613.obj?uuid=5d8fef05026249fba67d921d4fb62a95",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C106613.step?uuid=5d8fef05026249fba67d921d4fb62a95",
        pcbRotationOffset: 180,
        modelOriginPosition: { x: 0, y: 0, z: -0.000006999999999646178 },
      }}
      {...restProps}
    />
  )
}