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
ControlImpl.cpp
- Committer:
- AndersonIctus
- Date:
- 2019-06-15
- Revision:
- 1:f21c2f775f15
- Parent:
- 0:681d98ff3681
- Child:
- 3:f67352c85fd7
File content as of revision 1:f21c2f775f15:
#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; }