Saltware / Mbed 2 deprecated Water Play

Dependencies:   mbed DRV88255 TextLCD Ping mbed-rtos

Committer:
sbouber1
Date:
Sat Jun 11 10:14:40 2016 +0000
Revision:
12:c51f3aba84fe
Child:
13:1323e2c0b697
mock sensors

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sbouber1 12:c51f3aba84fe 1 #include "MockSensorController.h"
sbouber1 12:c51f3aba84fe 2
sbouber1 12:c51f3aba84fe 3 void MockSensorController::update() {
sbouber1 12:c51f3aba84fe 4
sbouber1 12:c51f3aba84fe 5 }
sbouber1 12:c51f3aba84fe 6
sbouber1 12:c51f3aba84fe 7 std::string MockSensorController::get_name() {
sbouber1 12:c51f3aba84fe 8 return "MockSensorController";
sbouber1 12:c51f3aba84fe 9 }
sbouber1 12:c51f3aba84fe 10
sbouber1 12:c51f3aba84fe 11 float MockSensorController::getValue() {
sbouber1 12:c51f3aba84fe 12 return (*this->func)(this->i++);
sbouber1 12:c51f3aba84fe 13 }