Design a task using Arduino UNO with the following requirements
Button Press Actions
Button Debouncing
INTERRUPT
while()
loop as shown below code, so use Interrupts to perform other tasks.The void loop()
function must be executed and remain exactly as provided in the below code
void loop() {
while (true) {
//In this loop Microcontroller is busy in monitoring and performing important tasks constantly.
}
}