BayEOSArduino Library
MAX11212.h
1 #ifndef MAX11212_H
2 #define MAX11212_H
3 
4 #include "Arduino.h"
5 
6 class MAX11212{
7 private:
8  uint8_t _sck; // Power Down and Serial Clock Input Pin
9  uint8_t _dout; // Serial Data Output Pin
10 public:
11  MAX11212(uint8_t sck,uint8_t dout);
12  long read(bool cal=0,int timeout=100);
13  void begin(void);
14 };
15 
16 
17 
18 #endif
Definition: MAX11212.h:6