techmannih/TPS22919
This code defines a 10x10mm electronic circuit board featuring a 1kΩ resistor (R1) and a 1000pF capacitor (C1) connected to each other, both using 0402 footprints.
- Version
- 0.0.1
- License
- unset
- Stars
- 0
TPS22919.tsx
// import type { ChipProps } from "tscircuit"
// export const pinLabels = {
// pin1: "IN",
// pin2: "ON",
// pin3: "GND",
// pin4: "QOD",
// pin5: "OUT",
// }
// export const TPS22919 = (props: ChipProps<typeof pinLabels>) => (
// <chip
// name="U1"
// manufacturerPartNumber="TPS22919"
// footprint="kicad:Package_TO_SOT_SMD/SOT-363_SC-70-6"
// pinLabels={{
// pin1: "IN",
// pin2: "ON",
// pin3: "GND",
// pin4: "QOD",
// pin5: "OUT",
// }}
// schPinArrangement={{
// leftSide: {
// direction: "top-to-bottom",
// pins: ["IN", "ON", "GND"],
// },
// rightSide: {
// direction: "top-to-bottom",
// pins: ["OUT", "QOD"],
// },
// }}
// schWidth="2mm"
// schHeight="3mm"
// schPinStyle={{
// IN: {
// marginTop: 0.1,
// },
// OUT: {
// marginTop: -0.6,
// },
// ON: {
// marginTop: 0.8,
// },
// GND: {
// marginTop: 0.8,
// },
// QOD: {
// marginTop: 1.1,
// },
// }}
// />
// )
// export default TPS22919
import type { ChipProps } from "@tscircuit/props"
const pinLabels = {
pin1: ["IN"],
pin2: ["GND"],
pin3: ["ON"],
pin4: ["NC"],
pin5: ["QOD"],
pin6: ["OUT"]
} as const
export const TPS22919 = (props: ChipProps<typeof pinLabels>) => {
return (
<chip
pinLabels={pinLabels}
supplierPartNumbers={{
"jlcpcb": [
"C2149796"
]
}}
manufacturerPartNumber="TPS22919DCKR"
footprint={<footprint>
<smtpad portHints={["pin6"]} pcbX="-0.94996mm" pcbY="-0.649986mm" width="0.5999988mm" height="0.419989mm" shape="rect" />
<smtpad portHints={["pin5"]} pcbX="-0.94996mm" pcbY="0mm" width="0.5999988mm" height="0.419989mm" shape="rect" />
<smtpad portHints={["pin4"]} pcbX="-0.94996mm" pcbY="0.649986mm" width="0.5999988mm" height="0.419989mm" shape="rect" />
<smtpad portHints={["pin3"]} pcbX="0.94996mm" pcbY="0.649986mm" width="0.5999988mm" height="0.419989mm" shape="rect" />
<smtpad portHints={["pin2"]} pcbX="0.94996mm" pcbY="0mm" width="0.5999988mm" height="0.419989mm" shape="rect" />
<smtpad portHints={["pin1"]} pcbX="0.94996mm" pcbY="-0.649986mm" width="0.5999988mm" height="0.419989mm" shape="rect" />
<silkscreenpath route={[{"x":-0.6999986000000007,"y":-1.099997799999997},{"x":0.6999986000000149,"y":-1.099997799999997}]} />
<silkscreenpath route={[{"x":-0.6999986000000007,"y":1.099997799999997},{"x":0.6999986000000149,"y":1.099997799999997}]} />
<silkscreenpath route={[{"x":1.0909300000000144,"y":-1.0942066000000068},{"x":0.9672082130372104,"y":-0.9685846439124361},{"x":1.0922000000000054,"y":-0.844226252107191},{"x":1.2171917869628146,"y":-0.9685846439124361},{"x":1.0934700000000106,"y":-1.0942066000000068}]} />
<silkscreentext text="{NAME}" pcbX="0.101346mm" pcbY="2.1049mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-1.5075539999999847,"y":1.3549000000000007},{"x":1.710245999999998,"y":1.3549000000000007},{"x":1.710245999999998,"y":-1.583500000000015},{"x":-1.5075539999999847,"y":-1.583500000000015},{"x":-1.5075539999999847,"y":1.3549000000000007}]} />
</footprint>}
cadModel={{
objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C2149796.obj?uuid=a5d40c04f23243b2af27dc3bf34f18d3",
stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C2149796.step?uuid=a5d40c04f23243b2af27dc3bf34f18d3",
pcbRotationOffset: 180,
modelOriginPosition: { x: 0.000012700000013410317, y: 0, z: -0.1 },
}}
{...props}
/>
)
}