# 新建项目:
Create New Project:
稍等一会完成。
在Libraries里面查找库:
找到ssd1306的这个库
点击Add to project,等一会就下载好了。
书写主程序如下:
#include <Arduino.h>
#include <Wire.h>
#include <SPI.h>
#include "ssd1306.h"
#include "ssd1306_console.h"
void setup()
{
/* Replace the line below with the display initialization function, you want to use */
ssd1306_128x64_i2c_init();
ssd1306_clearScreen();
/* Set font to use with console */
ssd1306_setFixedFont(ssd1306xled_font6x8);
}
void loop()
{
ssd1306_print( "This is console output: " );
ssd1306_print( "go to the next line\n" );
delay(500);
}
编译后下载到开发板。
连接OLED,接线图如下:
OLED 开发板
SCL------- D15
SDA------- D14
GND------GND
VCC------3.3V
运行后如图
2022-12-14 16.22拍摄的影片
相机太差了,怕不好。。。