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
This is an NRF5 specific pulldown mode, which is very useful to detect
tri-state (low,high, high-impedence) output from chips (eg. MCP73831)
If you add these lines in wiring_digital.cpp within the pinMode functions switch statement, it fixes this problem.
case INPUT_PULLDOWN :
direction = PIN_INPUT;
pin_mode = PullDown;
break;
The text was updated successfully, but these errors were encountered:
This is an NRF5 specific pulldown mode, which is very useful to detect
tri-state (low,high, high-impedence) output from chips (eg. MCP73831)
If you add these lines in wiring_digital.cpp within the pinMode functions switch statement, it fixes this problem.
case INPUT_PULLDOWN :
direction = PIN_INPUT;
pin_mode = PullDown;
break;
The text was updated successfully, but these errors were encountered: