Driver for National Semiconductor ADC128Sxxx family of analog to digital converters

Revision:
0:28addf1f4c26
Child:
1:0edd6142cd67
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ADC128S.h	Fri Feb 18 20:52:59 2011 +0000
@@ -0,0 +1,13 @@
+// ADC128S   a library for the National Semiconductor ADC128S family of ADCs
+//
+// by Michael Shimniok - http://www.bot-thoughts.com/
+//
+class ADC128S {
+public:
+    ADC128S(PinName cs, PinName mosi, PinName miso, PinName sck);
+    unsigned int read(int channel);
+
+private:
+    SPI _adc;
+    DigitalOut _cs;
+};
\ No newline at end of file