#213 LCD mini I2C Brick
Overview
8桁×2行の小さいLCDを使用したBrickです。
I2Cで表示データを制御できます。
接続
I2Cコネクタへ接続します。
AQM0802A Datasheet
Register
回路図
Library
ライブラリ名:「FaBo 213 LCD mini AQM0802A」
ソースコード
上記のArduino Libraryをインストールし、スケッチの例、「FaBo 213 LCD mini AQM0802A」からお選びください。
下記は、Helloを表示するサンプルです。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40 | /*
This is an Example for the FaBo LCD mini I2C Brick.
LiquidCrystal Library originally added 18 Apr 2008
by David A. Mellis
library modified 5 Jul 2009
by Limor Fried (http://www.ladyada.net)
example added 9 Jul 2009
by Tom Igoe
modified 22 Nov 2010
by Tom Igoe
compatible library 2 Mar 2016
by Hideki Yamauchi
This example code is in the public domain.
http://fabo.io/213.html
*/
// include the library code:
#include <Wire.h>
#include <FaBoLCDmini_AQM0802A.h>
// initialize the library
FaBoLCDmini_AQM0802A lcd;
void setup() {
// set up the LCD:
lcd.begin();
// Print a message to the LCD.
lcd.print("hello!");
}
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);
}
|
Parts
GitHub
- https://github.com/FaBoPlatform/FaBoLCDmini-AQM0802A-Library