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.
26 lines
388 B
C++
26 lines
388 B
C++
// VoiceReportCommand.h
|
|
|
|
#ifndef _VOICEIDENTIFYCOMMAND_h
|
|
#define _VOICEIDENTIFYCOMMAND_h
|
|
|
|
#if defined(ARDUINO) && ARDUINO >= 100
|
|
#include "arduino.h"
|
|
#else
|
|
#include "WProgram.h"
|
|
#endif
|
|
|
|
#include <BKRC_Voice.h>
|
|
#include "TextEncoder.h"
|
|
|
|
class VoiceIdentifyCommand
|
|
{
|
|
private:
|
|
uint8_t RandomDisc();
|
|
public:
|
|
bool CMD_ReportAndIdentify();
|
|
void CMD_ReportAnyText(String text);
|
|
};
|
|
|
|
#endif
|
|
|