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/SHT40_AD1B_R3.tsx
import type { ChipProps } from "@tscircuit/props"
const pinLabels = {
pin1: ["SDA"],
pin2: ["SCL"],
pin3: ["VDD"],
pin4: ["VSS"],
pin5: ["EP"]
} as const
export const SHT40_AD1B_R3 = (props: ChipProps<typeof pinLabels>) => {
return (
<chip
pinLabels={pinLabels}
supplierPartNumbers={{
"jlcpcb": [
"C2848306"
]
}}
manufacturerPartNumber="SHT40_AD1B_R3"
footprint={<footprint>
<smtpad portHints={["pin1"]} pcbX="-0.677418mm" pcbY="0.40005mm" width="0.5050028mm" height="0.419989mm" shape="rect" />
<smtpad portHints={["pin2"]} pcbX="-0.677418mm" pcbY="-0.40005mm" width="0.5050028mm" height="0.419989mm" shape="rect" />
<smtpad portHints={["pin3"]} pcbX="0.677418mm" pcbY="-0.40005mm" width="0.5050028mm" height="0.419989mm" shape="rect" />
<smtpad portHints={["pin4"]} pcbX="0.677418mm" pcbY="0.40005mm" width="0.5050028mm" height="0.419989mm" shape="rect" />
<smtpad portHints={["pin5"]} pcbX="0mm" pcbY="-0mm" width="0.3999992mm" height="1.0999978mm" shape="rect" />
<silkscreenpath route={[{"x":-0.8261857999999904,"y":0.8261857999999904},{"x":0.8262111999999888,"y":0.8261857999999904}]} />
<silkscreenpath route={[{"x":-0.8261857999999904,"y":-0.826211200000003},{"x":0.8262111999999888,"y":-0.826211200000003}]} />
<silkscreenpath route={[{"x":-0.9758679999999913,"y":0.7645399999999825},{"x":-0.9771489163381517,"y":0.754810474456491},{"x":-0.9809043730209339,"y":0.7457439999999878},{"x":-0.9868784418816432,"y":0.7379584418816307},{"x":-0.9946640000000002,"y":0.7319843730209215},{"x":-1.0037304744564892,"y":0.728228916338125},{"x":-1.0134600000000091,"y":0.726947999999993},{"x":-1.0231895255435006,"y":0.728228916338125},{"x":-1.032256000000018,"y":0.7319843730209215},{"x":-1.0400415581183609,"y":0.7379584418816307},{"x":-1.046015626979056,"y":0.7457439999999878},{"x":-1.0497710836618666,"y":0.754810474456491},{"x":-1.0510519999999985,"y":0.7645399999999825},{"x":-1.0497710836618666,"y":0.7742695255434882},{"x":-1.046015626979056,"y":0.7833359999999914},{"x":-1.0400415581183609,"y":0.7911215581183484},{"x":-1.032256000000018,"y":0.7970956269790577},{"x":-1.0231895255435006,"y":0.8008510836618399},{"x":-1.0134600000000091,"y":0.8021320000000003},{"x":-1.0037304744564892,"y":0.8008510836618399},{"x":-0.9946640000000002,"y":0.7970956269790577},{"x":-0.9868784418816432,"y":0.7911215581183484},{"x":-0.9809043730209339,"y":0.7833359999999914},{"x":-0.9771489163381517,"y":0.7742695255434882},{"x":-0.9758679999999913,"y":0.7645399999999825}]} />
<silkscreentext text="{NAME}" pcbX="-0.0508mm" pcbY="1.8382mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-1.29140000000001,"y":1.0882000000000005},{"x":1.189799999999991,"y":1.0882000000000005},{"x":1.189799999999991,"y":-1.06280000000001},{"x":-1.29140000000001,"y":-1.06280000000001},{"x":-1.29140000000001,"y":1.0882000000000005}]} />
</footprint>}
cadModel={{
objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C2848306.obj?uuid=09d63d3bb21a495aa100cde68133c9fa",
stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C2848306.step?uuid=09d63d3bb21a495aa100cde68133c9fa",
pcbRotationOffset: 0,
modelOriginPosition: { x: 0.000012700000013410317, y: -0.000012699999999199463, z: -0.01 },
}}
{...props}
/>
)
}