Dallas DS18S20 Issue
-
Hi,
I've been experimenting with some sensors and decided to look at some temperature sensors. I knew I had some Dallas DS18... chips lying about, so thought I'd try them. It appears I have DS18S20's and not DS18B20's as you've specified. As it looks like you're using the standard Dallas 1-Wire library by Miles Burton which supports (amongst others) the DS18S20, I thought I'd give it a go.
I'm pleased to report that it works fine, apart from the fact that the first temperature measurement sent back comes in at 85.00C. As you can imagine, with experimenting (powering on/off to move the sensor), this is adding some incorrect data to my logs/charts. The simplest thing I've found is to extend line that reads:
if (lastTemperature[i] != temperature && temperature != -127.00) {
to read as follows:
if (lastTemperature[i] != temperature && temperature != -127.00 && temperature !=85.00) {
This, as you can imagine, just ignores the 85.00C reading and doesn't send it. And so then now, mysensors now supports another temperature sensor
I expect the code could be further expanded to cope with all of the DS18 chips that the library supports (DS18B20, DS1822, DS18S20, DS1820). It'd probably just need to testing to see what oddities these chips may have compared to each other. I assume the ignoring of -127.00 is another issue seen with this family of chips?
The odd thing is that Miles' library page (http://milesburton.com/Main_Page?title=Dallas_Temperature_Control_Library) it states there are problems reported with the DS18S20 chips. I've done some searching, but can't find any information on what these problems may be. I'm only running one DS18S20 on "the wire" and this 85.00C temperature incorrect reading first time is the only issue I've found so far.
Hope this helps someone
LaesQ
-
I've seen this 85 degree value on the DS18B20's as well. I would assume it's common to the whole range, i normally solve this with a sensors begin call followed by a delay in the setup loop, but this addition would be a good add to the sketch imho !
-
Hi, have you tried increasing the delay after the conversion command is send to the DSs? I have noted this behavior when the very first conversion of the DS is not waited long enought to finish, athts why its returning 85 Cº, wich is the power on state of the scratchpad.
Let me know if you try it.
Gonzalo
Suggested Topics
-
Code for beta-testing?
Controllers • 24 Mar 2014, 20:48 • andriej 9 Aug 2014, 10:44 -
RFM95W sleep() directly after send() often doesn't sleep radio
Bug Reports • 1 Jan 2023, 18:41 • prawnpie 8 Jan 2023, 05:36 -
sleep(0) in V2.1 doesn't sleep indefinitely anymore. Used to powerdown and sleep in V1.5
Bug Reports • 22 Nov 2019, 00:35 • GaryStofer 15 Apr 2023, 05:50 -
ESP32 + Signing fails after xxx msg as result of memory leak
Bug Reports • 6 Apr 2020, 18:43 • Technovation 7 Mar 2022, 10:37 -
NRF51-52 PA not support ???
Bug Reports • 23 Feb 2019, 16:40 • berkseo 8 Jul 2021, 11:42 -
Boards esp8266 v3.1.0 or Newer Doesn't Work with MySensors
Bug Reports • 21 Feb 2023, 01:55 • d-smes 25 Feb 2023, 19:37