dsf

Dependencies:   BLE_API mbed nRF51822

Revision:
0:b5906c81772b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Controller.cpp	Sun Feb 05 16:31:58 2017 +0000
@@ -0,0 +1,11 @@
+#include "Controller.hpp"
+
+void Controller::updateRef (float _ref) {
+    ref = _ref;
+}
+
+void Controller::updateOut (float _out) {
+    out = _out;
+}
+
+Controller::~Controller() {}