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.
CurrentSense.cpp
- Committer:
- abuchan
- Date:
- 2015-11-24
- Revision:
- 4:5ae9f8b3a16f
File content as of revision 4:5ae9f8b3a16f:
#include "CurrentSense.h" CurrentSense::CurrentSense(PinName current_pin): current_pin_(current_pin) {} float CurrentSense::get_current(void) { return ADC_TO_CURRENT_SCALE * current_pin_.read(); }