Cristi Stoican / Mbed 2 deprecated Migration

Dependencies:   BLE_API mbed nRF51822

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Controller.cpp Source File

Controller.cpp

00001 #include "Controller.hpp"
00002 
00003 void Controller::updateRef (float _ref) {
00004     ref = _ref;
00005 }
00006 
00007 void Controller::updateOut (float _out) {
00008     out = _out;
00009 }
00010 
00011 Controller::~Controller() {}