C code and C++ library, driver software for Maxim Integrated DS1775, DS75 thermometer and thermostat temperature sensor. Code supports continuous or shut-down/standby, hysteresis, alarm limits, comparator or interrupt mode, fault filtering, and active low/high. Compact 5-pin SOT23 packaging

Dependents:   DS1775_Digital_Thermostat_Temperature

Files at this revision

API Documentation at this revision

Comitter:
phonemacro
Date:
Wed Apr 10 18:07:50 2019 +0000
Parent:
19:ccd43cedfd47
Commit message:
remove extra waits in conversion

Changed in this revision

ds1775.h Show annotated file Show diff for this revision Revisions of this file
diff -r ccd43cedfd47 -r cf75ff9e5560 ds1775.h
--- a/ds1775.h	Mon Apr 08 20:18:50 2019 +0000
+++ b/ds1775.h	Wed Apr 10 18:07:50 2019 +0000
@@ -45,7 +45,7 @@
 #define DS1775_REG_TOS_HIGH_TRIP    0X03 
 #define DS1775_REG_MAX              0X03
 
-#define WAIT_MARGIN (0.0006)
+#define WAIT_MARGIN (0.0000)
 #define DS1775_WAIT_CONV_TIME_9BIT  (0.1875+WAIT_MARGIN)
 #define DS1775_WAIT_CONV_TIME_10BIT (0.375+2*WAIT_MARGIN)
 #define DS1775_WAIT_CONV_TIME_11BIT (0.750+4*WAIT_MARGIN)