mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
42 lines
1013 B
C++
42 lines
1013 B
C++
#pragma once
|
|
//
|
|
// FILE: DS28CM00.h
|
|
// AUTHOR: Rob Tillaart
|
|
// PURPOSE: Library for the DS28CM00 unique identification chip.
|
|
// VERSION: 0.2.3
|
|
// HISTORY: See DS28CM00.cpp
|
|
// URL: https://github.com/RobTillaart/DS28CM00
|
|
//
|
|
|
|
#include "Arduino.h"
|
|
#include "Wire.h"
|
|
|
|
|
|
#define DS28CM00_LIB_VERSION (F("0.2.3"))
|
|
#define DS28CM00_I2C_MODE 0x00
|
|
#define DS28CM00_SMBUS_MODE 0x01
|
|
#define DS28CM00_MODE_UNKNOWN 0xFF
|
|
|
|
|
|
class DS28CM00
|
|
{
|
|
public:
|
|
explicit DS28CM00(TwoWire *wire = &Wire);
|
|
#if defined(ESP8266) || defined(ESP32)
|
|
explicit DS28CM00(const uint8_t dataPin, const uint8_t clockPin);
|
|
#endif
|
|
|
|
void begin(); // default DS28CM00_I2C_MODE
|
|
bool getUID(uint8_t *);
|
|
|
|
bool setI2CMode() { return setMode(DS28CM00_I2C_MODE); };
|
|
bool setSMBusMode() { return setMode(DS28CM00_SMBUS_MODE); };
|
|
bool getMode(uint8_t &mode);
|
|
|
|
private:
|
|
bool setMode(uint8_t m);
|
|
TwoWire* _wire;
|
|
};
|
|
|
|
// -- END OF FILE --
|