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.
AnalogIn_Diff.h
00001 00002 #ifndef K64F_DIFF_A2D_H 00003 #define K64F_DIFF_A2D_H 00004 00005 #include "mbed.h" 00006 00007 00008 class AnalogIn_Diff 00009 { 00010 public: 00011 AnalogIn_Diff(int a2d_number); 00012 00013 /** 00014 * AnalogIn_Diff destructor 00015 */ 00016 ~AnalogIn_Diff(); 00017 int16_t read_16(int channel); 00018 float read(int channel); 00019 00020 private: 00021 00022 int ch; 00023 00024 }; 00025 00026 #endif
Generated on Thu Jul 14 2022 20:58:59 by
1.7.2