U8G2库无法打印-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 635|回复: 2

[已解决] U8G2库无法打印

[复制链接]
发表于 2022-1-17 13:45 | 显示全部楼层 |阅读模式
为什么会这样,我用的ESP8266-12F
屏幕截图 2022-01-17 134446.png
发表于 2022-1-17 18:59 | 显示全部楼层
对象需要实例化才能正常调用,你实例化的对象是u8x8,不是u8g2
建议阅读u8g2例程,学习如何使用
发表于 2022-1-17 21:13 | 显示全部楼层
[pre]#include <Arduino.h>
#include <U8g2lib.h>

U8G2_SSD1306_128X32_UNIVISION_1_SW_I2C u8g2(U8G2_R0, /* clock=*/ SCL, /* data=*/ SDA, /* reset=*/ U8X8_PIN_NONE);  

void setup(void) {
  u8g2.begin();
  u8g2.enableUTF8Print();       
}

void loop(void) {
  u8g2.setFont(u8g2_font_unifont_t_chinese2);  
  u8g2.firstPage();
  do {   
    u8g2.setCursor(0, 40);
    u8g2.print("你好世界");                // Chinese "Hello World"     
  } while ( u8g2.nextPage() );
  delay(1000);
}[/pre]
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-11-28 15:44 , Processed in 0.090406 second(s), 20 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表