You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi.
"is_ready()" does not return "false" when D-OUT pin disconnected.
the reason is noise caused by High-Impedance of input pin.
the solution is to configure internal pull-up resistor.
so in begin():
pinMode(DOUT, INPUT);
should change to:
pinMode(DOUT, INPUT_PULLUP);
The text was updated successfully, but these errors were encountered:
HamidSaffari
changed the title
"is_ready()" do not return "false" when D-OUT pin disconnected.
"is_ready()" does not return "false" when D-OUT pin disconnected.
Apr 5, 2019
Hi.
"is_ready()" does not return "false" when D-OUT pin disconnected.
the reason is noise caused by High-Impedance of input pin.
the solution is to configure internal pull-up resistor.
so in begin():
pinMode(DOUT, INPUT);
should change to:
pinMode(DOUT, INPUT_PULLUP);
The text was updated successfully, but these errors were encountered: