★取扱終了★I2Cキャラクタ液晶(16x2行) [M1602G-I2C5PB]

★取扱終了★I2Cキャラクタ液晶(16x2行) [M1602G-I2C5PB]

販売価格: 450円(税別)

(税込: 495円)

在庫切れ
●概要

●仕様・機能

I2C低電圧キャラクタ液晶モジュール(16x2行) [GVLCM1602G]とキャリー基板の2点セット、1uFコンデンサ(x2個)と1.0mmピッチ8P(上接点)FFCコネクタ(x1個)付き、部品を基板に半田付けしてすぐに使用できる、プルアップ抵抗は不要、信号インターフェース:I2C、2.54mmピッチ5Pスルーホール、動作電源:3〜3.3V、基板寸法:55.3x32.3x1.2mm、表記価格:1セット



●構成部品一覧

I2C低電圧キャラクタ液晶モジュール(16x2行)(x1)
キャリー基板(x1)
表面実装1206サイズコンデンサ:1uF(x2)
1.0mmピッチ8P(上接点)FFCコネクタ(x1)
※pull-up抵抗は不要です。





●動作について

「びんぼうでいいの」+ライブラリ< ST7032.h >で表示を確認しております。

<接続>

液晶側/「びんぼうでいいの」側
RES/RESET
SCL/A5
SDA/A4
VSS/GND
VDD/3.3V

<スケッチ>

ライブラリ付属スケッチ

/*
ST7032 I2C LCD control sample
Original source : HelloWorld.ino (LiquidCrystal Library)
2013/05/21 tomozh@gmail.com
*/

// include the library code:
//#include < LiquidCrystal.h >
#include < Wire.h >
#include < ST7032.h >

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

void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
lcd.setContrast(40);
// 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);
}