krishnax12/watchy-eink-smartwatch

This code defines a hardware schematic and PCB layout for a smartwatch using components like ESP32 microcontroller, sensors, Bluetooth module, power regulation, and connectors, with detailed component footprints and PCB outlines.

Version
1.2.1
License
unset
Stars
2

imports/SWRA117D.tsx

import type { ChipProps } from "tscircuit";

const pinLabels = {
  "pin1": [
    "pin1",
    "1"
  ],
  "pin2": [
    "pin2",
    "2"
  ]
} as const;

export const SWRA117D = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip
      pinLabels={pinLabels}
      footprint={
        <footprint>
          <smtpad portHints={["pin1", "1"]} pcbX="-1.15mm" pcbY="0mm" width="0.5mm" height="0.5mm" shape="rect" />
          <smtpad portHints={["pin2", "2"]} pcbX="0.95mm" pcbY="0mm" width="0.9mm" height="0.5mm" shape="rect" />
        </footprint>
      }
      {...props}
    />
  );
};