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.
Fork of System_7_14 by
conversions.cpp@0:45085dd174e7, 2017-04-27 (annotated)
- Committer:
- tzyoung
- Date:
- Thu Apr 27 13:16:07 2017 +0000
- Revision:
- 0:45085dd174e7
- Child:
- 3:9764b0bd8cb9
initial release
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
tzyoung | 0:45085dd174e7 | 1 | #include "conversions.hpp" |
tzyoung | 0:45085dd174e7 | 2 | |
tzyoung | 0:45085dd174e7 | 3 | float counts_to_dist(int count) |
tzyoung | 0:45085dd174e7 | 4 | { |
tzyoung | 0:45085dd174e7 | 5 | float conv = -0.1912*count+507.2; |
tzyoung | 0:45085dd174e7 | 6 | return conv; |
tzyoung | 0:45085dd174e7 | 7 | |
tzyoung | 0:45085dd174e7 | 8 | }; |