Robotics Final Exam

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

1/33

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

34 Terms

1
New cards

What is Arduino?

Microcontroller board

2
New cards

Arduino main chip

ATmega microcontroller

3
New cards

Powering an arduino uses:

USB cable or external power supply.

4
New cards

GND Pin

Ground connection with circuit. Zero voltage

5
New cards

5V Pin

5 volts of electricty

6
New cards

Breadboard

prototyping circuits without needing to solder

7
New cards

LED

Light Emitting Diode

8
New cards

Digital Pin values

Operate on 2 distinct states: HIGH (on) and LOW (off)

9
New cards

Resistor

Limtis the flow of electrical current

10
New cards

Analog Pin

Reads range of voltage calues

11
New cards

2 main functions of C

setup() and loop()

12
New cards

Setup() function

runs once, initial setup, setting pin modes

13
New cards

Loop() function

continuously over and over again. Only when program has pwoer

14
New cards

Setting pin as output

pinMode(pinNumber,OUTPUT) sends out voltage

15
New cards

Writing to a digital pin

digitalWrite(pinNumber, value) makes output pin either HIGH or LOW

16
New cards

delay()

pauses program for specified milliseconds

17
New cards

Single-Line comment

// code ignores

18
New cards

Serial.begin()

initializes serial communication between the Arduino and a computer at a baud rate (speed) of 9600. This allows the Arduino to send and receive text-based information.

19
New cards

Integer data type

whole numbers use "int"

20
New cards

Semicolon's purpose

ends of a statement

21
New cards

Motor controller function

microcontroller (like an Arduino) to control a high-power motor's speed and direction.

22
New cards

Why have a motorcontroller?

Allows more ampage than the arudino can provide

23
New cards

H-Bridge circuit

Makes DC motor spin back/forwards. Curicut controls direction

24
New cards

PWM

Pulse Width Modulation

25
New cards

PMW how it works

Switches motor's power on/off quickly

26
New cards

How to increase motor speed

Increase duty cycle

27
New cards

Servo motors

percisely controlled to a specific angle/position

28
New cards

FRC motor controllers

Talon SRX, Victor SPX, Spark MAX

29
New cards

Reversing motor polarity

Spins oppo direction if positive/negative wires reversed

30
New cards

Morot encoder

Sensor to measure speed/position

31
New cards

Primary PPE

Safety glasses

32
New cards

E Stop

Emergency Stop button

33
New cards

FRC main contoller

RoboRIO

34
New cards

FRC build season

6-8 weeks