Arduino: Extend button configuration block to work with the built-in pullup resistor
The current implementation of the button sensor only works correctly if the circuit looks like here: https://www.arduino.cc/en/tutorial/button
Describe the solution you'd like As it is much easier to build the circuit without an external resistor it would be nice to configure the button in a way that the built-in pullup resistors are accessed by setting the pinMode() as INPUT_PULLUP. For this we should add a dropdown in the configuration block, that the user can choose either the VCC connection (with external resistor) or the 5V connection(with the built-in) pullup resistor.
To test this new feature please check this little program with different configuration and corresponding circuits of course. The outcome should always be true, if the button is pressed and false, if the button is not pressed.

Please also check other plugins, especially those who uses the button configuration block