6 * National Semiconductor LM75
10 Addresses scanned: I2C 0x48 - 0x4f
12 Datasheet: Publicly available at the National Semiconductor website
14 http://www.national.com/
16 * National Semiconductor LM75A
20 Addresses scanned: I2C 0x48 - 0x4f
22 Datasheet: Publicly available at the National Semiconductor website
24 http://www.national.com/
26 * Dallas Semiconductor (now Maxim) DS75, DS1775, DS7505
28 Prefixes: 'ds75', 'ds1775', 'ds7505'
30 Addresses scanned: none
32 Datasheet: Publicly available at the Maxim website
34 https://www.maximintegrated.com/
36 * Maxim MAX6625, MAX6626, MAX31725, MAX31726
38 Prefixes: 'max6625', 'max6626', 'max31725', 'max31726'
40 Addresses scanned: none
42 Datasheet: Publicly available at the Maxim website
44 http://www.maxim-ic.com/
46 * Microchip (TelCom) TCN75
50 Addresses scanned: none
52 Datasheet: Publicly available at the Microchip website
54 http://www.microchip.com/
56 * Microchip MCP9800, MCP9801, MCP9802, MCP9803
60 Addresses scanned: none
62 Datasheet: Publicly available at the Microchip website
64 http://www.microchip.com/
66 * Analog Devices ADT75
70 Addresses scanned: none
72 Datasheet: Publicly available at the Analog Devices website
74 https://www.analog.com/adt75
76 * ST Microelectronics STDS75
80 Addresses scanned: none
82 Datasheet: Publicly available at the ST website
84 http://www.st.com/internet/analog/product/121769.jsp
86 * ST Microelectronics STLM75
90 Addresses scanned: none
92 Datasheet: Publicly available at the ST website
94 https://www.st.com/resource/en/datasheet/stlm75.pdf
96 * Texas Instruments TMP100, TMP101, TMP105, TMP112, TMP75, TMP75B, TMP75C, TMP175, TMP275, TMP1075
98 Prefixes: 'tmp100', 'tmp101', 'tmp105', 'tmp112', 'tmp175', 'tmp75', 'tmp75b', 'tmp75c', 'tmp275', 'tmp1075'
100 Addresses scanned: none
102 Datasheet: Publicly available at the Texas Instruments website
104 https://www.ti.com/product/tmp100
106 https://www.ti.com/product/tmp101
108 https://www.ti.com/product/tmp105
110 https://www.ti.com/product/tmp112
112 https://www.ti.com/product/tmp75
114 https://www.ti.com/product/tmp75b
116 https://www.ti.com/product/tmp75c
118 https://www.ti.com/product/tmp175
120 https://www.ti.com/product/tmp275
122 https://www.ti.com/product/TMP1075
126 Prefix: 'lm75b', 'pct2075'
128 Addresses scanned: none
130 Datasheet: Publicly available at the NXP website
132 https://www.nxp.com/documents/data_sheet/LM75B.pdf
134 https://www.nxp.com/docs/en/data-sheet/PCT2075.pdf
140 Addresses scanned: none
142 Datasheet: Publicly available at the AMS website
144 https://ams.com/documents/20143/36005/AS6200_DS000449_4-00.pdf
146 Author: Frodo Looijaard <frodol@dds.nl>
151 The LM75 implements one temperature sensor. Limits can be set through the
152 Overtemperature Shutdown register and Hysteresis register. Each value can be
153 set and read to half-degree accuracy.
154 An alarm is issued (usually to a connected LM78) when the temperature
155 gets higher then the Overtemperature Shutdown value; it stays on until
156 the temperature falls below the Hysteresis value.
157 All temperatures are in degrees Celsius, and are guaranteed within a
158 range of -55 to +125 degrees.
160 The driver caches the values for a period varying between 1 second for the
161 slowest chips and 125 ms for the fastest chips; reading it more often
162 will do no harm, but will return 'old' values.
164 The original LM75 was typically used in combination with LM78-like chips
165 on PC motherboards, to measure the temperature of the processor(s). Clones
166 are now used in various embedded designs.
168 The LM75 is essentially an industry standard; there may be other
169 LM75 clones not listed here, with or without various enhancements,
170 that are supported. The clones are not detected by the driver, unless
171 they reproduce the exact register tricks of the original LM75, and must
172 therefore be instantiated explicitly. Higher resolution up to 16-bit
173 is supported by this driver, other specific enhancements are not.
175 The LM77 is not supported, contrary to what we pretended for a long time.
176 Both chips are simply not compatible, value encoding differs.