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

import objPath from "./LCM1027A2445F.obj"
import stepPath from "./LCM1027A2445F.step"
import type { ChipProps } from "@tscircuit/props"

const pinLabels = {
  pin1: ["_NEG"],
  pin2: ["_POS"]
} as const

export const LCM1027A2445F = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip
      pinLabels={pinLabels}
      pinAttributes={{pin1:{mustBeConnected:true},pin2:{requiresPower:true}}}
      symbol={
        <symbol>
          <port name="pin1" pinNumber={1} aliases={["_NEG"]} direction="right" schX={0.5} schY={-0.1} schStemLength={0.2} />
          <port name="pin2" pinNumber={2} aliases={["_POS"]} direction="right" schX={0.5} schY={0.1} schStemLength={0.2} />
          <schematiccircle center={{ x: 0, y: 0 }} radius={0.25} strokeWidth={0.02} color="#880000" />
          <schematicpath points={[{"x":0.3,"y":0.1},{"x":0.3,"y":-0.1},{"x":0.24,"y":-0.1}]} strokeColor="#880000" />
          <schematicpath points={[{"x":0.3,"y":0.1},{"x":0.24,"y":0.1}]} strokeColor="#880000" />
          <schematicpath points={[{"x":-0.1,"y":-0.1},{"x":-0.06,"y":0.12},{"x":0,"y":-0.1},{"x":0.06,"y":0.12},{"x":0.1,"y":-0.1}]} strokeColor="#880000" />
        </symbol>
      }
      supplierPartNumbers={{
  "jlcpcb": [
    "C2759984"
  ]
}}
      manufacturerPartNumber="LCM1027A2445F"
      footprint={<footprint>
        <platedhole  portHints={["pin1"]} pcbX="-0.635mm" pcbY="0mm" holeWidth="0.6096mm" holeHeight="1.5095982mm" outerWidth="0.8999982mm" outerHeight="1.7999964mm" shape="pill" />
<platedhole  portHints={["pin2"]} pcbX="0.635mm" pcbY="0mm" holeWidth="0.6096mm" holeHeight="1.5095982mm" outerWidth="0.8999982mm" outerHeight="1.7999964mm" shape="pill" />
<silkscreenrect pcbX="0mm" pcbY="0mm" width="2.54mm" height="2.3495mm" strokeWidth="0.151999696mm" />
<silkscreentext text="+" pcbX="0.254mm" pcbY="1.397mm" anchorAlignment="bottom_left" fontSize="2.032mm" />
<silkscreentext text="-" pcbX="-1.016mm" pcbY="1.397mm" anchorAlignment="bottom_left" fontSize="2.032mm" />
<silkscreentext text="{NAME}" pcbX="0mm" pcbY="3.3114mm" anchorAlignment="center" fontSize="1mm" />
<fabricationnotepath route={[{"x":1.1074399999999969,"y":1.9240500000000793},{"x":0.21843999999998687,"y":1.9240500000000793},{"x":0.21843999999998687,"y":1.797050000000013},{"x":0.9804400000000442,"y":1.797050000000013},{"x":1.1074399999999969,"y":1.797050000000013},{"x":1.1074399999999969,"y":1.9240500000000793}]} strokeWidth="0.254mm" />
<fabricationnotepath route={[{"x":0.5994400000000724,"y":2.305050000000051},{"x":0.5994400000000724,"y":1.416050000000041},{"x":0.7264400000000251,"y":1.416050000000041},{"x":0.7264400000000251,"y":2.1780499999999847},{"x":0.7264400000000251,"y":2.305050000000051},{"x":0.5994400000000724,"y":2.305050000000051}]} strokeWidth="0.254mm" />
<fabricationnotepath route={[{"x":-0.16255999999998494,"y":1.9240500000000793},{"x":-1.051559999999995,"y":1.9240500000000793},{"x":-1.051559999999995,"y":1.797050000000013},{"x":-0.28955999999993765,"y":1.797050000000013},{"x":-0.16255999999998494,"y":1.797050000000013},{"x":-0.16255999999998494,"y":1.9240500000000793}]} strokeWidth="0.254mm" />
<courtyardoutline outline={[{"x":-5.253799999999842,"y":2.5614000000000487},{"x":5.253800000000069,"y":2.5614000000000487},{"x":5.253800000000069,"y":-2.1549999999999727},{"x":-5.253799999999842,"y":-2.1549999999999727},{"x":-5.253799999999842,"y":2.5614000000000487}]} />
      </footprint>}
      cadModel={{
        objUrl: objPath,
        stepUrl: stepPath,
        pcbRotationOffset: 0,
        modelOriginPosition: { x: 0, y: 0.24499949999994441, z: -9.000003 },
      }}
      {...props}
    />
  )
}