add tuning support for imp

This commit is contained in:
Alfonso Gamboa
2022-06-07 15:51:49 -07:00
parent 7758feff10
commit 3ab50eb989
7 changed files with 249 additions and 3 deletions

View File

@@ -22,6 +22,7 @@ extern char *WaitMotion(int fd, char *tokenPtr);
extern char *IrLed(int fd, char *tokenPtr);
extern char *AudioPlay(int fd, char *tokenPtr);
extern char *mp4Write(int fd, char *tokenPtr);
extern char *imp_Control(int fd, char *tokenPtr);
struct CommandTableSt {
const char *cmd;
@@ -37,6 +38,7 @@ struct CommandTableSt CommandTable[] = {
{ "irled", &IrLed },
{ "aplay", &AudioPlay },
{ "mp4write", &mp4Write },
{ "imp_control", &imp_Control },
};