tscircuit/motor-controller

This code defines a compact hardware layout with multiple integrated components such as microcontrollers, power regulators, sensors, connectors, and passive elements, all arranged on a PCB for a versatile electronic device.

Version
1.0.14
License
unset
Stars
0

imports/BLA10V100M6_3_6_6_3TP.tsx

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

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

export const BLA10V100M6_3_6_63TP = (props: ChipProps<typeof pinLabels>) => {
	return (
		<chip
			pinLabels={pinLabels}
			supplierPartNumbers={{
				jlcpcb: ["C165631"],
			}}
			manufacturerPartNumber="BLA10V100M6_3_6_6_3TP"
			footprint={
				<footprint>
					<smtpad
						portHints={["pin1"]}
						pcbX="-2.670048mm"
						pcbY="0mm"
						width="3.499993mm"
						height="1.1999976mm"
						shape="rect"
					/>
					<smtpad
						portHints={["pin2"]}
						pcbX="2.670048mm"
						pcbY="0mm"
						width="3.499993mm"
						height="1.1999976mm"
						shape="rect"
					/>
					<silkscreenpath
						route={[
							{ x: 3.3556194000000232, y: -0.7392669999999271 },
							{ x: 3.3756599999999253, y: -3.3756599999999253 },
							{ x: -1.981200000000058, y: -3.3756599999999253 },
							{ x: -3.375660000000039, y: -1.981200000000058 },
							{ x: -3.3622996000000285, y: -0.6857999999998583 },
						]}
					/>
					<silkscreenpath
						route={[
							{ x: 3.369487799999888, y: 0.7076948000001266 },
							{ x: 3.376168000000007, y: 3.376168000000007 },
							{ x: -1.9800316000000748, y: 3.376168000000007 },
							{ x: -3.376168000000007, y: 1.9800315999999611 },
							{ x: -3.376168000000007, y: 0.685799999999972 },
						]}
					/>
					<silkscreentext
						text="{NAME}"
						pcbX="0mm"
						pcbY="4.3782mm"
						anchorAlignment="center"
						fontSize="1mm"
					/>
					<courtyardoutline
						outline={[
							{ x: -4.669599999999946, y: 3.6282000000001062 },
							{ x: 4.6696000000000595, y: 3.6282000000001062 },
							{ x: 4.6696000000000595, y: -3.6281999999999925 },
							{ x: -4.669599999999946, y: -3.6281999999999925 },
							{ x: -4.669599999999946, y: 3.6282000000001062 },
						]}
					/>
				</footprint>
			}
			cadModel={{
				objUrl:
					"https://modelcdn.tscircuit.com/easyeda_models/assets/C165631.obj?uuid=6cb1ec5759f6404189e20b90556867d6",
				stepUrl:
					"https://modelcdn.tscircuit.com/easyeda_models/assets/C165631.step?uuid=6cb1ec5759f6404189e20b90556867d6",
				pcbRotationOffset: 180,
				modelOriginPosition: { x: 0, y: 0, z: -0.05 },
			}}
			{...props}
		/>
	);
};