SSH into Root
$ ssh [email protected]
Change Root Password
SSH into Root
$ ssh [email protected]
Change Root Password
| const int buttonPin = 2; // the number of the pushbutton pin | |
| const int ledPin = 13; // the number of the LED pin | |
| int mode = 0; | |
| int debounceTime = 0; | |
| int wasPressed = 0; | |
| void setup() { | |
| pinMode(buttonPin, INPUT); |