You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
380 B
C++

// ETCCommand.h
#ifndef _ETCCOMMAND_h
#define _ETCCOMMAND_h
#if defined(ARDUINO) && ARDUINO >= 100
#include "arduino.h"
#else
#include "WProgram.h"
#endif
#include "CommandEncoder.h"
class ETCCommand : private CommandEncoder
{
public:
ETCCommand();
public:
byte* CMD_GateUp();
byte* CMD_GateDown();
byte* CMD_LeftUpRightDown();
byte* CMD_LeftDownRightUp();
};
#endif