Page 1 of 1

ESP8266 Thing analogPin/analogRead

Posted: Fri Jul 20, 2018 10:34 am
by hsadeghilam
Which pins on ESP8266 can be used as analogPin to do analogRead? I connected wires with 20 mA current to pins 4 and 0 and my board became very hot!

Re: ESP8266 Thing analogPin/analogRead

Posted: Fri Jul 20, 2018 12:10 pm
by paulvha
You do NOT provide current, you provide voltage. On an ESP8266 thing that should be max 1V on the A0/ADC. The current is based on the voltage divided by the internal + external resistance.

Re: ESP8266 Thing analogPin/analogRead

Posted: Fri Jul 20, 2018 12:41 pm
by hsadeghilam
So one wire goes to ADC and the other one to GND? How I can find the value of internal+external resistance? When I measure the voltage of my wires its about 25 V. How can I reduced it to 1 V?

Re: ESP8266 Thing analogPin/analogRead

Posted: Fri Jul 20, 2018 2:40 pm
by paulvha
Indeed input to the ADC and the other to GND. If we you have max 25V make a voltage divider: take 2 resistors serial: 1K (connect to GND, ADC and resistor 2), the other resistor2 :24K connected the 1K, ADC and the power source (25V). That way the maximum voltage is 1V to the ADC.

Re: ESP8266 Thing analogPin/analogRead

Posted: Fri Jul 20, 2018 2:52 pm
by hsadeghilam
I just tried it and surprisingly I figured out my sensor spits out a variable current (at a constant voltage), so reading voltage does not work for me. Any suggestion on how I can read current?

Re: ESP8266 Thing analogPin/analogRead

Posted: Fri Jul 20, 2018 4:34 pm
by n1ist
Pass the current through a resistor and measure the voltage across it
/mike

Re: ESP8266 Thing analogPin/analogRead

Posted: Mon Jul 23, 2018 9:00 am
by hsadeghilam
Thanks! It worked fine :)