【arduino从入门到放肆】⑦Arduino OLED液晶显示

Arduino OLED液晶显示

OLED液晶是常用的显示设备,我们使用的是0.96寸的128*64分辨率,使用的是I2C接口

准备知识

接线如下图

【arduino从入门到放肆】⑦Arduino OLED液晶显示_第1张图片

编写代码

/*
 * 
 */

 
#include "Arduino_SensorKit.h"       //Arduino传感器包用到头文件

void setup()  
{
  Oled.begin();                      //OLED初始化
  Oled.setFlipMode(true);            //OLED显示模式
}  
  
void loop() {
  int random_value = analogRead(A0);   //read value from A0

  Oled.setFont(u8x8_font_chroma48medium8_r); 
  Oled.setCursor(0, 33);    // Set the Coordinates 
  Oled.print("Analog Value:");   
  Oled.print(random_value); // Print the Values  
  Oled.refreshDisplay();    // Update the Display 
  delay(1000);
}

上传代码

你可能感兴趣的:(Arduino从入门到放肆,c语言,c++,单片机,传感器,arduino)