/****************************************************************************/
/* Copyright 2010 MBARI.                                                    */
/* MBARI Proprietary Information. All rights reserved.                      */
/****************************************************************************/

#ifndef ACTIONS_H
#define ACTIONS_H

/* Root commands */
int actGetCmd(char* s);
int actSetCmd(char* s);
int actClrCmd(char* s);
int actHelloKittyCmd(char* s);
                                                
/* Get commands */
int actGetDinCmd(char* s);
int actGetDoutCmd(char* s);
int actGetTimeCmd(char* s);
int actGetRelayStateCmd(char* s);
int actGetSerial1Cmd(char* s);
int actGetSerial2Cmd(char* s);

 
/* Set commands */
int actSetDoutCmd(char* s);
int actSetTimeCmd(char* s);
int actSetRelayOnCmd(char* s);
int actSetRelayOffCmd(char* s);
int actSetSerial1Cmd(char* s);
int actSetSerial2Cmd(char* s);

/* Clear commands */
int actClrDoutCmd(char* s);

#endif
