Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: MPU6050 Grove_temperature
Diff: ControlImpl.cpp
- Revision:
- 1:f21c2f775f15
- Parent:
- 0:681d98ff3681
- Child:
- 3:f67352c85fd7
diff -r 681d98ff3681 -r f21c2f775f15 ControlImpl.cpp --- a/ControlImpl.cpp Fri Jun 14 00:13:35 2019 +0000 +++ b/ControlImpl.cpp Sat Jun 15 10:51:42 2019 -0300 @@ -1,2 +1,18 @@ +#include "sgam_mdw.h" #include "ControlImpl.h" +void ControlImpl::initialize() { + +}; + +Control* ControlImpl::getControler() { + return this; +} + +Sensor<void*>* ControlImpl::getSensor(char* name) { return NULL; } +Protocol* ControlImpl::getProtocol(char* name) { return NULL; } +Communication* ControlImpl::getCommunication(char* name) { return NULL; } + +char* ControlImpl::getAvailableSensors() { return NULL; } +char* ControlImpl::getAvailableCommunications() { return NULL; } +char* ControlImpl::getAvailableProtocols() { return NULL; }