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/SN74AHCT1G125DBVR.tsx
import type { ChipProps } from "@tscircuit/props"
const pinLabels = {
pin1: ["N_OE"],
pin2: ["A"],
pin3: ["GND"],
pin4: ["Y"],
pin5: ["VCC"]
} as const
const pinAttributes = {
pin3: {requiresGround: true},
pin5: {requiresPower: true}
} as const
export const SN74AHCT1G125DBVR = (props: ChipProps<typeof pinLabels>) => {
return (
<chip
pinLabels={pinLabels}
pinAttributes={pinAttributes}
supplierPartNumbers={{
"jlcpcb": [
"C7484"
]
}}
manufacturerPartNumber="SN74AHCT1G125DBVR"
footprint="sot25_w2.6mm_pl1.1mm_pin1location(rightside,bottom)"
cadModel={{
objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C7484.obj?uuid=460193f9bf2d42e58cf3c2f675b07dc6",
stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C7484.step?uuid=460193f9bf2d42e58cf3c2f675b07dc6",
pcbRotationOffset: 180,
modelOriginPosition: { x: 0, y: -0.000012700000070253736, z: -0.049083 },
}}
{...props}
/>
)
}