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

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

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

export const LTST_C190KGKT = (props: LedProps) => {
  const { name = "LED1", ...restProps } = props

  return (
    <led
      name={name}
      pinLabels={pinLabels}
      supplierPartNumbers={{
  "jlcpcb": [
    "C125094"
  ]
}}
      manufacturerPartNumber="LTST_C190KGKT"
      footprint="res_p1.498mm_pw0.8mm_ph0.8mm"
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C125094.obj?uuid=3c2caa1a3e7d4a5a87f46b87d898ef41",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C125094.step?uuid=3c2caa1a3e7d4a5a87f46b87d898ef41",
        pcbRotationOffset: 0,
        modelOriginPosition: { x: -0.000012700000070253736, y: 0.000012699999956566899, z: -0.01 },
      }}
      {...restProps}
    />
  )
}