imrishabh18/fitness_watch
This circuit integrates an ESP-12E microcontroller with various sensors, relays, and power management components, including an AO3400A transistor for switching loads, to enable wireless control and sensing functions.
- Version
- 1.0.11
- License
- unset
- Stars
- 0
imports/HS91L02W2C01/HS91L02W2C01.tsx
import objPath from "./HS91L02W2C01.obj"
import stepPath from "./HS91L02W2C01.step"
import type { ChipProps } from "@tscircuit/props"
const pinLabels = {
pin1: ["GND"],
pin2: ["VCC"],
pin3: ["SCL"],
pin4: ["SDA"]
} as const
const pinAttributes = {
pin1: {requiresGround: true},
pin2: {requiresPower: true}
} as const
export const HS91L02W2C01 = (props: ChipProps<typeof pinLabels>) => {
return (
<chip
pinLabels={pinLabels}
pinAttributes={pinAttributes}
supplierPartNumbers={{
"jlcpcb": [
"C5248081"
]
}}
manufacturerPartNumber="HS91L02W2C01"
// Elevated display: header-only courtyard; verify spacer/enclosure height.
footprint={<footprint>
<platedhole portHints={["pin1"]} pcbX="0mm" pcbY="-3.81mm" outerDiameter="1.5999968mm" holeDiameter="0.999998mm" shape="circle" />
<platedhole portHints={["pin2"]} pcbX="0mm" pcbY="-1.27mm" outerDiameter="1.5999968mm" holeDiameter="0.999998mm" shape="circle" />
<platedhole portHints={["pin3"]} pcbX="0mm" pcbY="1.27mm" outerDiameter="1.5999968mm" holeDiameter="0.999998mm" shape="circle" />
<platedhole portHints={["pin4"]} pcbX="0mm" pcbY="3.81mm" outerDiameter="1.5999968mm" holeDiameter="0.999998mm" shape="circle" />
<silkscreenpath route={[{"x":-1.4999970000000076,"y":5.999987999999917},{"x":36.49992699999984,"y":5.999987999999917},{"x":36.49992699999984,"y":-5.999987999999917},{"x":-1.4999970000000076,"y":-5.999987999999917},{"x":-1.4999970000000076,"y":5.999987999999917}]} />
<silkscreentext text="1" pcbX="1.659128mm" pcbY="-5.6769mm" anchorAlignment="bottom_left" fontSize="2.032mm" />
<silkscreentext text="{NAME}" pcbX="17.5006mm" pcbY="6.9944mm" anchorAlignment="center" fontSize="1mm" />
<courtyardrect pcbX={0} pcbY={0} width="2.4mm" height="10.2mm" />
</footprint>}
cadModel={{
objUrl: objPath,
stepUrl: stepPath,
pcbRotationOffset: 0,
modelOriginPosition: { x: -17.499964999999975, y: 0, z: -0.01 },
}}
{...props}
/>
)
}