imrishabh18/rp2040-motor-controller
This circuit module provides a microcontroller-based NEMA17 stepper motor driver with integrated USB-C Power Delivery, temperature sensing, and safety interlocks.
- Version
- 1.0.16
- License
- unset
- Stars
- 0
schematic/ControllerSections.tsx
import { Microcontroller_RP2040 } from "../vendor/rp2040";
import { schematicSheets } from "./config";
/**
* @tscircuit/common owns the RP2040 controller, clock, debug, and programming
* sub-sections, so they remain one reusable controller subsystem here.
*/
export const ControllerSections = () => (
<Microcontroller_RP2040
name="MCU"
schAutoLayoutEnabled
schSheetName={schematicSheets.controller}
pcbX={-3.5}
pcbY={2.5}
schX={-3.1}
schY={8.5}
/>
);