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 AnalogIn_Diff by
Diff: AnalogIn_Diff.h
- Revision:
- 0:0f6f4be28e21
- Child:
- 1:7b36e4381d83
diff -r 000000000000 -r 0f6f4be28e21 AnalogIn_Diff.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/AnalogIn_Diff.h Tue May 20 00:58:33 2014 +0000
@@ -0,0 +1,26 @@
+
+#ifndef K64F_DIFF_A2D_H
+#define K64F_DIFF_A2D_H
+
+#include "mbed.h"
+
+
+class AnalogIn_Diff
+{
+public:
+ AnalogIn_Diff(int channel);
+
+ /**
+ * AnalogIn_Diff destructor
+ */
+ ~AnalogIn_Diff();
+ int16_t read_16(void);
+ float read(void);
+
+private:
+
+ int ch;
+
+};
+
+#endif
\ No newline at end of file

ADC DIFF K64F