Skip to content

Instantly share code, notes, and snippets.

@bcdejp
Last active August 29, 2015 14:12
Show Gist options
  • Save bcdejp/1abe8b63d2fa490473fa to your computer and use it in GitHub Desktop.
Save bcdejp/1abe8b63d2fa490473fa to your computer and use it in GitHub Desktop.
LCDのサンプルプログラム
/*
LCD Sample
Ver1.00
make.bcde.jp
LCD表示のサンプル
*/
#include <LiquidCrystal.h>
/* ピンアサインを変更する */
/* lcd(RS, E, DB4, DB5, DB6, DB7) */
LiquidCrystal lcd(8, 9, 4, 5, 6, 7);
void setup()
{
lcd.begin(16, 2); /* LCDの設定(16文字2行) */
lcd.clear(); /* LCDのクリア */
lcd.setCursor(0, 0); /* 0列0行から表示する */
lcd.print("LCD Sample v1.0"); /* 文字列の表示 */
delay(1000);
lcd.clear(); /* LCDのクリア */
}
void loop()
{
lcd.setCursor(0, 0); /* 0列0行から表示する */
lcd.print("Hello World!!"); /* 文字列の表示 */
lcd.setCursor(0, 1); /* 0列1行から表示する */
lcd.print("Hello World!!!"); /* 文字列の表示 */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment