Skip to content

Commit d97bb3d

Browse files
authored
Merge branch 'milesburton:master' into master
2 parents ca93072 + cced10d commit d97bb3d

File tree

3 files changed

+45
-32
lines changed

3 files changed

+45
-32
lines changed

DallasTemperature.cpp

+22-17
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
// License as published by the Free Software Foundation; either
44
// version 2.1 of the License, or (at your option) any later version.
55

6-
#include "DallasTemperature.h"
7-
86
// for Particle support
97
// yield() is not a standard function, but instead wraps Particle process
108
// https://community.particle.io/t/syscall-yield-operation/40708/2
@@ -20,6 +18,8 @@ extern "C" {
2018
}
2119
#endif
2220

21+
#include "DallasTemperature.h"
22+
2323
// OneWire commands
2424
#define STARTCONVO 0x44 // Tells device to take a temperature reading and put it on the scratchpad
2525
#define COPYSCRATCH 0x48 // Copy scratchpad to EEPROM
@@ -152,19 +152,19 @@ bool DallasTemperature::validAddress(const uint8_t* deviceAddress) {
152152
// finds an address at a given index on the bus
153153
// returns true if the device was found
154154
bool DallasTemperature::getAddress(uint8_t* deviceAddress, uint8_t index) {
155+
if (index < devices) {
156+
uint8_t depth = 0;
155157

156-
uint8_t depth = 0;
157-
158-
_wire->reset_search();
158+
_wire->reset_search();
159159

160-
while (depth <= index && _wire->search(deviceAddress)) {
161-
if (depth == index && validAddress(deviceAddress))
162-
return true;
163-
depth++;
160+
while (depth <= index && _wire->search(deviceAddress)) {
161+
if (depth == index && validAddress(deviceAddress))
162+
return true;
163+
depth++;
164+
}
164165
}
165166

166167
return false;
167-
168168
}
169169

170170
// attempt to determine if the device at the given address is connected to the bus
@@ -723,22 +723,27 @@ int32_t DallasTemperature::calculateTemperature(const uint8_t* deviceAddress,
723723
// the numeric value of DEVICE_DISCONNECTED_RAW is defined in
724724
// DallasTemperature.h. It is a large negative number outside the
725725
// operating range of the device
726-
int32_t DallasTemperature::getTemp(const uint8_t* deviceAddress) {
726+
int32_t DallasTemperature::getTemp(const uint8_t* deviceAddress, byte retryCount = 0) {
727727

728728
ScratchPad scratchPad;
729-
if (isConnected(deviceAddress, scratchPad))
730-
return calculateTemperature(deviceAddress, scratchPad);
731-
return DEVICE_DISCONNECTED_RAW;
732-
729+
730+
byte retries = 0;
731+
732+
while (retries++ <= retryCount) {
733+
if (isConnected(deviceAddress, scratchPad))
734+
return calculateTemperature(deviceAddress, scratchPad);
735+
}
736+
737+
return DEVICE_DISCONNECTED_RAW;
733738
}
734739

735740
// returns temperature in degrees C or DEVICE_DISCONNECTED_C if the
736741
// device's scratch pad cannot be read successfully.
737742
// the numeric value of DEVICE_DISCONNECTED_C is defined in
738743
// DallasTemperature.h. It is a large negative number outside the
739744
// operating range of the device
740-
float DallasTemperature::getTempC(const uint8_t* deviceAddress) {
741-
return rawToCelsius(getTemp(deviceAddress));
745+
float DallasTemperature::getTempC(const uint8_t* deviceAddress, byte retryCount = 0) {
746+
return rawToCelsius(getTemp(deviceAddress, retryCount));
742747
}
743748

744749
// returns temperature in degrees F or DEVICE_DISCONNECTED_F if the

DallasTemperature.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,10 @@ class DallasTemperature {
159159
request_t requestTemperaturesByIndex(uint8_t);
160160

161161
// returns temperature raw value (12 bit integer of 1/128 degrees C)
162-
int32_t getTemp(const uint8_t*);
162+
int32_t getTemp(const uint8_t*, byte retryCount = 0);
163163

164164
// returns temperature in degrees C
165-
float getTempC(const uint8_t*);
165+
float getTempC(const uint8_t*, byte retryCount = 0);
166166

167167
// returns temperature in degrees F
168168
float getTempF(const uint8_t*);

README.md

+21-13
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,24 @@ https://www.milesburton.com/w/index.php/Dallas_Temperature_Control_Library
6767

6868
# License
6969

70-
This library is free software; you can redistribute it and/or
71-
modify it under the terms of the GNU Lesser General Public
72-
License as published by the Free Software Foundation; either
73-
version 2.1 of the License, or (at your option) any later version.
74-
75-
This library is distributed in the hope that it will be useful,
76-
but WITHOUT ANY WARRANTY; without even the implied warranty of
77-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
78-
Lesser General Public License for more details.
79-
80-
You should have received a copy of the GNU Lesser General Public
81-
License along with this library; if not, write to the Free Software
82-
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
70+
MIT License
71+
72+
Copyright (c) [2025] [Miles Burton]
73+
74+
Permission is hereby granted, free of charge, to any person obtaining a copy
75+
of this software and associated documentation files (the "Software"), to deal
76+
in the Software without restriction, including without limitation the rights
77+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
78+
copies of the Software, and to permit persons to whom the Software is
79+
furnished to do so, subject to the following conditions:
80+
81+
The above copyright notice and this permission notice shall be included in all
82+
copies or substantial portions of the Software.
83+
84+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
85+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
86+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
87+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
88+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
89+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
90+
SOFTWARE.

0 commit comments

Comments
 (0)