AT command firmware for MultiTech Dot devices.

Fork of mDot_AT_firmware by MultiTech

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers CmdBatteryLevel.h Source File

CmdBatteryLevel.h

00001 #ifndef CMDBATTERYLEVEL_H_
00002 #define CMDBATTERYLEVEL_H_
00003 
00004 #include "Command.h"
00005 
00006 class CmdBatteryLevel : public Command {
00007     public:
00008         CmdBatteryLevel();
00009 
00010         virtual uint32_t action(const std::vector<std::string>& args);
00011         virtual bool verify(const std::vector<std::string>& args);
00012 
00013     private:
00014 
00015 };
00016 
00017 #endif