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.
Diff: rotary_encoder.cpp
- Revision:
- 10:684e1604e5ea
- Parent:
- 7:3b51e2c660b6
--- a/rotary_encoder.cpp Sat May 21 03:19:33 2016 +0000
+++ b/rotary_encoder.cpp Sat Jun 25 05:40:31 2016 +0000
@@ -10,3 +10,7 @@
float rotary_encoder::get_revol_num() const {
return static_cast<float>(get_counts()) / resolution_;
}
+
+float rotary_encoder::read() const {
+ return get_revol_num();
+}