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/WS2812C_2020_V1.tsx
import type { ChipProps } from "@tscircuit/props"
const pinLabels = {
pin1: ["DO"],
pin2: ["GND"],
pin3: ["DI"],
pin4: ["VDD"]
} as const
const pinAttributes = {
pin2: {requiresGround: true},
pin4: {requiresPower: true}
} as const
export const WS2812C_2020_V1 = (props: ChipProps<typeof pinLabels>) => {
return (
<chip
pinLabels={pinLabels}
pinAttributes={pinAttributes}
supplierPartNumbers={{
"jlcpcb": [
"C2976072"
]
}}
manufacturerPartNumber="WS2812C-2020-V1"
footprint="dfn4_p1.1001mm_w2.7301mm_pw0.7mm_pl0.9mm"
cadModel={{
objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C2976072.obj?uuid=caa88715b11f4aa189b02e52bbb84e4f",
stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C2976072.step?uuid=caa88715b11f4aa189b02e52bbb84e4f",
pcbRotationOffset: 0,
modelOriginPosition: {"x":0,"y":0,"z":-0.10003630000001063},
}}
{...props}
/>
)
}