STM32F103C8驱动两个oled显示不同画面
- #include "stm32f10x.h" // Device header
- #include "Delay.h"
- #include "OLED.h"
- #include "Key.h"
- #include "OLED2.h"
- uint8_t KeyNum = 0;
- int main(void)
- {
- OLED_Init();
- OLED_Init2();
- OLED_ShowString(1, 3, "HelloWorld!");
- OLED_ShowString2(3, 3, "Hello!");
-
- while (1)
- {
-
-
- }
- }
复制代码
下载:
双oled驱动不同画面.7z
(178.64 KB, 下载次数: 7)
|