• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

Circuit Ideas for You

Get free circuit ideas online.

  • Home
  • Privacy Policy
  • About
Home » Simple Arduino OLED Display Circuit

Simple Arduino OLED Display Circuit

Last updated on 20 November 2025 by Admin-Lavi Leave a Comment

Want our Arduino to talk to us on screen?

Then add a small digital screen to our Arduino in minutes.

With OLED display, our simple Arduino project suddenly feel like a real gadget.

It show clear text with no backlight, low power and with super cool look.

OLED display need only two data wires and give us bright output for any project.

In this Simple Arduino OLED Display Circuit we will learn how to connect it and print our first message.

Arduino Coding:

#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>

#define SCREEN_WIDTH 128
#define SCREEN_HEIGHT 64
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, -1);

void setup() {
Wire.begin();
display.begin(SSD1306_SWITCHCAPVCC, 0x3C);
display.clearDisplay();
display.setTextSize(2);
display.setTextColor(SSD1306_WHITE);
display.setCursor(0, 0);
display.println("HELLO");
display.display();
}

void loop() {
}

Code Explanation:

  • Wire library start I2C.
  • Adafruit libraries help to draw text on OLED.
  • display.begin start OLED with address 0x3C.
  • clearDisplay clean screen first.
  • setTextSize set font size.
  • setTextColor set white color.
  • setCursor set where text start on screen.
  • println show the text on buffer.
  • display.display push buffer to OLED screen.

Circuit Working:

Simple Arduino OLED Display Circuit Diagram

Parts List:

ItemQuantity
Arduino UNO1
SSD1306 OLED 128×64 Display1
USB Cable1
Breadboard1

The OLED uses I2C communication.

Only SDA and SCL lines send data from Arduino to display.

Arduino sends commands like clear, draw text, set position.

OLED receives data and lights its pixels.

Power for display comes from 5V and GND.

When Arduino runs code, it prints the text and shows on OLED.

How to Build:

To build a Simple Arduino OLED Display Circuit follow the below steps for connections:

  • Gather all the parts as shown in circuit diagram.
  • OLED GND pin connect to Arduino GND
  • OLED VCC pin connect to Arduino 5V
  • OLED SCL pin connect to Arduino A5
  • OLED SDA pin connect to Arduino A4
  • These four wires complete the I2C display circuit.
  • Make sure wires are tight and with no loose connection.

Conclusion:

Simple Arduino OLED Display Circuit is very easy project.

Only four wires and simple code.

Good for beginners to show text, numbers and sensor results.

Display is clear and with low power.

We can expand project later with sensors or menu screens.

References:

How to make “Hello World” on Oled 128×64 SPI

Filed Under: Arduino Projects, LED and Lamps

About Admin-Lavi

Lavi is a B.Tech electronics engineer with a passion for designing new electronic circuits. Do you have questions regarding the circuit diagrams presented on this blog? Feel free to comment and solve your queries with quick replies

Previous Post: « Arduino Based Smart Car Parking Sensor Circuit
Next Post: Solenoid Valve Control Circuit using Arduino »

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar




Categories

  • Alarm Circuits (47)
  • Amplifier Circuits (67)
  • Arduino Projects (100)
  • Audio Circuits (116)
  • Automobile Circuits (19)
  • Battery Charger Circuits (65)
  • Free Energy (13)
  • Heater and Temperature Controllers (13)
  • High Voltage (1)
  • Indicator Circuits (46)
  • Inverter Circuits (20)
  • IoT projects (1)
  • LDR Circuits (26)
  • LED and Lamps (150)
  • Meters and Testers (31)
  • Motor Controllers (22)
  • Oscillator Circuits (40)
  • Power Supply Circuits (108)
  • Remote Control Circuits (10)
  • Security and Protection (29)
  • Sensors and Detectors (127)
  • Solar Circuits (29)
  • Timer Circuits (41)
  • Transistor Circuits (92)
  • Transmitter Circuit (17)
  • Tutorials (8)
  • Water Level Controller (7)

Recent Posts

  • 5V 0.5A Regulated Power Supply Circuit
  • Transistor Based 5V Linear Power Supply Circuit
  • 5V Regulated Power Supply Circuit using Transistors
  • 220V AC Live Detection and Interface Circuit
  • Simple Drummer Sound Circuit using IC 555

Recent Comments

  1. TDHofstetter on DIY Variable Power Supply Circuit using Arduino
  2. feathbuff on Simple Micro Ampere Meter Circuit
  3. Admin-Lavi on Simple School Project Multimeter Circuit
  4. choke on Simple School Project Multimeter Circuit
  5. Admin-Lavi on Analog to Digital Converter Circuit using IC 555

Copyright © 2026 | New Circuit Ideas