Engineering Control Systems

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/21

flashcard set

Earn XP

Description and Tags

i want to genuinely kill myself

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

22 Terms

1
New cards

Motor

spins continuously at power value

2
New cards

Servo

rotates between 0 and 100 degrees

3
New cards

digital sensor examples

Bumber switch and limit switch

4
New cards

Analog Sensor examples

potentiometer

5
New cards

Analog and Digital sensor examples

optical sensor and distance sensor

6
New cards

Potentiometer

-analog sensor

-rotates 0-265 degrees

-value range with max of 4095

7
New cards

distance sensor

-uses laser to measure distance of object in front

-detects an object and determine the relative size

-calculate a robot’s approach speed

range is 20mm-20,000mm

8
New cards

Brain

-21 smart ports

-8 3-wire ports

-stores 8 programs

9
New cards

Smart ports

-auto recognition of any v5 sensor

-auto recognition of any v5 motor

10
New cards

3-wire ports

-analog input: brain displays analog value

-digital input: brain displays digital value

-Digital out high” brain makes a “high” (1) signal to send to device

-digital out low: brain makes a “low” (0) signal to send to device

11
New cards

Digital sensor definition

specific, separate values usually represented as binary 0’s and 1’s

12
New cards

analog sensor

continuous and can take value within a range

13
New cards

“while” loop

allows section of code to repeat as long as condition is true

part of a “while” loop:

-”while”

-condition

-commands to repeat

14
New cards

Condition

controls how long/how many times “while” loop repeats

-condition is checked once every time loop repeats

15
New cards

commands

repeat while condition is true

16
New cards

Boolean logic

program decision based on questions

only two possible answers:

-yes/no

-true/false

17
New cards

Boolean statement

statement that can only be true or false

18
New cards

truth value

truth-or-false value

19
New cards

“if” statement

evaluated by condition in parentheses

-if condition is true, commands between braces run

-if condition is false, commands are ignored

-like “while” loop, but code won’t repeat

20
New cards

“if-else” statement

expansion on “if” statement

-”if” checks condition, runs appropriate command if true

-"else” allows code to run when condition is false

-”if” or “else” branch is always run once

21
New cards

Multiple “if-else” statements are dangerous because:

you may create a scenario where two statements “fight” one another

22
New cards