Robotics Reviewer

0.0(0)
studied byStudied by 1 person
0.0(0)
full-widthCall with Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
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
Call with Kai

No study sessions yet.

34 Terms

1
New cards

Series Circuit

A circuit configuration where current flows through one single path; if one component fails, the entire circuit stops working

2
New cards

Parallel Circuit

A circuit configuration where current can flow through more than one path; if one branch fails, the others continue to function

3
New cards

Series Current

The identical amount of electrical flow that moves through every component in a series string

4
New cards

Parallel Current

Electrical flow that divides among different branches based on the specific resistance of each path

5
New cards

Series Voltage

The total supply voltage which is shared or divided among the individual components in the circuit

6
New cards

Parallel Voltage

The electrical pressure where each individual branch receives the full amount of the supply voltage

7
New cards

Series Resistance

The total opposition to current, calculated as the sum of all individual resistors

8
New cards

Parallel Resistance

The total opposition to current which actually lowers as more branches are added to the circuit

9
New cards

Ohm’s Law

The fundamental scientific law explaining the mathematical relationship between voltage, current, and resistance

10
New cards

Voltage

The electrical "push" or pressure that moves charge through a circuit, measured in Volts

11
New cards

Current

The actual flow of electric charge moving through a conductor, measured in amperes

12
New cards

Resistance

The property of a component that determines how much it opposes or restricts the flow of current, measured in Ohms

13
New cards

OLED (Organic Light Emitting Diode)

A display technology that emits light directly from organic layers when current is applied, requiring no backlight

14
New cards

LED (Light Emitting Diode)

A semiconductor light source used for brightness in displays; features moderate energy use and vivid colors.

15
New cards
16
New cards

LCD (Liquid Crystal Display)

A display technology that uses liquid crystals and a mandatory backlight; known for higher energy use and moderate contrast.

17
New cards

SDA (Serial Data Line)

The specific connection pin on an OLED display used to carry the actual data for images or text

18
New cards

SCL (Serial Clock Line)

The specific connection pin on an OLED display used to carry the timing signal for synchronized data transfer

19
New cards

pinMode()

The Arduino function used to configure a specific pin as either an input or output

20
New cards

digitalWrite()

Command used to set a pin to HIGH or LOW

21
New cards

delay()

The function used to pause program execution for a specific amount of time (measured in milliseconds)

22
New cards

display.clearDisplay()

The OLED command that wipes the screen buffer to prepare for new data

23
New cards

I2C Address (0x3C)

The standard hex address used in code to communicate with the SSD1306 OLED display

24
New cards

#include <Wire.h>

The library requirement that enables I2C communication between the microcontroller and the display

25
New cards

void setup()

A mandatory function that runs only once when the program starts, used for initializing pin modes and starting communications

26
New cards

SSD1306_SWITCHCAPVSS

A parameter used in OLED initialization that tells the display to generate its own high voltage from the 3.3V or 5V power supply

27
New cards

display.display()

The specific command required to actually "push" the data from the Arduino's memory buffer onto the physical OLED screen

28
New cards

display.setTextSize(1)

Sets the scale of the text; "1" is the standard size (typically 6x8 pixels per character)

29
New cards

display.setCursor(x,y)

Defines the exact pixel coordinate where the text or image should begin drawing (0,0 is the top-left corner)

30
New cards

31
New cards

#include <Adafruit_GFX.h>

The core graphics library that provides basic drawing functions like lines, circles, and text for various displays

32
New cards

#include <Adafruit_SSD1306.h>

The specific driver library used to communicate with the SSD1306 OLED controller chip

33
New cards

oled.setFont(Adafruit5x7)

A command used in the ASCII library to select a specific font style (in this case, a 5x7 pixel grid font)

34
New cards

while(true)

An infinite loop used in error handling (like if the OLED isn't found) to stop the program from proceeding further