abse/gameboy-advance

This code defines a collection of hardware components, including microcontrollers, sensors, display modules, power management ICs, and passive/passive components, each modeled as 3D symbols with specific footprints, pin configurations, and associated models for PCB and schematic design.

Version
0.0.10
License
unset
Stars
0

imports/APS6404L_3SQR_ZR.tsx

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

const pinLabels = {
  pin1: ["CE"],
  pin2: ["SIO1"],
  pin3: ["SIO2"],
  pin4: ["VSS"],
  pin5: ["SIO0"],
  pin6: ["SCLK"],
  pin7: ["SIO3"],
  pin8: ["VDD"],
  pin9: ["EP"]
} as const

const pinAttributes = {
  pin4: {requiresGround: true},
  pin8: {requiresPower: true}
} as const

export const APS6404L_3SQR_ZR = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip
      pinLabels={pinLabels}
      pinAttributes={pinAttributes}
      supplierPartNumbers={{
  "jlcpcb": [
    "C3040877"
  ]
}}
      manufacturerPartNumber="APS6404L-3SQR-ZR"
      footprint="wson"
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C3040877.obj?uuid=2b35e1c3dcc44b77887d4f445b51370a",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C3040877.step?uuid=2b35e1c3dcc44b77887d4f445b51370a",
        pcbRotationOffset: 0,
        modelOriginPosition: { x: 0.00795020000009572, y: 0.027940000000057807, z: 0 },
      }}
      {...props}
    />
  )
}