c_cpp #arduino#esp8266 #wemosd1

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp #arduino#esp8266 #wemosd1相关的知识,希望对你有一定的参考价值。

#include <Wire.h> 
#include <LiquidCrystal_I2C.h>

// Address,EN,RW , RS, D4,D5,D6,D7,BackLight,BL_Polarity
//LiquidCrystal_I2C lcd1(0x26, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE); 
LiquidCrystal_I2C lcd2(0x3F, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE); 

void setup()
{
 

 lcd2.begin(16,2); 
 lcd2.backlight();
 lcd2.print("LCD 16 x 2");
 lcd2.setCursor(0,1);
 lcd2.print("I2C Address 0x3F");
 delay(2000);
 lcd2.noDisplay();
 delay(2000);
 lcd2.display();
 lcd2.setCursor(0,1);
 lcd2.print("I2C Address 0x27");
 
}

void loop()
{
}

以上是关于c_cpp #arduino#esp8266 #wemosd1的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp Arduino ESP8266 WPS wifi连接

c_cpp esp8266.arduino.test.pwm.ino

c_cpp esp8266.arduino.connectwifi.timeout.c

c_cpp 读/写ESP8266 EEPROM - 来自https://forum.arduino.cc/index.php?topic=461677.0

arduino下esp8266+web实现远程开关窗和雨滴感应开关窗

arduino nano 链接 esp 8266 wifi模块