Sensor3/lib/patrix/console.h

17 lines
278 B
C

#ifndef SENSOR3_CONSOLE_H
#define SENSOR3_CONSOLE_H
void consoleSetup();
void consoleLoop();
void consoleHandle(char *cmd);
bool patrix_command(char *cmd);
void consolePrintUsage();
bool setDouble(const char *name, double *destinationPtr, double min, double max);
#endif