wing base

This commit is contained in:
ary 2023-09-29 08:42:19 -04:00
parent 1ed3e2db9e
commit dc962af095

View File

@ -0,0 +1,18 @@
#ifndef _wings_h_
#define _wings_h_
#include "main.h"
class Wings {
public:
Wings();
void open();
void close();
void openFor(double duration);
bool getState();
private:
std::uint8_t wingsopen;
};
#endif