imrishabh18/pedometer

This code defines and assembles a simple radio receiver hardware circuit using specific imported capacitors, inductors, RF connectors, and oscillator components with precise footprints and schematic attributes.

Version
1.1.3
License
unset
Stars
0

imports/PCA9306DCTR.tsx

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

const pinLabels = {
  pin1: ["GND"],
  pin2: ["VREF1"],
  pin3: ["SCL1"],
  pin4: ["SDA1"],
  pin5: ["SDA2"],
  pin6: ["SCL2"],
  pin7: ["VREF2"],
  pin8: ["EN"]
} as const

export const PCA9306DCTR = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip
      pinLabels={pinLabels}
      supplierPartNumbers={{
  "jlcpcb": [
    "C123752"
  ]
}}
      manufacturerPartNumber="PCA9306DCTR"
      footprint={<footprint>
        <smtpad portHints={["pin1"]} pcbX="-0.975106mm" pcbY="-1.82499mm" width="0.3999992mm" height="1.1999976mm" radius="0.1999996mm" shape="pill" />
<smtpad portHints={["pin2"]} pcbX="-0.32512mm" pcbY="-1.82499mm" width="0.3999992mm" height="1.1999976mm" radius="0.1999996mm" shape="pill" />
<smtpad portHints={["pin3"]} pcbX="0.32512mm" pcbY="-1.82499mm" width="0.3999992mm" height="1.1999976mm" radius="0.1999996mm" shape="pill" />
<smtpad portHints={["pin4"]} pcbX="0.975106mm" pcbY="-1.82499mm" width="0.3999992mm" height="1.1999976mm" radius="0.1999996mm" shape="pill" />
<smtpad portHints={["pin5"]} pcbX="0.975106mm" pcbY="1.82499mm" width="0.3999992mm" height="1.1999976mm" radius="0.1999996mm" shape="pill" />
<smtpad portHints={["pin6"]} pcbX="0.32512mm" pcbY="1.82499mm" width="0.3999992mm" height="1.1999976mm" radius="0.1999996mm" shape="pill" />
<smtpad portHints={["pin7"]} pcbX="-0.32512mm" pcbY="1.82499mm" width="0.3999992mm" height="1.1999976mm" radius="0.1999996mm" shape="pill" />
<smtpad portHints={["pin8"]} pcbX="-0.975106mm" pcbY="1.82499mm" width="0.3999992mm" height="1.1999976mm" radius="0.1999996mm" shape="pill" />
<silkscreenpath route={[{"x":-1.4999969999998939,"y":0.999998000000005},{"x":1.4999970000000076,"y":0.999998000000005},{"x":1.4999970000000076,"y":-0.999998000000005},{"x":-1.4999969999998939,"y":-0.999998000000005}]} />
<silkscreenpath route={[{"x":-1.524000000000001,"y":0.2540000000000191},{"x":-1.524000000000001,"y":0.999998000000005}]} />
<silkscreenpath route={[{"x":-1.524000000000001,"y":-0.2540000000000191},{"x":-1.524000000000001,"y":-0.999998000000005}]} />
<silkscreenpath route={[{"x":-1.524000000000001,"y":-0.2540000000000191},{"x":-1.7036051224213224,"y":-0.17960512242132154},{"x":-1.77800000000002,"y":1.1368683772161603e-13},{"x":-1.7036051224213224,"y":0.17960512242143523},{"x":-1.524000000000001,"y":0.2540000000000191}]} />
<silkscreentext text="{NAME}" pcbX="-0.022606mm" pcbY="3.21361mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-1.8855059999998502,"y":2.4636100000001306},{"x":1.8402939999999717,"y":2.4636100000001306},{"x":1.8402939999999717,"y":-2.5321899999999005},{"x":-1.8855059999998502,"y":-2.5321899999999005},{"x":-1.8855059999998502,"y":2.4636100000001306}]} />
      </footprint>}
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C123752.obj?uuid=bee4b7926e004189b768540e59cf9ae2",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C123752.step?uuid=bee4b7926e004189b768540e59cf9ae2",
        pcbRotationOffset: 0,
        modelOriginPosition: { x: 0, y: -0.000012700000070253736, z: 0 },
      }}
      {...props}
    />
  )
}