Created
August 20, 2019 17:46
-
-
Save baobao/995c485f981d7631876574b1f355693b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <LiquidCrystal.h> | |
// lcd変数生成 | |
// RS, E, D4, D5, D6, D7という引数が代入されます | |
LiquidCrystal lcd(4, 6, 10, 11, 12, 13); | |
void setup() | |
{ | |
// LCD1602なので、16文字2行を代入 | |
lcd.begin(16, 2); | |
lcd.clear(); | |
lcd.setCursor(0, 0); | |
// 出力文字列を設定 | |
lcd.print("Hello Shibuya24"); | |
} | |
void loop() {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment