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
diff -r ca86c0b37244 -r 69436cb7b19e ds1775_c.cpp
--- a/ds1775_c.cpp	Mon Apr 08 02:36:00 2019 +0000
+++ b/ds1775_c.cpp	Mon Apr 08 17:02:40 2019 +0000
@@ -171,7 +171,7 @@
 }
 
 
-int ds1775_write_trip_low(float temperature, I2C &i2c_bus)
+int ds1775_write_trip_low_thyst(float temperature, I2C &i2c_bus)
 {
     ds1775_raw_data raw;
     temperature /= DS1775_CF_LSB;
@@ -180,7 +180,7 @@
 }
 
 
-int ds1775_write_trip_high(float temperature, I2C &i2c_bus)
+int ds1775_write_trip_high_tos(float temperature, I2C &i2c_bus)
 {
     ds1775_raw_data raw;
     temperature /= DS1775_CF_LSB;