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

106 lines
2.0 KiB
C
Raw Normal View History

2020-11-27 05:10:47 -05:00
#pragma once
2017-12-19 01:47:37 -05:00
//
// FILE: DAC8551.h
// AUTHOR: Rob Tillaart
2020-11-27 05:10:47 -05:00
// PURPOSE: Arduino library for DAC8551 SPI Digital Analog Convertor
// could work with DAC8550, not tested
2021-02-06 09:52:51 -05:00
// VERSION: 0.2.2
2017-12-19 01:47:37 -05:00
// HISTORY: See DAC8551.cpp
2020-11-27 05:10:47 -05:00
// URL: https://github.com/RobTillaart/DAC8551
2017-12-19 01:47:37 -05:00
//
2021-01-29 06:31:58 -05:00
#include "SPI.h"
2021-02-06 09:52:51 -05:00
#define DAC8551_LIB_VERSION (F("0.2.2"))
2021-01-29 06:31:58 -05:00
#define DAC8551_POWERDOWN_NORMAL 0
#define DAC8551_POWERDOWN_1K 1
#define DAC8551_POWERDOWN_100K 2
#define DAC8551_POWERDOWN_HIGH_IMP 3
2017-12-19 01:47:37 -05:00
class DAC8551
{
public:
2021-01-29 06:31:58 -05:00
DAC8551(uint8_t slaveSelect);
2020-11-27 05:10:47 -05:00
DAC8551(uint8_t spiData, uint8_t spiClock, uint8_t slaveSelect);
2017-12-19 01:47:37 -05:00
2021-01-29 06:31:58 -05:00
void begin();
2017-12-19 01:47:37 -05:00
2021-01-29 06:31:58 -05:00
void setValue(uint16_t value);
2017-12-19 01:47:37 -05:00
uint16_t getValue();
2021-01-29 06:31:58 -05:00
void setPowerDown(uint8_t powerDownMode);
uint8_t getPowerDownMode();
2017-12-19 01:47:37 -05:00
2021-02-06 09:52:51 -05:00
protected:
2021-01-29 06:31:58 -05:00
uint8_t _spiData;
uint8_t _spiClock;
uint8_t _slaveSelect;
bool _hwSPI;
uint16_t _value;
uint8_t _register;
void updateDevice();
void swSPI_transfer(uint8_t value);
2017-12-19 01:47:37 -05:00
};
2021-02-06 09:52:51 -05:00
/////////////////////////////////////////////////////////
//
// derive 8501, 8531 and 8550 from 8551
//
#define DAC8501_POWERDOWN_NORMAL 0
#define DAC8501_POWERDOWN_1K 1
#define DAC8501_POWERDOWN_100K 2
#define DAC8501_POWERDOWN_HIGH_IMP 3
class DAC8501 : public DAC8551
{
public:
DAC8501(uint8_t slaveSelect);
DAC8501(uint8_t spiData, uint8_t spiClock, uint8_t slaveSelect);
};
#define DAC8531_POWERDOWN_NORMAL 0
#define DAC8531_POWERDOWN_1K 1
#define DAC8531_POWERDOWN_100K 2
#define DAC8531_POWERDOWN_HIGH_IMP 3
class DAC8531 : public DAC8551
{
public:
DAC8531(uint8_t slaveSelect);
DAC8531(uint8_t spiData, uint8_t spiClock, uint8_t slaveSelect);
};
#define DAC8550_POWERDOWN_NORMAL 0
#define DAC8550_POWERDOWN_1K 1
#define DAC8550_POWERDOWN_100K 2
#define DAC8550_POWERDOWN_HIGH_IMP 3
class DAC8550 : public DAC8551
{
public:
DAC8550(uint8_t slaveSelect);
DAC8550(uint8_t spiData, uint8_t spiClock, uint8_t slaveSelect);
};
2020-11-27 05:10:47 -05:00
// -- END OF FILE --