I2Cキャラクタ液晶(16x2行) [M1602G-I2C5P]
I2Cキャラクタ液晶(16x2行)
[M1602G-I2C5P]
販売価格: 450円(税別)
(税込: 495円)
在庫切れ
●概要
●仕様・機能
I2C低電圧キャラクタ液晶モジュール(16x2行) [GVLCM1602G]とキャリー基板の2点セット、1uFコンデンサx2個と1.0mmピッチ8P(上接点)FFCコネクタx1付き、部品を基板に半田付けしてすぐ使用できる、プルアップ抵抗は不要です。信号インターフェース:I2C、2.54mmピッチ5Pスルーホール、動作電源:3〜3.3V、表記価格:1セット
●構成部品一覧
I2C低電圧キャラクタ液晶モジュール(16x2行)(x1)
キャリー基板(x1)
表面実装1206サイズコンデンサ:1uF(x2)
1.0mmピッチ8P(上接点)FFCコネクタ(x1)
●動作について
「びんぼうでいいの」+ライブラリ< 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
#include
#include
// 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);
}
●仕様・機能
I2C低電圧キャラクタ液晶モジュール(16x2行) [GVLCM1602G]とキャリー基板の2点セット、1uFコンデンサx2個と1.0mmピッチ8P(上接点)FFCコネクタx1付き、部品を基板に半田付けしてすぐ使用できる、プルアップ抵抗は不要です。信号インターフェース:I2C、2.54mmピッチ5Pスルーホール、動作電源:3〜3.3V、表記価格:1セット
●構成部品一覧
I2C低電圧キャラクタ液晶モジュール(16x2行)(x1)
キャリー基板(x1)
表面実装1206サイズコンデンサ:1uF(x2)
1.0mmピッチ8P(上接点)FFCコネクタ(x1)
●動作について
「びんぼうでいいの」+ライブラリ< 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
#include
#include
// 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);
}