arduino平台液晶显示屏代码

时间:2022-07-11 19:18:14 阅读: 最新文章 文档下载
说明:文章内容仅供预览,部分内容可能不全。下载后的文档,内容与下面显示的完全一致。下载之前请确认下面内容是否您想要的,是否完整无缺。
#include

LiquidCrystal lcd(12,11,10,9,8,7,6,5,4,3,2);

//LCD引脚定义,rs=12,rw=11,en=10 D0~D7=2~9 void setup() { lcd.begin(16,2);

lcd.print("hello,world!"); }

void loop() {

lcd.setCursor(0,1); lcd.print(millis()/1000); }


本文来源:https://www.wddqw.com/doc/fac3251375232f60ddccda38376baf1ffc4fe3bc.html