mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
107 lines
2.7 KiB
C++
107 lines
2.7 KiB
C++
#pragma once
|
|
//
|
|
// FILE: MCP4725.h
|
|
// AUTHOR: Rob Tillaart
|
|
// PURPOSE: Arduino library for 12 bit I2C DAC - MCP4725
|
|
// VERSION: 0.4.0
|
|
// URL: https://github.com/RobTillaart/MCP4725
|
|
|
|
|
|
#include "Wire.h"
|
|
#include "Arduino.h"
|
|
|
|
|
|
#define MCP4725_VERSION (F("0.4.0"))
|
|
|
|
|
|
// CONSTANTS
|
|
#define MCP4725_MAXVALUE 4095
|
|
|
|
|
|
// ERRORS
|
|
#define MCP4725_OK 0
|
|
#define MCP4725_VALUE_ERROR -999
|
|
#define MCP4725_REG_ERROR -998
|
|
#define MCP4725_NOT_CONNECTED -997
|
|
|
|
|
|
// powerDown Mode - TODO ENUM?
|
|
#define MCP4725_PDMODE_NORMAL 0x00
|
|
#define MCP4725_PDMODE_1K 0x01
|
|
#define MCP4725_PDMODE_100K 0x02
|
|
#define MCP4725_PDMODE_500K 0x03
|
|
|
|
#define MCP4725_MIDPOINT 2048
|
|
|
|
|
|
class MCP4725
|
|
{
|
|
public:
|
|
// address = 0x60..0x67
|
|
explicit MCP4725(const uint8_t deviceAddress, TwoWire *wire = &Wire);
|
|
|
|
bool begin();
|
|
bool isConnected();
|
|
uint8_t getAddress();
|
|
|
|
// uses writeFastMode
|
|
int setValue(const uint16_t value = 0);
|
|
// returns last value set - cached - much faster than readDAC();
|
|
uint16_t getValue();
|
|
|
|
|
|
// 0..100.0% - input checked.
|
|
// will set the closest integer value in range 0..4095
|
|
int setPercentage(float percentage = 0);
|
|
// due to rounding the returned value can differ slightly.
|
|
float getPercentage();
|
|
|
|
// typical and default value = 5.0 V
|
|
void setMaxVoltage(float v = 5.0);
|
|
float getMaxVoltage();
|
|
// will set 0..5V to the closest integer value in range 0..4095
|
|
int setVoltage(float v);
|
|
// returns (approximation of) the set voltage. Assumes linear mapping.
|
|
float getVoltage();
|
|
|
|
|
|
// unfortunately it is not possible to write a different value
|
|
// to the DAC and EEPROM simultaneously or write EEPROM only.
|
|
int writeDAC(const uint16_t value, const bool EEPROM = false);
|
|
// ready checks if the last write to EEPROM has been written.
|
|
// until ready all writes to the MCP4725 are ignored!
|
|
bool ready();
|
|
uint16_t readDAC();
|
|
uint16_t readEEPROM();
|
|
uint32_t getLastWriteEEPROM(); // returns timestamp
|
|
|
|
|
|
// experimental
|
|
int writePowerDownMode(const uint8_t PDM, const bool EEPROM = false);
|
|
uint8_t readPowerDownModeEEPROM();
|
|
uint8_t readPowerDownModeDAC();
|
|
int powerOnReset();
|
|
int powerOnWakeUp();
|
|
|
|
|
|
private:
|
|
uint8_t _deviceAddress;
|
|
uint16_t _lastValue;
|
|
uint8_t _powerDownMode; // DATASHEET P15?
|
|
int _writeFastMode(const uint16_t value);
|
|
uint32_t _lastWriteEEPROM;
|
|
|
|
int _writeRegisterMode(const uint16_t value, uint8_t reg);
|
|
uint8_t _readRegister(uint8_t* buffer, const uint8_t length);
|
|
|
|
int _generalCall(const uint8_t gc);
|
|
|
|
float _maxVoltage;
|
|
|
|
TwoWire* _wire;
|
|
};
|
|
|
|
|
|
// -- END OF FILE --
|
|
|