Abse2001/OR-Gate-Chip

A single-channel 2-input OR logic gate IC in a SOT-235 surface mount package, based on the SN74AHC1G32DBVR Texas Instruments part number.

Usage: To import and use the OR Gate Chip in a project: 1. Import the component: ```tsx import { orChip } from "@tsci/Abse2001.OR-Gate-Chip" ``` 2. Use the component in a circuit: ```tsx <board> <orChip name="U1" /> </board> ``` Pins available: - pin1: Y (output) - pin2: Vcc (power) - pin3: GND (ground) - pin4: B (input) - pin5: A (input) You can also connect traces using the `sel` selector: ```tsx <trace from={sel.U1.A} to={...} /> <trace from={sel.U1.B} to={...} /> <trace from={sel.U1.Y} to={...} /> ```

Version
0.0.1
License
unset
Stars
1

dist/index.d.ts

PCBPCB preview for dist/index.d.ts
SchematicSchematic preview for dist/index.d.ts
import type { CommonLayoutProps } from "@tscircuit/props";
interface Props extends CommonLayoutProps {
    name: string;
}
export declare const orChip: (props: Props) => import("react/jsx-runtime").JSX.Element;
export declare const useOrGate: <PropsFromHook extends Omit<Props, "name"> | undefined = undefined>(name: string, props?: PropsFromHook | undefined) => import("@tscircuit/core").ComponentWithPins<Props, string, PropsFromHook>;
export {};