-1

I want to connect a DS18B20 to my newly bought Heltec ESP32 LoRa (V2). For initial testing I have used some standard code:

#include "heltec.h"
#include <OneWire.h>
#include <DallasTemperature.h>
OneWire ds(14);
DallasTemperature sensors(&ds);
void getDS18B20values()
{
 Serial.print(" Requesting therms...");
 sensors.requestTemperatures();
 Serial.println("DONE");
 uint8_t count = sensors.getDeviceCount();
 for (int i = 0; i < count; i++)
 {
 Serial.print("Temperature " + String(i) + "is: " + String(sensors.getTempCByIndex(i)));
 }
 delay(1000);
}
void setup()
{
 //WIFI Kit series V1 not support Vext control
 Heltec.begin(
 true /*DisplayEnable Enable*/,
 true /*Heltec.LoRa Disable*/,
 true /*Serial Enable*/,
 true /*PABOOST Enable*/,
 868E6/*long BAND*/);
 sensors.begin(); // initialize therm-sensors
}
void loop()
{
 getDS18B20values();
 delay(1500);
}

Here's a quick schematic I designed with the designer provided by stackexchange. Not all parts were available so I had to improvise a litte. I hope it is accurate enough.

schematic

simulate this circuit – Schematic created using CircuitLab

Another weird thing is that if I wire it all up I can start the ESP but I can't flash any new software to it because it doesn't react. So I assume it's a wiring issue the code should be fine but I posted it anyway. I had tested it with multiple DS18B20 sensors. A while ago on an Arduino they were all still working. I am more experienced with Arduinos than with ESPs. Are there any differences in regard to the wiring I have to be careful of?

Edit: I already have some sensored wired to the ESP, a BH1750, DHT11, an analog soil moisture sensor and an analog light dependent resistor.

asked Jun 6, 2020 at 8:27
2
  • Please just use a blank rectangle if you can't find the proper schematic symbols instead of random components. Commented Jun 6, 2020 at 9:18
  • You should become sceptical when connecting two pins of a device together :) if that was correct, the manufacturer hinself could have connected those pins inside the device and one of the pins wouldn't be there Commented Jun 6, 2020 at 22:23

1 Answer 1

1

I have not checked your code, but you certainly have a wiring issue.

There are two main problems.

  1. Your Vcc is connected to the data output of the DS18B20. This means you will never read anything except logic "high" from the data output.
  2. The 4k7 resistor should not be connected this way. See the schematic below on how it should be connected. You could also set up a data pin with an internal pullup so you don't need an external pullup.

This is roughly how it should look.

schematic

simulate this circuit – Schematic created using CircuitLab

answered Jun 6, 2020 at 9:35

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.