1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ArduinoUno: LCD モジュールを使う

Last updated at Posted at 2021-07-19

Arduino の LCDモジュールを使う方法です。
Grove-LCD RGB Backlight v4.0 を I2C に繋ぎます。
IMG_20210719_145920.jpg

image.png

hello/hello.ino
#include "rgb_lcd.h"

rgb_lcd lcd;

void setup() {
	lcd.begin(16,2);
	lcd.setRGB(0, 255, 255);

}

void loop() {
    lcd.setCursor(0,0);
    lcd.print ("Good Morning!  ");
    delay(2000);
    lcd.setCursor(0,0);
    lcd.print ("Good Afternoon!  ");
    delay(2000);
}

ライブラリーのインストール

Grove_LCD_RGB_Backlight-master.zip をインストールする必要があります。

スケッチ -> ライブラリーをインクルード -> .ZIP形式のライブラリーをインクルード

image.png

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?