-->
Page 2 of 3

Re: Problem with Hx711 module and the NodeMCU

PostPosted: Mon Jun 19, 2017 7:27 pm
by yukardo
Thanks for your help martinayotte,

Another question. Where can I find that pin information? How do I know what can I connect to it?

Thanks.

Re: Problem with Hx711 module and the NodeMCU

PostPosted: Tue Jun 20, 2017 5:36 am
by QuickFix
yukardo wrote:Where can I find that pin information? How do I know what can I connect to it?

Normally I don't like answers like this, but... have you tried Google? :idea:

Image

Re: Problem with Hx711 module and the NodeMCU

PostPosted: Tue Jun 20, 2017 5:52 am
by yukardo
Yes QuickFix I have google and I have that pinout.

But that pinout does not say what I can/cannot connect to every pin. That is the problem, maybe I am using some pins as input and I should not use those for that purpuse.

That was my question.

Sorry if it so stupid.

Thanks.

Re: Problem with Hx711 module and the NodeMCU

PostPosted: Tue Jun 20, 2017 1:01 pm
by QuickFix
yukardo wrote:maybe I am using some pins as input and I should not use those for that purpuse.

The GPIO-pins are... uhm GPIO-pins, which means General-Purpose Input/Output
You can use them as input or output, depending on how you declare them in code.

Some pins may have special uses (for instance you can only wake up from deep sleep by connecting GPIO16 to RST, GPIO0 to enter Flash-mode or GPIO13 and GPIO15 for a second, debug, serial port), but can be used as normal GPIO pins (except for GPIO0 which can only be an output).
And some pins are dedicated to a specific function, like ADC-pin "ADC0".

You can find all documentation for the ESP8266 on the Espressif website. :idea: