GY-63_MS5611/libraries/DS2438/README.md

246 lines
7.6 KiB
Markdown
Raw Normal View History

2024-01-26 15:42:18 -05:00
[![Arduino CI](https://github.com/RobTillaart/DS2438/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
[![Arduino-lint](https://github.com/RobTillaart/DS2438/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/DS2438/actions/workflows/arduino-lint.yml)
[![JSON check](https://github.com/RobTillaart/DS2438/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/DS2438/actions/workflows/jsoncheck.yml)
[![GitHub issues](https://img.shields.io/github/issues/RobTillaart/DS2438.svg)](https://github.com/RobTillaart/DS2438/issues)
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/DS2438/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/RobTillaart/DS2438.svg?maxAge=3600)](https://github.com/RobTillaart/DS2438/releases)
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/robtillaart/library/DS2438.svg)](https://registry.platformio.org/libraries/robtillaart/DS2438)
# DS2438
Arduino Library for the DS2438 1-wire battery monitor.
## Description
The DS2438 is a **very experimental** library for the DS2438 battery management sensor.
2024-01-27 11:16:37 -05:00
The library is not tested yet as I have no hardware (breakout board).
So for the moment the library is written based upon the datasheet and provided as is.
2024-01-26 15:42:18 -05:00
The device supports the following functionality.
- voltage measurement
- temperature measurement
- current measurement.
- 40 bytes non-volatile EEPROM memory
- Elapsed time meter in binary format
This library supports only one DS2438 per Arduino / MCU pin.
As always, feedback is welcome.
#### Hardware pins
Need to find a breakout.
See datasheet for details
```
DS2438
+------------------+
| 1 GND |
| 2 Vsense+ |
| 3 Vsense- |
2024-01-27 11:16:37 -05:00
| 4 VAD |
2024-01-26 15:42:18 -05:00
| 5 VDD |
| 6 NC |
| 7 NC |
| 8 DQ |
+------------------+
```
| Pin | Description | Connect to |
|:--------:|:------------------------------------|:-------------|
| DQ | Data In/Out | processor |
| VAD | General A/D input | |
| VSENS+ | Battery current monitor input (+) | Battery |
| VSENS- | Battery current monitor input (-) | Battery |
| VDD | Power Supply (2.4V to 10.0V) | +5V |
| GND | Ground | processor |
| NC | No connect | - |
|
#### Related
- https://github.com/RobTillaart/DS2438
- https://github.com/RobTillaart/Temperature (conversions)
## Interface
```cpp
#include "DS2438.h"
```
#### Constructor
- **DS2438(OneWire \* ow)** constructor needs a reference to OneWire object.
- **bool begin(uint8_t retries = 3)** resets oneWire.
Returns true if address / device is found and all is OK.
There will be a number of retries to connect, default 3.
- **bool isConnected(uint8_t retries = 3)** Returns true if address / device is found.
There will be a number of retries to connect, default 3.
#### Temperature and voltage
2024-01-27 11:16:37 -05:00
- **float readTemperature()** read temperature from device. Units = Celsius.
2024-01-26 15:42:18 -05:00
- **float getTemperature()** get the last read temperature.
2024-01-27 11:16:37 -05:00
- **float readVDD()** read voltage VDD from device. Units = Volts.
- **float getVDD()** get the last read voltage VDD.
- **float readVAD()** read voltage VAD. Units = Volts.
- **float getVAD()** get the last read voltage VAD.
2024-01-26 15:42:18 -05:00
#### Current
2024-01-27 11:16:37 -05:00
See datasheet for details.
Choice of the resistor determines the working range / accuracy.
2024-01-26 15:42:18 -05:00
- **void setResistor(float resistor = 0.01)** set the shunt resistor in OHM.
This allows a sort of tuning/calibration.
- **void enableCurrentMeasurement()** set IAD bit, see datasheet.
Starts the background measurement of the current.
Takes ~28 milliseconds for a measurement.
Must be called before readCurrent will work.
- **void disableCurrentMeasurement()** clear IAD bit, see datasheet.
Stops the background measurement of the current.
- **float readCurrent()** read current from device.
- **float getCurrent()** get last read current.
- **void writeCurrentOffset(int value)**
- **int readCurrentOffset()**
2024-01-27 11:16:37 -05:00
#### ICA
2024-01-26 15:42:18 -05:00
See datasheet for details.
2024-01-27 11:16:37 -05:00
- ICA = Integrated Current Accumulator.
- **float readRemaining()**
2024-01-26 15:42:18 -05:00
- **void writeThreshold(uint8_t value)**
- **uint8_t readThreshold()**
2024-01-27 11:16:37 -05:00
Only 4 values possible.
2024-01-26 15:42:18 -05:00
2024-01-27 11:16:37 -05:00
| value | Threshold |
2024-01-26 15:42:18 -05:00
|:-------:|:----------------:|
| 0x00 | None (default) |
| 0x40 | ±2 LSB |
| 0x80 | ±4 LSB |
| 0xC0 | ±8 LSB |
#### Time
From datasheet:
The elapsed time meter (ETM) is a 4-byte binary counter with 1-second resolution.
The ETM can accumulate 136 years of seconds before rolling over.
Time/date is represented by the number of seconds since a reference point, which is determined by the user.
For example, 12:00 A.M., January 1, 1970 could be used as a reference point.
- **void writeElapsedTimeMeter(uint32_t value)** value in seconds.
- **uint32_t readElapsedTimeMeter()** returns current time in seconds.
2024-01-27 11:16:37 -05:00
- **uint32_t readDisconnectTime()** returns last disconnect timestamp.
- **uint32_t readEndOfChargeTime()** returns last end of charging timestamp.
2024-01-26 15:42:18 -05:00
#### EEPROM
2024-01-27 11:16:37 -05:00
Valid addresses are 0..35 if CCA/DCA is enabled, 0..39 otherwise.
2024-01-26 15:42:18 -05:00
- **bool writeEEPROM(uint8_t address, uint8_t value)** write a byte to EEPROM address.
- **uint8_t readEEPROM(uint8_t address)** read the byte from EEPROM address.
2024-01-27 11:16:37 -05:00
#### CCA DCA
See datasheet for details.
- CCA = Charging Current Accumulator
- DCA = Discharge Current Accumulator
- **void enableCCA()** also enables DCA.
- **void disableCCA()**
- **float readCCA()** Does not check if enabled.
- **float readDCA()** Does not check if enabled.
2024-01-26 15:42:18 -05:00
#### Configuration register
See datasheet for details.
2024-01-27 11:16:37 -05:00
- **void setConfigBit(uint8_t bit)** bit = 0..3
- **void clearConfigBit(uint8_t bit)** bit = 0..3
- **uint8_t getConfigRegister()** returns configuration and status bits.
| bit | name | def | description |
|:-----:|:------:|:------:|:--------------|
| 0 | IAD | 1 | Current A/D Control bit.
| 1 | CA | 1 | Current Accumulator Configuration bit.
| 2 | EE | 1 | Current Accumulator Shadow Selector bit.
| 3 | AD | 1 | Voltage A/D Input Select bit. 1 = VDD, 0 = VAD.
| 4 | TB | 0 | Temperature Busy Flag.
| 5 | NVB | 0 | Non Volatile Memory Busy Flag.
| 6 | ADB | 0 | A/D Converter Busy Flag.
| 7 | x | x | don't care.
2024-01-26 15:42:18 -05:00
## Operation
This library supports only one DS2438 per Arduino / MCU pin.
## Future
#### Must
- Improve documentation (a lot).
- test with hardware or simulator?.
- examples for testing.
#### Should
2024-01-27 11:16:37 -05:00
- implement CRC
2024-01-26 15:42:18 -05:00
#### Could
2024-01-27 11:16:37 -05:00
only after testing and code works.
2024-01-26 15:42:18 -05:00
2024-01-27 11:16:37 -05:00
- getters,
- remove? == user responibility?
- renaming: getVDD() vs getLastVDD? et al.
2024-01-26 15:42:18 -05:00
- unit tests?
- possible?
- async interface for both T and V.
- optimize the code.
- cache registers?
- improve magic masks and numbers
- performance test.
- getAddress() ?
2024-01-27 11:16:37 -05:00
- debugging
- error handling.
2024-01-26 15:42:18 -05:00
- copy snapshot to EEPROM(page)
- copies page 0 to EEPROM page 0..4
#### Wont
## Support
If you appreciate my libraries, you can support the development and maintenance.
Improve the quality of the libraries by providing issues and Pull Requests, or
donate through PayPal or GitHub sponsors.
Thank you,