imrishabh18/rp2040-motor-controller
This circuit incorporates a USB-C Power Delivery (PD) interface with a CH224K controller, a WJ500V-5.08-04P motor output connector, multiple power conditioning components including capacitors, resistors, diodes, and an RP2040 microcontroller, to manage motor control, signal routing, and power management for a USB-powered stepper motor system.
- Version
- 1.0.14
- License
- unset
- Stars
- 0
schematic/ControllerSections.tsx
import { Microcontroller_RP2040 } from "@tscircuit/common";
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"
autorouter="auto_local"
autorouterVersion="beta_pipeline7"
autorouterEffortLevel="10x"
schAutoLayoutEnabled
schSheetName={schematicSheets.controller}
pcbX={-9.5}
schX={-3.1}
schY={8.5}
/>
);