• 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

  • 555 Timer Projects (22)
  • Alarm Circuits (58)
  • Amplifier Circuits (82)
  • Arduino Projects (102)
  • Audio Circuits (146)
  • Automation Circuits (5)
  • Automobile Circuits (22)
  • Battery Charger Circuits (75)
  • DIY Projects (60)
  • Free Energy (13)
  • Heater and Temperature Controllers (21)
  • High Voltage (17)
  • Hobby Circuits (21)
  • Indicator Circuits (58)
  • Inverter Circuits (19)
  • IoT projects (1)
  • LDR Circuits (34)
  • LED and Lamps (175)
  • Meters and Testers (35)
  • Mini Projects (45)
  • Motor Controllers (22)
  • Oscillator Circuits (48)
  • Power Supply Circuits (184)
  • Remote Control Circuits (9)
  • Security and Protection (46)
  • Sensors and Detectors (159)
  • Solar Circuits (32)
  • Timer Circuits (49)
  • Transistor Circuits (135)
  • Transmitter Circuit (18)
  • Tutorials (8)
  • Voltage Regulator (2)
  • Water Level Controller (7)

Recent Posts

  • Simple High Impedance JFET Preamp Circuit
  • Low Noise Transistor Preamplifier Circuit
  • Transistor Based Medium Impedance Preamplifier Circuit
  • Low Cost DIY Microphone Circuit using Normal Speaker
  • Low Impedance Input Transistor Preamplifier Circuit

Recent Comments

  1. Transistor Based Medium Impedance Preamplifier Circuit - Circuit Ideas for You on Low Impedance Input Transistor Preamplifier Circuit
  2. Admin-Lavi on Alternate Red Green LED Flasher Circuit
  3. Admin-Lavi on Alternate Red Green LED Flasher Circuit
  4. Mike on Alternate Red Green LED Flasher Circuit
  5. angel on 12 Watts Amplifier Circuit using Transistors

Copyright © 2026 | New Circuit Ideas