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/SS14L.tsx
import type { DiodeProps } from "@tscircuit/props"
const pinLabels = {
pin1: ["cathode","neg"],
pin2: ["anode","pos"]
} as const
export const SS14L = (props: DiodeProps) => {
const { name = "D1", ...restProps } = props
return (
<diode
name={name}
pinLabels={pinLabels}
supplierPartNumbers={{
"jlcpcb": [
"C190475"
]
}}
manufacturerPartNumber="SS14L"
footprint="smdpads2_p3.3mm_pw1mm_ph1.2mm"
cadModel={{
objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C190475.obj?uuid=c6882627c5f64d6e8dd3b5c64b2adb0a",
stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C190475.step?uuid=c6882627c5f64d6e8dd3b5c64b2adb0a",
pcbRotationOffset: 0,
modelOriginPosition: { x: -0.000012699999956566899, y: -0.007010400000012851, z: -0.21 },
}}
{...restProps}
/>
)
}