0 votes
in Internet of Things IoT by
What are Interrupts in Arduino?

1 Answer

0 votes
by

Interrupts allow certain important tasks to happen in the background and are enabled by default. An Interrupt’s job is to make sure that the processor responds quickly to important events. When a certain signal is detected, an Interrupt interrupts whatever the processor is doing, and executes some code designed to react.

...