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
317 B
C
27 lines
317 B
C
![]()
2 years ago
|
// TFTCommand.h
|
||
|
|
||
|
#ifndef _TFTCOMMAND_h
|
||
|
#define _TFTCOMMAND_h
|
||
|
|
||
|
#if defined(ARDUINO) && ARDUINO >= 100
|
||
|
#include "arduino.h"
|
||
|
#else
|
||
|
#include "WProgram.h"
|
||
|
#endif
|
||
|
|
||
|
#include "CommandEncoder.h"
|
||
|
|
||
|
class TFTCommand : private CommandEncoder
|
||
|
{
|
||
|
public:
|
||
|
TFTCommand();
|
||
|
public:
|
||
|
void UsingA();
|
||
|
void UsingB();
|
||
|
public:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|