-TND 1,00

Écran OLED 0.96″ I2C – SSD1306 – 128×64 Pixels (4 PINS)

> SKU: ED1-029-01

Écran OLED 0.96 pouces, interface I2C (4 fils) avec contrôleur SSD1306. Résolution 128×64 pixels, faible consommation, parfait pour Arduino, ESP32 et projets électroniques.

Original price was: TND 20,00.Current price is: TND 19,00.

4 in stock

Compare

Description

Afficheur OLED 0.96 pouces avec interface I2C (4 broches), basé sur le contrôleur SSD1306. Idéal pour projets Arduino, ESP32, Raspberry Pi et autres microcontrôleurs. Résolution 128×64 pixels pour un affichage clair et net, faible consommation d’énergie et excellent contraste, parfait pour vos projets DIY et objets connectés.

Connexions Arduino (I2C) :

Pin Écran OLED Fonction Arduino
GND Masse GND
VCC Alimentation 3.3V ou 5V
SCL Horloge I2C A5 (SCL) sur Uno/Nano
SDA Données I2C A4 (SDA) sur Uno/Nano

Connexions ESP32 (I2C) :

Pin Écran OLED Fonction ESP32
GND Masse GND
VCC Alimentation 3.3V
SCL Horloge I2C GPIO 22 (SCL par défaut)
SDA Données I2C GPIO 21 (SDA par défaut)

Exemple de Code (Arduino C) :

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

#define SCREEN_WIDTH 128
#define SCREEN_HEIGHT 64
#define OLED_RESET -1

Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);

void setup() {
Wire.begin();
display.begin(SSD1306_SWITCHCAPVCC, 0x3C); // Adresse I2C 0x3C
display.clearDisplay();
display.setTextSize(1);
display.setTextColor(SSD1306_WHITE);
display.setCursor(0, 0);
display.print(“Hello OLED!”);
display.display();
}

void loop() {
// Rien ici
}

Reviews (0)

0.0
0
0
0
0
0

Be the first to review “Écran OLED 0.96″ I2C – SSD1306 – 128×64 Pixels (4 PINS)”

There are no reviews yet.

Select at least 2 products
to compare