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.
25 lines
379 B
C
25 lines
379 B
C
![]()
2 years ago
|
// WirelessChargerCommand.h
|
||
|
|
||
|
#ifndef _WIRELESSCHARGERCOMMAND_h
|
||
|
#define _WIRELESSCHARGERCOMMAND_h
|
||
|
|
||
|
#if defined(ARDUINO) && ARDUINO >= 100
|
||
|
#include "arduino.h"
|
||
|
#else
|
||
|
#include "WProgram.h"
|
||
|
#endif
|
||
|
|
||
|
#include "CommandEncoder.h"
|
||
|
|
||
|
class WirelessChargerCommand : private CommandEncoder
|
||
|
{
|
||
|
public:
|
||
|
WirelessChargerCommand();
|
||
|
public:
|
||
|
byte* CMD_TurnOn();
|
||
|
byte* CMD_TurnOff();
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|