Erick / Mbed 2 deprecated ICE_BLE_TEST

Dependencies:   NaturalTinyShell_ice libmDot-12Sept mbed-rtos mbed

Fork of ICE by Erick

src/ConfigurationHandler/Controls/ManualControl.cpp

Committer:
jmarkel44
Date:
2016-09-21
Revision:
96:807f04bd5256
Child:
97:5cf6ab71dcd0

File content as of revision 96:807f04bd5256:

/******************************************************************************
 *
 * File:                ManualControl.cpp
 * Desciption:          ICE Manual Control Class implementation
 *
 *****************************************************************************/
#include "ManualControl.h"
#include "mDot.h"
#include "MbedJSONValue.h"
#include "ModbusMasterApi.h"
#include "global.h"
#include <string>

extern mDot *GLOBAL_mdot;

// Method:          load
// Description:     open the configuration file and assign data to the
//                  setpoint control object
//
// @param           controlFile -> name of the control file
// @return          true if data is assigned; false on error

bool ManualControl::load(string _controlFile)
{
    return true;
}

// Method:          start
// Description:     start the manual control
//
// @param           none
// @return          none

int ManualControl::start(void)
{
    return 0;
}

// Method:          update
// Description:
//
// @param           none
// @return          none

int ManualControl::update(void)
{
    return 0;
}



// Method:              unregisterControl
// Description:         unregister this control with the output master
//
// @param               none
// @return              none
int ManualControl::unregisterControl(void)
{
    return 0;
}

void ManualControl::display(void)
{

}