Robotics (OLED)

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

1/35

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.

36 Terms

1
New cards

a type of screen technology that uses organic compounds to emit light when electricity is applied

Organic Light Emitting Diode (OLED)

2
New cards

Unlike traditional LCDs, OLEDs don’t need a ____ —each pixel lights up independently, which leads to stunning visuals and ultra-thin designs

Backlight

3
New cards

Two terminals of OLED:

  1. Cathode

  2. Anode

4
New cards

How many layers does OLED have?

7 layers

5
New cards

OLED makes use of what to light up?

Organic Compound (Carbon)

6
New cards

What kind of pixels does OLED have?

Self-emissive pixels

7
New cards

Advantages of OLED:

  1. True Black

  2. Vivid Colors

  3. Fast Response Time

  4. Wider Viewing Angles

  5. Thinner and Lighter

8
New cards

Disadvantages of OLED:

  1. Burn-in

  2. Expensive

  3. Shorter Lifespan

9
New cards

an optoelectronic phenomenon where electrical energy is directly converted into light

this happens inside a thin layer of organic compounds sandwiched between two electrodes

Electroluminescence

10
New cards

Layers of OLED:

  1. Anode

  2. Substrate

  3. Hole Injection Layer

  4. Hole Transport Layer

  5. Emissive Layer

  6. Electron Transport Layer

  7. Cathode

11
New cards

Acts as the base—usually glass or flexible plastic —to support the entire OLED stack.

Substrate

12
New cards

Transparent layer (often indium tin oxide) that removes electrons, creating "holes."

ANODE

13
New cards

Moves the holes from the anode layer toward the emissivelayer

Hole Injection Layer and Hole Transport Layer

14
New cards

Where electrons and holes recombine to emit photons—this is the lightproducing zone

Emissive Layer

15
New cards

Carries electrons from the cathode to the emissive layer

Electron Transport Layer

16
New cards

Injects electrons into the device when voltage is applied

Cathode

17
New cards

Are a popular choice for use with Arduino microcontrollers due to their compact size, high contrast, and low power consumption

OLED

18
New cards

They are commonly used to display text, graphics, and even small images in various Arduino projects

OLED

19
New cards

What driver chip does OLED use?

SSD1306 driver chip

20
New cards

SSD 1306 is compatible with the following communications:

  1. I²C (Inter-Integrated Circuit)

  2. SPI (Serial Peripheral Interface)

21
New cards
22
New cards

a single-chip CMOS OLED driver with controller for organic/polymer light emitting diode dot-matrix graphic display system

SSD1306 CONTROLLER

23
New cards

SSD1306 CONTROLLER operates at what supply?

3.3V to 5V

24
New cards

How much Graphic Display Data Dram (GDDRAM) does SSD1306 CONTROLLER include?

1KB

25
New cards

1KB area is divided into:

  1. 8 pages/rows (0-7)

  2. Each page has 128 columns and 64 Rows

26
New cards

OLED display uses I2C communication protocol, so wiring is very simple

knowt flashcard image
27
New cards

Syntax to be used:

<p></p>
28
New cards

primarily used as the logical NOT operator within conditional statement

EXAMPLE: if (!(condition))

if (!JHENORPILLA(MALE))

{

Serial.println (“JHENORPILLA IS FEMALE”));

}

INVERT BOOLEAN (TRUE / FALSE)

29
New cards

is commonly used to define constants, making it easy to change values in one place and have those changes reflected throughout the code

EXAMPLE: #define Pi 3.1416

SYNTAX #define

30
New cards

use to place the text in specific location

column comes first before the row

setCursor (0,1)

SYNTAX setCursor

31
New cards

Step 1: Attach the OLED Library

knowt flashcard image
32
New cards

TO ATTACH A LIBRARY IN ARDUINO IDE

knowt flashcard image
33
New cards

Step 2: Define the width, height, address and other important details of the OLED

knowt flashcard image
34
New cards

Step 3.1 THE VOID SET UP

knowt flashcard image
35
New cards
term image
36
New cards
term image