imrishabh18/rp2040-motor-controller
The circuit implements a powered USB interface with a W25Q16 flash memory chip, a RP2040 microcontroller, and AO3400A MOSFETs for switch control, enabling USB communication, memory storage, and device power management.
- Version
- 1.0.19
- 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}
/>
);