STN液晶モジュール(16文字x2桁) [MTC-16205D]

STN液晶モジュール(16文字x2桁) [MTC-16205D]

販売価格: 500円(税別)

(税込: 550円)

在庫切れ
●概要



●仕様・機能

台湾Microtips Technology社製キャラクタSTN液晶モジュール、16文字x2桁、LEDバックライト付き、背景色=黒、文字色=赤、外形寸法:80.0x36.0x10.0mm、接続:2.54mmピッチ16P(2箇所あり、どっちでも同じように使える)、データシート、動作電源:5V、表記価格:1









●動作について

Arduino UNOボード+ライブラリLiquidCrystal.hにて動作を確認しております。写真はサンプルスケッチHello Worldの動作様子です。

<接続>

液晶側/UNOボード側
RS/12
Enable/11
DB4/5
DB5/4
DB6/3
DB7/2
RW/GND
20K可変抵抗:
ends to +5V & GND
wiper to VO


(↑)バックライトを使用しない時

<スケッチ>

#include < LiquidCrystal.h >

// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);

void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("hello, world!");
}

void loop() {
// set the cursor to column 0, line 1
// (note: line 1 is the second row, since counting begins with 0):
lcd.setCursor(0, 1);
// print the number of seconds since reset:
lcd.print(millis()/1000);
}