welcome iCShop!     服務時間:週一 ~ 週五 9:00~12:00 / 13:00~17:00
減價81
Grove OLED顯示模組96x96 灰階【限量】
Grove OLED顯示模組96x96 灰階【限量】
Grove OLED顯示模組96x96 灰階【限量】
Grove OLED顯示模組96x96 灰階【限量】
Grove OLED顯示模組96x96 灰階【限量】
Grove OLED顯示模組96x96 灰階【限量】

Grove OLED顯示模組96x96 灰階【限量】

NT$ 480399


產品貨號

368030800062

品牌

seeed

原廠貨號

104030011

數量

  庫存量:1

運送方式

7-11取貨付款 郵寄(單一運費) 宅配 宅配貨到付款 外島郵寄 順豐快遞 順豐快遞貨到付款

商品簡介

Twig - OLED 96x96 twig 是一款 16 色灰度 96×96 點陣 OLED 顯示模組,具有 Grove 兼容的 4pin I2C 接口。Twig - OLED 96x96 由 96 x 96 點陣 OLED 模組([ LY120])和 SSD1327 驅動 IC 構成。 該顯示模組的特點是高亮度、自發光、高對比度、超薄/超薄外形、寬視角、寬溫度範圍、低功耗。

商品特色:

  • 點陣:96 x 96 像素
  • 顏色:灰度顯示(16 級灰度)
  • 支持正常和反色顯示
  • 支持連續水平滾動
  • Grove 兼容 4 針 I2C 連接器
  • 適用於 5V 和 3.3V 邏輯 MCU
  • 接口:I2C
  • 工作溫度範圍:-40°C ~ 7°C

商品應用:

用於 Seeeduino 和 Arduino 的圖形顯示適配器,使用 Grove 乾板。 適用於任何支持 I²C 接口的 5V 或 3.3V MCU 的顯示適配器。 可與 mbed 微控制器一起使用。

對於所有 Grove 用戶(尤其是初學者),我們為您提供指導 PDF 文檔。 在使用該產品之前,請下載並閱讀入門和 Grove 簡介。

下載文件:

如何查詢I2C位址

操作流程

STEP 1. 將欲查詢的模組連接至Arduino UNO(附圖為腳位參考,實際請比對商品標示接線)

STEP 2. 開啟Arduino IDE並新增檔案

STEP 3. 貼入教學下方的範例文件,並上傳到Arduino UNO,即會開始掃描I2C位址

STEP 4. 開啟序列埠監控視窗,即可取得I2C位址

I2C掃描範例程式

/ ---------------------------------------------------------------- /
// Arduino I2C Scanner
// Re-writed by Arbi Abdul Jabbaar
// Using Arduino IDE 1.8.7
// Using GY-87 module for the target
// Tested on 10 September 2019
// This sketch tests the standard 7-bit addresses
// Devices with higher bit address might not be seen properly.
/ ---------------------------------------------------------------- /
#include //include Wire.h library
void setup()
{
Wire.begin(); // Wire communication begin
Serial.begin(9600); // The baudrate of Serial monitor is set in 9600
while (!Serial); // Waiting for Serial Monitor
Serial.println("\nI2C Scanner");
}
void loop()
{
byte error, address; //variable for error and I2C address
int nDevices;
Serial.println("Scanning...");
nDevices = 0;
for (address = 1; address < 127; address++ )
{
// The i2c_scanner uses the return value of
// the Write.endTransmisstion to see if
// a device did acknowledge to the address.
Wire.beginTransmission(address);
error = Wire.endTransmission();
if (error == 0)
{
Serial.print("I2C device found at address 0x");
if (address < 16)
Serial.print("0");
Serial.print(address, HEX);
Serial.println(" !");
nDevices++;
}
else if (error == 4)
{
Serial.print("Unknown error at address 0x");
if (address < 16)
Serial.print("0");
Serial.println(address, HEX);
}
}
if (nDevices == 0)
Serial.println("No I2C devices found\n");
else
Serial.println("done\n");
delay(5000); // wait 5 seconds for the next I2C scan
}
出貨清單
  • Grove OLED顯示模組96x96 灰階 x 1