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.
ADC.h
- Committer:
- DanielOlarte
- Date:
- 2016-11-19
- Revision:
- 0:969bd4f60e3f
File content as of revision 0:969bd4f60e3f:
#ifndef MBED_ADC #define MBED_ADC_H #include "mbed.h" using namespace mbed; class adc { public: double adcx(PinName Sen); private: PinName _Sen; }; #endif