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/SS14L.tsx

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

const pinLabels = {
  pin1: ["cathode","neg"],
  pin2: ["anode","pos"]
} as const

export const SS14L = (props: DiodeProps) => {
  const { name = "D1", ...restProps } = props

  return (
    <diode
      name={name}
      pinLabels={pinLabels}
      supplierPartNumbers={{
  "jlcpcb": [
    "C190475"
  ]
}}
      manufacturerPartNumber="SS14L"
      footprint="smdpads2_p3.3mm_pw1mm_ph1.2mm"
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C190475.obj?uuid=c6882627c5f64d6e8dd3b5c64b2adb0a",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C190475.step?uuid=c6882627c5f64d6e8dd3b5c64b2adb0a",
        pcbRotationOffset: 0,
        modelOriginPosition: { x: -0.000012699999956566899, y: -0.007010400000012851, z: -0.21 },
      }}
      {...restProps}
    />
  )
}