Update TODOs in README

This commit is contained in:
Theodor Teslia 2023-04-27 19:52:26 +02:00
parent f3097b7f25
commit 726e7f6de0

View File

@ -1,6 +1,6 @@
# Driver for the MS5607 pressure sensor # Driver for the MS5607 pressure sensor
# Usage ## Usage
1. The driver has two main methods: ```int32_t getPressure()``` and ```int32_t getTemperature()``` 1. The driver has two main methods: ```int32_t getPressure()``` and ```int32_t getTemperature()```
2. The constructor takes an SpiDevice pointer and an instance from the OsrLevel enum 2. The constructor takes an SpiDevice pointer and an instance from the OsrLevel enum
3. The OsrLevel enum stores the possible values for the OSR (how fine the sensor measures or sth.) 3. The OsrLevel enum stores the possible values for the OSR (how fine the sensor measures or sth.)
@ -8,4 +8,8 @@
## TODO ## TODO
1. Debug 1. Debug
2. Check whether more accurate temp measurements are necessary 2. Add more accurate temperature calculations
3. Change structure of requesting values
- Method for requesting ADC, then return from method to allow MCU to do different things
- Another Method to do the ADC readout and calculations
- Store dT for multiple uses (access only through method, which counts uses down?)