Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Project Documentation

Arduino UNO OLED Display Interface for Real-Time Data Visualization

Image of Arduino UNO OLED Display Interface for Real-Time Data Visualization

Circuit Documentation

Summary

This circuit consists of an Arduino UNO microcontroller connected to a 1.3" OLED display. The Arduino UNO provides power and communication to the OLED display via I2C protocol.

Component List

Arduino UNO

  • Description: A microcontroller board based on the ATmega328P.
  • Pins: UNUSED, IOREF, Reset, 3.3V, 5V, GND, Vin, A0, A1, A2, A3, A4, A5, SCL, SDA, AREF, D13, D12, D11, D10, D9, D8, D7, D6, D5, D4, D3, D2, D1, D0
  • Purpose in Circuit: Acts as the main controller, providing power and communication to the OLED display.

OLED 1.3"

  • Description: A 1.3-inch OLED display module.
  • Pins: GND, VCC, SCL, SDA
  • Purpose in Circuit: Displays information received from the Arduino UNO.

Wiring Details

Arduino UNO

  • 3.3V: Connected to VCC of OLED 1.3"
  • GND: Connected to GND of OLED 1.3"
  • SCL: Connected to SCL of OLED 1.3"
  • SDA: Connected to SDA of OLED 1.3"

OLED 1.3"

  • VCC: Connected to 3.3V of Arduino UNO
  • GND: Connected to GND of Arduino UNO
  • SCL: Connected to SCL of Arduino UNO
  • SDA: Connected to SDA of Arduino UNO

Code Documentation

Arduino UNO Code

sketch.ino

void setup() {
  // put your setup code here, to run once:

}

void loop() {
  // put your main code here, to run repeatedly:

}

documentation.txt


This document provides a comprehensive overview of the circuit, including a summary, detailed component descriptions, wiring details, and the code used in the Arduino UNO.