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

Revision:
13:5726f1d1404c
Parent:
10:03645de9c017
Child:
15:449134e4b43f
--- a/ds1775.h	Sun Apr 07 11:01:21 2019 +0000
+++ b/ds1775.h	Sun Apr 07 11:05:28 2019 +0000
@@ -51,6 +51,11 @@
 #define DS1775_WAIT_CONV_TIME_11BIT (0.750)
 #define DS1775_WAIT_CONV_TIME_12BIT (1.5)
 
+#define DS75_WAIT_CONV_TIME_9BIT  (0.12)
+#define DS75_WAIT_CONV_TIME_10BIT (0.3)
+#define DS75_WAIT_CONV_TIME_11BIT (0.6)
+#define DS75_WAIT_CONV_TIME_12BIT (1.2)
+
 #define DS1775_CFG_CONTINUOUS       (0X00 << 0)
 #define DS1775_CFG_SHUTDOWN         (0X01 << 0)