Skip to content

Commit 8c6d773

Browse files
Update README.md
1 parent 5c8bed4 commit 8c6d773

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ A resistive divider can be formed with the thermistor on the top or the bottom;
1010

1111
The resistance of the bias resistor in the voltage divider should be equal to the nominal resistance of the thermistor (the resistance at T0). This simplifies the temperature calculation and allows the largest dynamic range.
1212

13-
The center of the divider must be connected to a pin capable of analog input. On the imp001, any pin can be used as an analog input. On the imp002, imp003 and imp004m, only some pins can be configured this way, so check the [Imp Pin Mux chart](http://electricimp.com/docs/hardware/imp/pinmux/). The imp005 does not support analog input.
13+
The center of the divider must be connected to a pin capable of analog input. On the imp001, any pin can be used as an analog input. On the imp002, imp003 and imp004m, only some pins can be configured this way, so check the appropriate [Imp Pin Mux chart](http://electricimp.com/docs/hardware/imp/pinmux/). The imp005 does not support analog input.
1414

1515
## Class Usage
1616

@@ -20,7 +20,7 @@ The Thermistor class takes three to five parameters. Three are required, two are
2020

2121
| Parameter Name | Description | Optional/Required |
2222
|----------------|-------------|-------------------|
23-
| *pin* | Imp pin object capable of ANALOG_IN | Required |
23+
| *pin* | Imp pin object capable of analog input | Required |
2424
| *b_therm* | Thermistor ß parameter, from datasheet | Required |
2525
| *t0_therm* | Thermistor T0 parameter, from datasheet | Required |
2626
| *points* | Number of readings to average when reading the thermistor | Optional, defaults to 10 |
@@ -40,7 +40,7 @@ const t0_therm = 298.15;
4040
pin <- hardware.pinJ;
4141
4242
// Thermistor on bottom of divider
43-
therm <- Thermistor(pin, b_therm, t0_therm, 10, false)
43+
therm <- Thermistor(pin, b_therm, t0_therm, 10, false);
4444
```
4545

4646
## Class Methods

0 commit comments

Comments
 (0)