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

dist/index.d.ts

import * as react from 'react';

declare const savedRouting: (input: unknown) => Promise<{
    on(name: string, callback: (event: any) => void): void;
    start(): void;
    stop(): void;
}>;

declare function Rp2040MotorController({ routingDisabled, routingAlgorithm, }?: {
    routingDisabled?: boolean;
    routingAlgorithm?: typeof savedRouting;
}): any;

export { Rp2040MotorController as default };