You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
441 B
Markdown

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# I2C_OLED
- 将PB6、PB7分别配置为I2C_SCL、I2C_SDA
- 在Project Manager - Code Generator中勾选Generate peripheral initialization as a pair of...
- 配置I2C1
- I2C选择I2C
- 复制oled.c/oled.h/oledfont.h文件到Core的Src/Inc目录下
- 初始化OLED API
- OLED_Init();
- OLED_ColorTurn(0);
- OLED_DisplayTurn(0);
- 注意调用OLED_ShowString之后需要调用OLED_Refresh()才能刷新屏显。