GY-63_MS5611/libraries/AD524X/AD524X.h

66 lines
1.2 KiB
C
Raw Normal View History

//
// FILE: AD524X.h
// AUTHOR: Rob Tillaart
// VERSION: 0.1.03
// PURPOSE: I2C digital PotentioMeter AD5241 AD5242
// DATE: 2013-10-12
// URL:
//
// Released to the public domain
//
#ifndef AD524X_h
#define AD524X_h
#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
#include <Wire.h>
#define AD524X_VERSION "0.1.03"
#define AS524X_OK 0
#define AS524X_ERROR 100
class AD524X
{
public:
// address
explicit AD524X(const uint8_t);
uint8_t zeroAll();
// rdac
2015-03-06 08:40:36 -05:00
uint8_t read(const uint8_t);
// for debugging
uint8_t readBackRegister(); // returns the last value written in register.
// rdac value
2015-03-06 08:40:36 -05:00
uint8_t write(const uint8_t, const uint8_t);
// rdac value O1 O2
2015-03-06 08:40:36 -05:00
uint8_t write(const uint8_t, const uint8_t, const uint8_t, const uint8_t);
2015-03-06 08:40:36 -05:00
uint8_t setO1(const uint8_t); // HIGH / LOW
uint8_t setO2(const uint8_t); // HIGH / LOW
uint8_t getO1();
uint8_t getO2();
// rdac
2015-03-06 08:40:36 -05:00
uint8_t midScaleReset(const uint8_t);
//
// uint8_t shutDown();
private:
2015-03-06 08:40:36 -05:00
uint8_t send(const uint8_t, const uint8_t); // cmd value
uint8_t _address;
uint8_t _lastValue[2];
uint8_t _O1;
uint8_t _O2;
};
#endif
// -- END OF FILE --