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:
18:69436cb7b19e
Parent:
17:ca86c0b37244
--- a/ds1775_cpp.cpp	Mon Apr 08 02:36:00 2019 +0000
+++ b/ds1775_cpp.cpp	Mon Apr 08 17:02:40 2019 +0000
@@ -174,7 +174,7 @@
 }
 
 /******************************************************************************/
-int DS1775::write_trip_low(float temperature)
+int DS1775::write_trip_low_thyst(float temperature)
 {
     ds1775_raw_data raw;
     temperature /= DS1775_CF_LSB;
@@ -183,7 +183,7 @@
 }
 
 /******************************************************************************/
-int DS1775::write_trip_high(float temperature)
+int DS1775::write_trip_high_tos(float temperature)
 {
     ds1775_raw_data raw;
     temperature /= DS1775_CF_LSB;