implementação do sgam_mdw baseado na placa NUCLEO FZ429ZI para ser testada

Dependencies:   MPU6050 Grove_temperature

Dependents:   sgam_mdw_test

ControlImpl.h

Committer:
AndersonIctus
Date:
2019-07-20
Revision:
17:8789ab4067a6
Parent:
15:11e13881c385

File content as of revision 17:8789ab4067a6:

#ifndef CONTROL_IMPL_H
#define CONTROL_IMPL_H
#include "sgam_mdw.h"
#include "mbed.h"

class ControlImpl: public Control {
public:
    virtual Control* getControler();
    virtual void initialize();
    virtual void finalize();

    ControlImpl();
    virtual ~ControlImpl();
// private:
//     I2C i2c(I2C_SDA, I2C_SCL);
};

#endif