seveibar/minimal-rp2040

This design features a Raspberry Pi RP2040 microcontroller with integrated decoupling capacitors, QSPI flash memory, crystal oscillator, and USB power circuitry, all mounted on a 65mm by 60mm four-layer PCB.

Usage: To import and use the RP2040 component in a tscircuit project: 1. Import the component: ```tsx import { RP2040 } from "@tsci/seveibar.minimal-rp2040" ``` 2. Use the component in a board: ```tsx <board> <RP2040 name="U3" pcbX={0} pcbY={0} connections={{ IOVDD1: "net.V3V3", // Add other required connections }} /> </board> ``` Key points: - Specify a name for the component - Set position using `pcbX` and `pcbY` - Define necessary network connections in the `connections` prop - Ensure proper power and ground connections

Version
1.0.1
License
unset
Stars
1

imports/ZX_QC66_7_5TP.tsx

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

const pinLabels = {
  pin1: ["pin1"],
  pin2: ["pin2"],
  pin3: ["pin3"],
  pin4: ["pin4"],
} as const

export const ZX_QC66_7_5TP = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip
      pinLabels={pinLabels}
      supplierPartNumbers={{
        jlcpcb: ["C7470157"],
      }}
      manufacturerPartNumber="ZX_QC66_7_5TP"
      footprint={
        <footprint>
          <smtpad
            portHints={["pin1"]}
            pcbX="-4.29996600000004mm"
            pcbY="2.2500589999999647mm"
            width="2.1999956mm"
            height="1.499997mm"
            shape="rect"
          />
          <smtpad
            portHints={["pin2"]}
            pcbX="4.299965999999927mm"
            pcbY="2.2500589999999647mm"
            width="2.1999956mm"
            height="1.499997mm"
            shape="rect"
          />
          <smtpad
            portHints={["pin3"]}
            pcbX="-4.29996600000004mm"
            pcbY="-2.2500590000000784mm"
            width="2.1999956mm"
            height="1.499997mm"
            shape="rect"
          />
          <smtpad
            portHints={["pin4"]}
            pcbX="4.299965999999927mm"
            pcbY="-2.2500590000000784mm"
            width="2.1999956mm"
            height="1.499997mm"
            shape="rect"
          />
          <silkscreenpath
            route={[
              { x: -2.999994000000129, y: 3.000044799999955 },
              { x: 2.999994000000015, y: 3.000044799999955 },
            ]}
          />
          <silkscreenpath
            route={[
              { x: -2.999994000000129, y: -2.9999431999999615 },
              { x: 2.999994000000015, y: -2.9999431999999615 },
            ]}
          />
          <silkscreenpath
            route={[
              { x: -2.999994000000129, y: 3.000044799999955 },
              { x: -2.999994000000129, y: -2.9999431999999615 },
            ]}
          />
          <silkscreenpath
            route={[
              { x: 2.999994000000015, y: 3.000044799999955 },
              { x: 2.999994000000015, y: -2.9999431999999615 },
            ]}
          />
        </footprint>
      }
      cadModel={{
        objUrl:
          "https://modelcdn.tscircuit.com/easyeda_models/download?uuid=0c5cbc362e9d41ae95f9f77f620e8890&pn=C7470157",
        rotationOffset: { x: 0, y: 0, z: 0 },
        positionOffset: { x: 0, y: 0.00005080000005364127, z: 0 },
      }}
      {...props}
    />
  )
}