C++ driver software code for Maxim Integrated MAX31723/MAX31722 device temperature sensor. The MAX31723 provides 9 to 12 bits of resolution.
Dependents: MAX31723_Thermostat_Thermometer_Sensor
Revision 5:8e70ec0923e2, committed 2019-01-30
- Comitter:
- phonemacro
- Date:
- Wed Jan 30 02:13:51 2019 +0000
- Parent:
- 4:ac75d4d62471
- Child:
- 6:2e49aa7fa091
- Commit message:
- remove delay
Changed in this revision
| max31723.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/max31723.cpp Wed Jan 30 02:13:05 2019 +0000
+++ b/max31723.cpp Wed Jan 30 02:13:51 2019 +0000
@@ -66,7 +66,6 @@
{
if (reg <= MAX31723_REG_MAX) {
m_chip_enable = 1;
- wait(.001);
m_spi.write(reg);
val = m_spi.write(0);
m_chip_enable = 0;