esp32-car/include/mode.h

19 lines
221 B
C
Raw Normal View History

2024-12-28 00:38:42 +08:00
#ifndef MODE_H
#define MODE_H
#include "Arduino.h"
#include "tracking.h"
enum ModeType
{
MODE_MANUAL_CONTROL,
MODE_TRACK,
};
class Mode
{
public:
static ModeType mode;
static void processDeviceMode();
};
#endif