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/TTP223_TD.tsx

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

const pinLabels = {
  pin1: ["OUT"],
  pin2: ["GND"],
  pin3: ["SO"],
  pin4: ["SLH"],
  pin5: ["VDD"],
  pin6: ["STG"]
} as const

const pinAttributes = {
  pin2: {requiresGround: true},
  pin5: {requiresPower: true}
} as const

export const TTP223_TD = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip
      pinLabels={pinLabels}
      pinAttributes={pinAttributes}
      supplierPartNumbers={{
  "jlcpcb": [
    "C42422128"
  ]
}}
      manufacturerPartNumber="TTP223-TD"
      footprint="dfn6_p0.95mm_w3.3702mm_pw0.532mm_pl1.072mm_pin1location(leftside,bottom)"
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C42422128.obj?uuid=6f37130fd61d48febac97e962793fd76",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C42422128.step?uuid=6f37130fd61d48febac97e962793fd76",
        pcbRotationOffset: 0,
        modelOriginPosition: { x: 0.000012699999956566899, y: -0.000012699999842880061, z: -0.75 },
      }}
      {...props}
    />
  )
}