include //使用LiquidCrystal函式庫。 LiquidCrystal lcd(12, 11, 10, 5, 4, 3, 2);//宣告 lcd 變數。 lcd.write("hello, world!"); //寫入字元"hello, world!"。 ``` 二、LCM字形碼![](http://maker.tn.edu.tw/uploads/tad_book3/image/img170.jpg) 三、顯示範例顯示25℃ ``` #include // Arduino IDE 內建 #include LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE); const byte degree=25; const byte degreeSymbol=B11011111; void setup() { lcd.begin(16,2); } void loop() { lcd.setCursor(0,0); lcd.print(degree); lcd.write(degreeSymbol); lcd.print("C"); } ``` 四、練習1.設計 Arduino 程式,控制 LCD 顯示 " π=180° "。 2.設計 Arduino 程式,控制 LCD 顯示 " 10÷2=5 "。
#include // Arduino IDE 內建 #include LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE); const byte degree=25; const byte degreeSymbol=B11011111; void setup() { lcd.begin(16,2); } void loop() { lcd.setCursor(0,0); lcd.print(degree); lcd.write(degreeSymbol); lcd.print("C"); } ``` 四、練習1.設計 Arduino 程式,控制 LCD 顯示 " π=180° "。 2.設計 Arduino 程式,控制 LCD 顯示 " 10÷2=5 "。
進階搜尋