หากต้องการใบเสนอราคา / ใบแจ้งหนี้ ติดต่อได้ทาง LINE Official: @mikroelec |
![]() |
รหัสสินค้า | SKU-01408 |
หมวดหมู่ | โมดูลจอแสดงผล OLED |
ราคา | 180.00 บาท |
สถานะสินค้า | พร้อมส่ง |
ลงสินค้า | 21 พ.ค. 2564 |
อัพเดทล่าสุด | 6 ต.ค. 2568 |
จำนวน | ชิ้น |
Module Features:
1, resolution: 128X64
2, super wide viewing angle: more than 160 ° (maximum viewing angle display a screen)
3, ultra-low power consumption: normal display 0.08W (far below the TFT display)
4, wide supply range: DC 3V-5V (without any changes, directly compatible with common 3.3V and 5V power supply system)
5, industrial grade: Operating temperature range -30 degree~ 70 degree
6, the ultra-small size: (length) 35.4MM * (W) 33.5MM * (thickness) 4.3MM
7, support for multiple operating modes: 3-wire SPI, 4 wire SPI, IIC
8, with chip select CS signal, you can achieve multiple SPI or IIC device on the same bus work
9, compatible with 3.3V and 5V control chip I / O level (without any set, directly compatible)
10, OLED screen, internal drive chip: SH1106 (Operation and SSD1306 same)
ตัวอย่าง 1
Library | 1. Adafruit-GFX-Library 2. Adafruit-SH1106 |
HardWare | ![]() ESP32 development board WIFI + Bluetooth IoT smart home ESP-WROOM-32 |
// Hardware ESP32 #include <Wire.h> #include <Adafruit_GFX.h> #include <Adafruit_SH1106.h> Adafruit_SH1106 display(21, 22); void setup() { Serial.begin(115200); /* initialize OLED with I2C address 0x3C */ display.begin(SH1106_SWITCHCAPVCC, 0x3C); display.clearDisplay(); } void loop() { /* set text size, color, cursor position, set buffer with Hello world and show off*/ display.setTextSize(1); display.setTextColor(WHITE); display.setCursor(0,5); display.println(" www.MikroElec.com"); display.setTextSize(1); display.setTextColor(WHITE); display.setCursor(0,20); display.println(" OLED 1.3 Inch"); display.display(); display.setTextSize(2); display.setTextColor(WHITE); display.setCursor(0,40); display.print(" 128x64"); display.setTextSize(1); display.println(" pixel"); display.display(); delay(2000); display.clearDisplay(); }
ตัวอย่าง 2
Library | OLED sh1106 |
HardWare | ![]() ESP8266 NodeMcu V2 CP2102 ![]() ESP8266 NodeMcu CH340 |
//HardWare ESP8266
#include <Wire.h> #include "SH1106Wire.h" SH1106Wire display(0x3c, SDA, SCL); void setup() { display.init(); display.flipScreenVertically(); display.setFont(ArialMT_Plain_10); } void drawFontFaceDemo() { // create more fonts at http://oleddisplay.squix.ch/ display.setTextAlignment(TEXT_ALIGN_LEFT); display.setFont(ArialMT_Plain_10); display.drawString(0, 0, "Tel: 098-482-9329"); display.setFont(ArialMT_Plain_16); display.drawString(0, 10, "Line ID: jengsyber"); display.setFont(ArialMT_Plain_24); display.drawString(0, 26, "..MikroElec.."); } void loop() { display.clear(); display.setFont(ArialMT_Plain_10); display.setTextAlignment(TEXT_ALIGN_RIGHT); display.drawString(128, 54, String(millis())); drawFontFaceDemo(); display.display(); delay(100); }
หน้าที่เข้าชม | 563,672 ครั้ง |
ผู้ชมทั้งหมด | 321,315 ครั้ง |
ร้านค้าอัพเดท | 19 ต.ค. 2568 |