You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
490 B

/*! \file ELClientCmd.h
\brief Definitions for ELClientCmd
\note Miscellaneous commands
*/
// Miscellaneous commands
#ifndef _EL_CLIENT_CMD_H_
#define _EL_CLIENT_CMD_H_
#include <Arduino.h>
#include "ELClient.h"
#include "FP.h"
class ELClientCmd {
public:
// Constructor
ELClientCmd(ELClient* elc);
// Get the current time in seconds since the epoch, 0 if the time is unknown
uint32_t GetTime();
private:
ELClient* _elc; /**< ELClient instance */
};
#endif