Internal Pull down resistors

Do you know if arduino q/ zephir side allowts to declare a pin as input internal pulldown resistor?.

Thanks

Hi @amuntanerc. Yes, just use the INPUT_PULLDOWN mode:

pinMode(somePin, INPUT_PULLDOWN);

thank you

1 Like