Finally got this DS18B20 working. Actually three of them. And in two modes. Parasite power mode and main mode.
A 4.7K ohm resistor is the key.
Starting with the main mode, three wires are needed, as this sensor has three pins.
Data sheet is here http://datasheets.maxim-ic.com/en/ds/DS18B20.pdf.
Connection is almost simple.
Pin 1 to Arduino ground
Pin 2 to Arduino digital input
Pin 3 to Arduino 5V
And a 4.7K resistor between pin 2 and pin 3
Works with three wires, as seen on the following illustration.
Parasite mode eliminates one wire.
Pin 1 to Arduino ground
Pin 2 to Arduino digital input
Pin 3 to Arduino ground (same as pin 1)
And a 4.7K resistor from pin 2 to 5V
Maybe following illustration helps.
Of course multiple DS18B20-s or different one wire devices can connected together like so:
Here comes the beauty of using digital thermometers. One pin on Arduino can be used for multiple devices, working together over one wire. Much like ethernet actually. Each device has its own unique address.
Second, a two wire cable can be used. Those are usually much easier to find than three wire cables. Also digital 1-wire thermometers work on longer cables. A simple test is cable-length-for-lm35-and-ds18b20.
Some words of caution:
No pins on DS18B20 should be left unconnected. Sometimes it works this way, sometimes it does not.
If using http://milesburton.com/index.php?title=Dallas_Temperature_Control_Library one should avoid mixing main mode and parasite mode thermometers on the same pin. Sometimes it works, sometimes it does not.
Software? look no further than
http://milesburton.com/index.php?title=Dallas_Temperature_Control_Library
Works well and has some nice examples too.
DS18B20 can also be installed outside. Some kind of protection is advisable. I had one sensor outside, minimum temperature about -30° C, maximum about +35° C, protected like this. No problems so far.
Working with three DS18B20 thermometers for a year now – sometimes those thermometers do not get initialized correctly. Specially after power fluctuations. Hard reset helps in that case.
hey,
for your 4.7kohm resistor, what was the wattage that you used? 1/6W? or will 1/4 or 1/2 work too? and what tolerance % was it too?
thanks
-C
I used 1/4W resistors, but as far as I know, it does not really matter. Tolerance 5%. It should matter even less.
Hi how you make the hard reset with this sensor?
Pingback: Link: How to use the DS18S20 and DS18B20 temperature sensors with Arduino or Raspberry Pi » TechNotes