10344| 14
|
[入门教程] 1602显示屏显示温度 |
[mw_shl_code=cpp,true]int LM35 = A1; #include <LiquidCrystal.h> LiquidCrystal lcd(12, 11, 10, 9, 8, 7);//设置接口 void setup() { Serial.begin(9600); lcd.begin(16,2); lcd.clear(); //清屏 delay(1000); //延时1000ms } void loop () { float temp =(5.0*analogRead(LM35)*100)/1024; Serial.print("temperature"); Serial.print(temp); Serial.println("C"); lcd.setCursor(0, 0) ; //设置光标位置为第1行第1个位置 lcd.print(temp); //使屏幕显示文字 lcd.setCursor(0, 1) ; lcd.print("nice to meet you"); //使屏幕显示文字Button OFF delay(500); }//延时0.1秒,这里也就是刷新速度。 [/mw_shl_code]来两张效果图 接线: 温度传感器A1 这是显示屏接线 注:温度传感器不要选错 下个目标:加蜂鸣器 |
© 2013-2024 Comsenz Inc. Powered by Discuz! X3.4 Licensed