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: USBDevice mbed-rtos mbed
Fork of JoyStick by
Diff: LowPassFilter.cpp
- Revision:
- 5:a0bb17c379ce
- Parent:
- 1:5b2ab44eb31f
diff -r 2cc58c173de8 -r a0bb17c379ce LowPassFilter.cpp
--- a/LowPassFilter.cpp Thu Mar 10 14:05:02 2016 +0000
+++ b/LowPassFilter.cpp Wed Jun 22 12:50:16 2016 +0000
@@ -14,7 +14,7 @@
smoothedValue = (getChain()->getData() * (1.0 - _alpha)) + (smoothedValue * _alpha);
}
-long LowPassFilter::getData() {
+long LowPassFilter::getData() const {
return smoothedValue;
}
