rob tillaart cc73f24876 + version 0.1.02
+ stricter interface
2015-03-06 14:40:36 +01:00

63 lines
1.1 KiB
C++

//
// FILE: AD524X.h
// AUTHOR: Rob Tillaart
// VERSION: 0.1.02
// 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.02"
#define AS524X_OK 0
#define AS524X_ERROR -10
class AD524X
{
public:
// address
AD524X(const uint8_t);
uint8_t zeroAll();
// rdac
uint8_t read(const uint8_t);
// rdac value
uint8_t write(const uint8_t, const uint8_t);
// rdac value O1 O2
uint8_t write(const uint8_t, const uint8_t, const uint8_t, const uint8_t);
uint8_t setO1(const uint8_t); // HIGH / LOW
uint8_t setO2(const uint8_t); // HIGH / LOW
uint8_t getO1();
uint8_t getO2();
// rdac
uint8_t midScaleReset(const uint8_t);
//
// uint8_t shutDown();
private:
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 --