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

90 lines
2.3 KiB
C
Raw Normal View History

2021-01-29 06:31:58 -05:00
#pragma once
//
// FILE: PCF8591.h
// AUTHOR: Rob Tillaart
// DATE: 2020-03-12
2023-12-19 11:09:13 -05:00
// VERSION: 0.4.0
2023-12-10 09:31:03 -05:00
// PURPOSE: Arduino Library for PCF8591 I2C 4 channel 8 bit ADC + 1 channel 8 bit DAC.
2021-01-29 06:31:58 -05:00
// URL: https://github.com/RobTillaart/PCF8591
#include "Arduino.h"
#include "Wire.h"
2023-12-19 11:09:13 -05:00
#define PCF8591_LIB_VERSION (F("0.4.0"))
2021-01-29 06:31:58 -05:00
2023-02-23 10:01:06 -05:00
#define PCF8591_OK 0x00
#define PCF8591_PIN_ERROR 0x81
#define PCF8591_I2C_ERROR 0x82
#define PCF8591_MODE_ERROR 0x83
#define PCF8591_CHANNEL_ERROR 0x84
#define PCF8591_ADDRESS_ERROR 0x85
// datasheet figure 4 page 6
#define PCF8591_FOUR_SINGLE_CHANNEL 0x00 // default
#define PCF8591_THREE_DIFFERENTIAL 0x01
#define PCF8591_MIXED 0x02
#define PCF8591_TWO_DIFFERENTIAL 0x03
2021-01-29 06:31:58 -05:00
class PCF8591
{
public:
2023-12-10 09:31:03 -05:00
explicit PCF8591(uint8_t address = 0x48, TwoWire *wire = &Wire);
2021-01-29 06:31:58 -05:00
2023-02-23 10:01:06 -05:00
// set initial value for DAC, default 0
2021-12-23 08:26:13 -05:00
bool begin(uint8_t value = 0);
2021-01-29 06:31:58 -05:00
bool isConnected();
2023-12-10 09:31:03 -05:00
uint8_t getAddress();
2021-01-29 06:31:58 -05:00
2022-11-21 15:33:51 -05:00
// ADC PART
// auto increment not tested ==> use with care!
void enableINCR();
void disableINCR();
bool isINCREnabled();
2023-12-19 11:09:13 -05:00
// read() returns the value.
2023-02-23 10:01:06 -05:00
// mode 0 = PCF8591_FOUR_SINGLE_CHANNEL
2023-12-19 11:09:13 -05:00
uint8_t read(uint8_t channel, uint8_t mode = 0);
// read4() returns PCF8591_OK or an error code.
uint8_t read4();
// access the 4 channels read with read4()
2022-11-21 15:33:51 -05:00
uint8_t lastRead(uint8_t channel);
2023-02-23 10:01:06 -05:00
// datasheet par 8.2 figure 4
// not for PCF8591_MIXED mode.
// comparator calls need testing.
int readComparator_01(); // channel 0 mode 3
int readComparator_23(); // channel 1 mode 3
int readComparator_03(); // channel 0 mode 1
int readComparator_13(); // channel 1 mode 1
2021-01-29 06:31:58 -05:00
2022-11-21 15:33:51 -05:00
// DAC PART
void enableDAC();
void disableDAC();
bool isDACEnabled();
2023-12-19 11:09:13 -05:00
bool write(uint8_t value = 0); // returns true on success.
uint8_t lastWrite(); // returns last successful write
2021-01-29 06:31:58 -05:00
2022-11-21 15:33:51 -05:00
// ERROR HANDLING
2021-01-29 06:31:58 -05:00
int lastError();
2021-12-23 08:26:13 -05:00
2021-01-29 06:31:58 -05:00
private:
uint8_t _address;
uint8_t _control;
uint8_t _dac;
uint8_t _adc[4];
int _error;
2021-12-23 08:26:13 -05:00
2021-01-29 06:31:58 -05:00
TwoWire* _wire;
2023-12-19 11:09:13 -05:00
2021-01-29 06:31:58 -05:00
};
2021-12-23 08:26:13 -05:00
2022-11-21 15:33:51 -05:00
// -- END OF FILE --
2021-12-23 08:26:13 -05:00