mohan-bee/v7

This code defines a surface-mount power regulator (LM5164DDAR) with specified pin labels and footprint information for use in a PCB design, incorporating 3D model references and silkscreen outlines.

Version
0.0.1
License
unset
Stars
0

index.tsx

PCBPCB preview for index.tsx
SchematicSchematic preview for index.tsx
import React from "react"
import { LM5164DDAR } from "./imports/c477928"

export default function BuckTraceRepro() {
  return (
    <board width="30mm" height="20mm" layers={2}>
      <LM5164DDAR name="U_BUCK" pcbX={-4} pcbY={0} />
      <inductor
        name="L1"
        inductance="47uH"
        footprint="0805"
        pcbX={6}
        pcbY={0}
      />

      <trace from="U_BUCK.SW" to="L1.pin1" />
      <trace from="U_BUCK.BST" to="U_BUCK.SW" />
    </board>
  )
}