OLED Display 1.3" White 128x64
zoom_out_map
chevron_left chevron_right

Product images are for informational purposes only and may vary slightly depending on the batch and supplier. Product specifications and prices may be subject to change without notice. We do our best to provide accurate and complete product specifications, but they may not be completely accurate. If you encounter any such situation, please let us know.

The product is intended for specialists and requires qualified and authorized personnel. The product does not include assembly/use instructions . Putting the product into operation by unqualified persons leads to the loss of the warranty according to the Terms and Conditions on the site.

The specified technical parameters (current, power, etc.) represent maximum allowable values under ideal operating conditions. For safe use and optimal lifespan, it is recommended to operate the product continuously at no more than 50% of the specified maximum values.

OLED Display 1.3" White 128x64

1.3 inch, 128x64 white OLED display, ideal for clearly displaying text and graphics in Arduino projects and other development boards. It connects easily to I2C with only 2 pins, does not require backlighting for low consumption, operates at 3-5V and uses the SH1106 driver for good compatibility with common libraries.

7.88 € Tax included

6.51 € Tax excluded

(4/5) out of 3 total ratings
Read the reviews
1-2 zile
check In Stoc

Shipping by Thursday 27 August

Close

This product has a warranty of 2 years.

INTERNATIONAL DELIVERY
International fast shipping within EU. Free Shipping for orders above 100 EUR in most EU countries.
FAST DISPATCH 24H
We ship from our stock within 24H
LOYALTY POINTS
You earn points with every order, worth 5%.

1.3 inch 128x64 OLED Display with 4 pins, compatible with Arduino and other development boards.

This display does not require backlighting, as the brightness is provided by the pixels, resulting in low power consumption.

Oled_1_3_JPG

Specifications:

Color: White

Resolution: 128 x 64

Serial communication: I2C, IIC, requires only 2 IO pins

Power consumption: 0.08

Supply voltage: 3-5VDC

Operating temperature: -30 ° ~ 70 °

Module dimensions mm: 36 x 31 x 4.1

Driver IC: SH1106

Active display area mm: 34.5 x 19

Instructions:

Connect the OLED as follows on Arduino UNO:

VCC -> 3.3V

GND -> GND

SCL -> A5

SDA -> A4

Install the following libraries:

- Adafruit_GFX.h

- Adafruit_SH1106.h (download link) - (Sketch->Include Library->Add .ZIP Library, and select the library downloaded from the link)

Use the following code from File -> Examples -> Adafruit_SH1106-master -> sh1106_128x64_i2c

The OLED can also be used with the U8glib.h library:

After downloading the library, use the following example code along with a DHT11:

#include "U8glib.h"

#include "DHT.h"
#define DHTPIN 2
#define DHTTYPE DHT11
DHT dht(DHTPIN, DHTTYPE);
U8GLIB_SH1106_128X64 u8g(U8G_I2C_OPT_NONE); // I2C / TWI
void setup() {
dht.begin();
u8g.firstPage();
do {
u8g.setFont(u8g_font_helvB10);
u8g.drawStr(30, 14, "Test ");
u8g.drawStr(50, 30, "Cu ");
u8g.drawStr(10, 45, "DHT11");
u8g.drawStr(10, 60, "sigmanortec");
} while( u8g.nextPage() );
delay(5000);
}
void loop() {
float hum = dht.readHumidity();
float temp = dht.readTemperature();
float fah = dht.readTemperature(true);
if (isnan(hum) || isnan(temp) || isnan(fah)) {
Serial.println("Failed to read from DHT sensor!");
return;
}
float heat_index = dht.computeHeatIndex(fah, hum);
float heat_indexC = dht.convertFtoC(heat_index); //Calculating the heat index in Celsius
u8g.firstPage();
do {
u8g.setFont(u8g_font_helvR12);
u8g.drawStr(0, 15, "Temp:");
u8g.setPrintPos(75, 15);
u8g.print(temp, 0);
u8g.print((char)176);
u8g.print("C");
u8g.drawStr(0, 35, "Humi:");
u8g.setPrintPos(75, 35);
u8g.print(hum, 0);
u8g.print("%");
u8g.drawStr(0, 55, "Hi:");
u8g.setPrintPos(75, 55);
u8g.print(heat_indexC, 0);
u8g.print("%");
} while( u8g.nextPage() );
delay(5000);
}

oled_1_3_test_dht11_JPG

33120

Produs destinat utilizarii in proiecte electronice, automatizari, prototipare, educatie si cercetare.

Produsul trebuie utilizat numai conform specificatiilor tehnice mentionate in descriere si/sau in documentatia produsului.

Avertismente generale de siguranta:

Nu utilizati produsul la tensiuni, curenti sau temperaturi peste valorile specificate.

Montajul si conectarea trebuie realizate de persoane cu cunostinte tehnice minime in domeniul electric/electronic.

Evitati scurtcircuitele, inversarea polaritatii si conectarea gresita a alimentarii.

Nu lasati produsul alimentat nesupravegheat in timpul testelor.

Produsul nu este jucarie si nu este destinat copiilor.

Pentru modulele electronice, se recomanda utilizarea in carcase, panouri sau montaje protejate, dupa caz.

Identificare produs:

Denumirea produsului, codul/SKU-ul si caracteristicile tehnice sunt mentionate in pagina produsului si/sau pe eticheta ambalajului.

Producator / Importator / Distribuitor:

Sigmanortec S.R.L.

Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania

E-mail: [email protected]

Website: www.sigmanortec.ro

Persoana responsabila in UE:

Sigmanortec S.R.L.

Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania

E-mail: [email protected]

Documentatie si siguranta:

Pentru informatii suplimentare, fise tehnice, declaratii de conformitate sau instructiuni, ne puteti contacta la [email protected].