27
27
examples/simpletest.py for an example of the usage.
28
28
29
29
* Author(s): Tony DiCola
30
+
31
+ Implementation Notes
32
+ --------------------
33
+
34
+ **Hardware:**
35
+
36
+ * Adafruit `Universal Thermocouple Amplifier MAX31856 Breakout
37
+ <https://www.adafruit.com/product/3263>`_ (Product ID: 3263)
38
+
39
+ * Adafruit `PT100 RTD Temperature Sensor Amplifier - MAX31865
40
+ <https://www.adafruit.com/product/3328>`_ (Product ID: 3328)
41
+
42
+ * Adafruit `PT1000 RTD Temperature Sensor Amplifier - MAX31865
43
+ <https://www.adafruit.com/product/3648>`_ (Product ID: 3648)
44
+
45
+ **Software and Dependencies:**
46
+
47
+ * Adafruit CircuitPython firmware for the ESP8622 and M0-based boards:
48
+ https://github.com/adafruit/circuitpython/releases
49
+ * Adafruit's Bus Device library: https://github.com/adafruit/Adafruit_CircuitPython_BusDevice
30
50
"""
31
51
import math
32
52
import time
@@ -118,7 +138,7 @@ def _write_u8(self, address, val):
118
138
119
139
@property
120
140
def bias (self ):
121
- """Get and set the boolean state of the sensor's bias (True/False)."""
141
+ """The state of the sensor's bias (True/False)."""
122
142
return bool (self ._read_u8 (_MAX31865_CONFIG_REG ) & _MAX31865_CONFIG_BIAS )
123
143
124
144
@bias .setter
@@ -132,7 +152,7 @@ def bias(self, val):
132
152
133
153
@property
134
154
def auto_convert (self ):
135
- """Get and set the boolean state of the sensor's automatic conversion
155
+ """The state of the sensor's automatic conversion
136
156
mode (True/False).
137
157
"""
138
158
return bool (self ._read_u8 (_MAX31865_CONFIG_REG ) & _MAX31865_CONFIG_MODEAUTO )
@@ -148,7 +168,7 @@ def auto_convert(self, val):
148
168
149
169
@property
150
170
def fault (self ):
151
- """Get the fault state of the sensor. Use `clear_faults` to clear the
171
+ """The fault state of the sensor. Use `` clear_faults()` ` to clear the
152
172
fault state. Returns a 6-tuple of boolean values which indicate if any
153
173
faults are present:
154
174
- HIGHTHRESH
0 commit comments