Comments on: Solar-Powered Outdoor Thermometer with Multiple DS18B20 Sensors https://blog.christophermullins.com/2017/12/24/solar-powered-outdoor-thermometer-with-multiple-ds18b20-sensors/ I occasionally write about things. Usually these things are about computers. Thu, 12 Dec 2019 17:45:52 +0000 hourly 1 https://wordpress.org/?v=5.7.12 By: chris https://blog.christophermullins.com/2017/12/24/solar-powered-outdoor-thermometer-with-multiple-ds18b20-sensors/comment-page-1/#comment-7531 Thu, 12 Dec 2019 17:45:52 +0000 http://blog.christophermullins.com/?p=304#comment-7531 In reply to Brian Hambleton.

I live in an area with very mild weather year-round. It’s generally between 15C and 25C. On rare extreme days, between 5C and 40C.

I made one of these for a family member that lives in much colder weather (winters regularly have days that don’t get above -30C), and it did not do well there either. Ended up putting the ESP8266 in the garage (which stays above 5C), and snaking the probe outside.

]]>
By: Brian Hambleton https://blog.christophermullins.com/2017/12/24/solar-powered-outdoor-thermometer-with-multiple-ds18b20-sensors/comment-page-1/#comment-7530 Thu, 12 Dec 2019 01:56:31 +0000 http://blog.christophermullins.com/?p=304#comment-7530 What sort of temperature range does your device have to endure? I am finding that esp32 module on a DOIT seems to fail at -5 C. I don’t know, yet, if it is the esp itself, or some of the supporting hardware that freezes up.

]]>
By: chris https://blog.christophermullins.com/2017/12/24/solar-powered-outdoor-thermometer-with-multiple-ds18b20-sensors/comment-page-1/#comment-6102 Wed, 03 Jul 2019 23:45:08 +0000 http://blog.christophermullins.com/?p=304#comment-6102 In reply to Dale.

In my experience, PlatformIO is a strictly superior development environment (and by a vast margin). There are pre-compiled binaries if you don’t want to set it up 🙂

If you do much Arduino dev at all, pio is definitely worth setting up.

]]>
By: Dale https://blog.christophermullins.com/2017/12/24/solar-powered-outdoor-thermometer-with-multiple-ds18b20-sensors/comment-page-1/#comment-6101 Wed, 03 Jul 2019 23:42:43 +0000 http://blog.christophermullins.com/?p=304#comment-6101 I agree with Hubert. Would love to see some code that can be compiled with Arduino IDE.

]]>
By: chris https://blog.christophermullins.com/2017/12/24/solar-powered-outdoor-thermometer-with-multiple-ds18b20-sensors/comment-page-1/#comment-5734 Mon, 15 Apr 2019 16:56:14 +0000 http://blog.christophermullins.com/?p=304#comment-5734 In reply to wayne abroue.

Reporting temperatures in Celsius wouldn’t be difficult. Change would be here:

https://github.com/sidoh/esp8266_thermometer/blob/master/lib/TempIface/TempIface.cpp#L33

Voltage is read from the only Analog pin on the ESP8266 — A0:

https://github.com/sidoh/esp8266_thermometer/blob/master/src/main.cpp#L49

you can read more about A0 here:

https://randomnerdtutorials.com/esp8266-adc-reading-analog-values-with-nodemcu/

you’d have to connect Vin from your power source to A0 in order to read voltage (keep in mind that you’ll need a voltage divider if maxV is > 3.3v).

]]>
By: wayne abroue https://blog.christophermullins.com/2017/12/24/solar-powered-outdoor-thermometer-with-multiple-ds18b20-sensors/comment-page-1/#comment-5714 Thu, 11 Apr 2019 17:54:13 +0000 http://blog.christophermullins.com/?p=304#comment-5714 I love it,, Works great on a Nodemcu,, I would love to be able to send to my mqtt in Celsius.

Could you also ,please explain the Voltage parameter,, mine changes from 2 to 1 ,, and decimals also not constant,, sometimes 4 sometimes 2,(possible connection error?) I would love to get e.g. 25.28 only, thanks,,

 

]]>
By: chris https://blog.christophermullins.com/2017/12/24/solar-powered-outdoor-thermometer-with-multiple-ds18b20-sensors/comment-page-1/#comment-5259 Sun, 09 Dec 2018 18:29:33 +0000 http://blog.christophermullins.com/?p=304#comment-5259 In reply to Martin.

Hi Martin, I doubt we could find a way to make it work. While it’s not hard for me to assemble stuff like this, it takes me a long time.

]]>
By: Martin https://blog.christophermullins.com/2017/12/24/solar-powered-outdoor-thermometer-with-multiple-ds18b20-sensors/comment-page-1/#comment-5241 Mon, 03 Dec 2018 19:38:25 +0000 http://blog.christophermullins.com/?p=304#comment-5241 Would you consider selling me one of these either assembled or pre-programmed individual components?

]]>
By: chris https://blog.christophermullins.com/2017/12/24/solar-powered-outdoor-thermometer-with-multiple-ds18b20-sensors/comment-page-1/#comment-4965 Sun, 09 Sep 2018 02:23:57 +0000 http://blog.christophermullins.com/?p=304#comment-4965 In reply to Sandbird.

It’s a good question.

The D1 Mini — and every other dev board I’ve used — has a built-in voltage regulator. As long as you supply the Vin pin, voltage will be regulated down to 3.2v.

You probably are better off with a buck converter, though. The built-in regulators are basically always linear regulators, which are far less efficient than buck converters.

]]>
By: Sandbird https://blog.christophermullins.com/2017/12/24/solar-powered-outdoor-thermometer-with-multiple-ds18b20-sensors/comment-page-1/#comment-4962 Fri, 07 Sep 2018 10:25:06 +0000 http://blog.christophermullins.com/?p=304#comment-4962 Excuse my ignorance but why doesn’t the Wemos D1 need a buck converter ? If your battery gives 3.7v and the ESP takes 3.2v, doesnt it needs to step it down ?
I got a Wemos D1 mini and i dont want to brick it.

]]>