Interrupts Flashcards

1
Q

are the section of hardware and software on microcontroller which is capable of monitoring the external event on the input pin

A

Interrupts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Types of Interrupts

A
  • Hardware
  • Software
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

These occur in response to an external event, like
a pin going high or low.

A

Hardware Interrupts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

These occur in response to a software instruction.

A

Software Interrupts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

There are five types of triggering Arduino interrupts

A
  • CHANGE
  • RISING
  • FALLING
  • LOW
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

When signal change even if signal rise or signal fall or if the signal is in low state at 0 or if the signal is in high state trigger 5v

A

CHANGE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

On a _____ edge the signal going from low to high means signal triggering from 0v to 5v

A

RISING

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

On a _____ edge the signal going from high to low means signal is triggering from 5v to 0v

A

FALLING

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Is a continuous trigger whenever the signal is low in other words the signal is on 0v

A

LOW

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Functions of Interrupts

A
  • interrupts()
  • noInterrupts()
  • attachInterrupt()
How well did you know this?
1
Not at all
2
3
4
5
Perfectly