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: mbed
Messdatenerfassung.cpp
- Committer:
- scooter_project
- Date:
- 2015-05-19
- Revision:
- 5:d213c03872fe
- Parent:
- 2:096c68d6a316
- Child:
- 7:ed9a83df000a
File content as of revision 5:d213c03872fe:
#include "mbed.h" AnalogIn analog_value(A0); int test(){ } float hall_umrechnung() { float meas0; meas0 = analog_value0.read() - 0.27; if(meas0 < 0) { meas0 = 0; } meas0 = meas0*2; if(meas0 > 1) { meas0 = 1; } return meas0; }