[原创] [ ST NUCLEO-U575ZI-Q 测评] arduino OLED显示

lugl4313820   2022-12-14 16:39 楼主

# 新建项目:

Create New Project: 截屏2022-12-14 15.56.16.png

稍等一会完成。

在Libraries里面查找库:

截屏2022-12-14 15.59.54.png    找到ssd1306的这个库 截屏2022-12-14 16.02.46.png  点击Add to project,等一会就下载好了。

截屏2022-12-14 16.04.03.png  书写主程序如下:

#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

运行后如图 181671007137_.pic.jpg  

 

2022-12-14 16.20拍摄的照片.jpg  

2022-12-14 16.22拍摄的影片

相机太差了,怕不好。。。

回复评论 (1)

测评汇总:免费申请|ST NUCLEO-U575ZI-Q https://bbs.eeworld.com.cn/thread-1228653-1-1.html

玩板看这里: https://bbs.eeworld.com.cn/elecplay.html EEWorld测评频道众多好板等你来玩,还可以来频道许愿树许愿说说你想要玩的板子,我们都在努力为大家实现!
点赞  2023-1-12 09:27
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复