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

Dependencies:   MPU6050 Grove_temperature

Dependents:   sgam_mdw_test

Revision:
1:f21c2f775f15
Parent:
0:681d98ff3681
Child:
3:f67352c85fd7
--- a/ControlImpl.h	Fri Jun 14 00:13:35 2019 +0000
+++ b/ControlImpl.h	Sat Jun 15 10:51:42 2019 -0300
@@ -1,9 +1,19 @@
 #ifndef CONTROL_IMPL_H
 #define CONTROL_IMPL_H
-#include "Control.h"
+#include "sgam_mdw.h"
+
+class ControlImpl: public Control {
+public:
+    virtual Control* getControler();
+    virtual void initialize();
 
-class ControlImpl: Control {
-    
+    virtual Sensor<void*>* getSensor(char* name);
+    virtual Protocol* getProtocol(char* name);
+    virtual Communication* getCommunication(char* name);
+
+    virtual char* getAvailableSensors();
+    virtual char* getAvailableCommunications();
+    virtual char* getAvailableProtocols();
 };
 
 #endif