push button and keypad

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/18

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 3:10 AM on 4/27/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

19 Terms

1
New cards

what is the primary function of a push button switch

Connect two contacts to allow current flow

2
New cards

Pushbutton has four pins, how many actual electrical connections does a tactile push-button have?

2

3
New cards

Why are pull-up or pull-down resistors used in button circuits?

To ensure stable input and avoid floating states

4
New cards

What can happen if a push-button is connected without a resistor?

Input may float and give unreliable readings

5
New cards

Which Arduino code keyword enables the internal pull-up resistor?

input pullup

6
New cards

What does a pull-down resistor do in a push-button circuit?

Pulls signal LOW when button is open

7
New cards

What does a pull-down resistor do in a push-button circuit?

Pulls signal LOW when button is open

8
New cards

What value resistor is commonly used as a pull-down resistor?

10k

9
New cards

What issue does debouncing address?

Noisy signals from mechanical buttons

10
New cards

Why is “digitalRead” used in button programs?

To read the state of the button

11
New cards

Which state is interpreted as “pressed” in INPUT_PULLUP mode?

low

12
New cards

Which pin mode requires an external resistor?

input

13
New cards

what is a keypad made of

Matrix of buttons arranged in rows and columns

14
New cards

What happens when a keypad button is pressed?

A row and a column are connected

15
New cards

Which combination corresponds to pressing number 5 on a 4x4 keypad?

Row 2, Column 2

16
New cards

How does Arduino detect a pressed key on the keypad?

It checks for continuity between specific row and column pins

17
New cards

What does the Keypad.h library help with?

Interpreting key presses from matrix keypads

18
New cards

Why must each row and column of the keypad be mapped in the code?

To determine which key was pressed

19
New cards

Which of the following devices most likely contains a matrix keypad?

Microwave oven