work1

Dependencies:   mbed MAX44009 mbed-os Si7021

app/AppCommand.h

Committer:
danaeb
Date:
2020-05-28
Revision:
2:25f27478fdf9
Parent:
1:3656b45f17a8

File content as of revision 2:25f27478fdf9:

#ifndef APP_COMMAND_H
#define APP_COMMAND_H

#include "CommandParser.h"
#include "SensorManager.h"
namespace liboo{
class AppCommand{
    public:

        /*
         *
         * Register all needed command callbacks into the command parser
         */
        static void configure(SensorManager* sensor_manager);

        static void process_command(u8 command_id, u8 *command_data,
                                    u16 command_size);

        static bool get_pump_state();
    protected:

        AppCommand(void){}

        static u16 _rtc_set_time(u8 command_id, u8* command_data,
                                            u16 command_data_size);

        static u16 _set_pump(u8 command_id, u8* command_data,
                                            u16 command_data_size);


        static CommandParser *_parser;
        static SensorManager *_sensor_manager;
        static bool _is_intialized;
        static bool _is_pump_on;

};
}
#endif