arnavk-09/climate-sensor-node

A power management and connectivity module featuring a USB-C port, a low-noise voltage regulator, a Wi-Fi/Bluetooth microcontroller (ESP32-C3-MINI), temperature/humidity sensor (SHT40), status LED, reset and mode pushbuttons, and associated passive components integrated onto a multilayer PCB with test points, vias, and custom silkscreen artwork.

Version
1.1.0
License
unset
Stars
1

imports/AP2112K_3_3TRG1.tsx

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

const pinLabels = {
  pin1: ["VIN"],
  pin2: ["GND"],
  pin3: ["EN"],
  pin4: ["NC"],
  pin5: ["VOUT"]
} as const

export const AP2112K_3_3TRG1 = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip
      pinLabels={pinLabels}
      supplierPartNumbers={{
  "jlcpcb": [
    "C51118"
  ]
}}
      manufacturerPartNumber="AP2112K_3_3TRG1"
      footprint="sot23_5"
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C51118.obj?uuid=6d166d1d6c064b99aa79465714e989c1",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C51118.step?uuid=6d166d1d6c064b99aa79465714e989c1",
        pcbRotationOffset: 0,
        modelOriginPosition: { x: -0.000012700000070253736, y: 0, z: -0.15 },
      }}
      {...props}
    />
  )
}