用户工具

站点工具


ocrobot:alpha:1602:tutorial05

到此差别页面的链接

两侧同时换到之前的修订记录前一修订版
ocrobot:alpha:1602:tutorial05 [2017/10/04 03:38] 弘毅ocrobot:alpha:1602:tutorial05 [2023/06/07 04:23] (当前版本) – 外部编辑 127.0.0.1
行 1: 行 1:
 +====== 显示和不显示 ======
 +
 +<WRAP left round info 60%>
 +这个例程显示了如何在OCROBOT ALPHA 1602 LCD显示屏上字符的显示和不显示。
 +</WRAP>
 +
 +
 +
 +==== 硬件 ====
 +  * [[ocrobot:alpha:parallelexpansion:index|ALPHA 并行扩展板]]
 +  * [[ocrobot:alpha:mega328-u:main|ALPHA MEGA328-U]]
 +  * [[ocrobot:alpha:1602:main|ALPHA 1602 LCD模块]]
 +
 +==== 搭建电路 ====
 +
 +  - ALPHA 1602 LCD模块插入并行扩展版1号槽位。
 +  - ALPHA MEGA328-U模块插入并行扩展板2号槽位。
 +  - USB线连接计算机与ALPHA MEGA328-U。
 +{{:ocrobot:alpha:1602:1602无显示435.png?nolink|}}
 +==== 代码 ====
 +
 +<code cpp>
 +#include <Wire.h>
 +#include <LiquidCrystal_I2C.h>
 +LiquidCrystal_I2C lcd(0x20,16,2); 
 +
 +void setup() {
 +  lcd.init();
 +  lcd.backlight(); 
 +  lcd.print("hello, world!");
 +}
 +
 +void loop() {
 +  // 打开显示开关:
 +  lcd.noDisplay();
 +  delay(500);
 +  // 关闭显示开关:
 +  lcd.display();
 +  delay(500);
 +}
 +</code>
 +
 +[[ocrobot:alpha:1602:main|返回上一级]]