pixalynx/keyboard

This code defines the physical layout and key components of a USB-C dongle featuring an nRF52840 microcontroller with antenna, USB-A connector, status LED, pair button, firmware debug test points, and associated passive components and interface connectors.

Version
1.0.0
License
unset
Stars
0

imports/SWPA4030S220MT.tsx

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

export const SWPA4030S220MT = (props: Omit<InductorProps, "inductance">) => {
  return (
    <inductor
      inductance="22uH"
      supplierPartNumbers={{
  "jlcpcb": [
    "C83472"
  ]
}}
      manufacturerPartNumber="SWPA4030S220MT"
      footprint="smdpads2_p3.6002mm_pw1.9mm_ph3.7mm"
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C83472.obj?uuid=17e6bc9de5ec4d44a160fa801e621a52",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C83472.step?uuid=17e6bc9de5ec4d44a160fa801e621a52",
        pcbRotationOffset: 0,
        modelOriginPosition: { x: 0, y: 0.00004999999988641868, z: 0 },
      }}
      {...props}
    />
  )
}