mirror of
https://gitee.com/lzc56/WouoUI-PageVersion.git
synced 2025-06-17 20:57:52 +00:00
17 lines
334 B
C
17 lines
334 B
C
#ifndef __OLED_PORT_H__
|
|
#define __OLED_PORT_H__
|
|
|
|
#include "stdio.h"
|
|
#include "stdint.h"
|
|
|
|
#define OLED_LOG (void)
|
|
|
|
//对应要实现的接口函数
|
|
void OLED_Init(void); //初始化驱动
|
|
void OLED_SendBuff(uint8_t buff[8][128]); //将8*128字节的buff一次性全部发送的函数
|
|
|
|
//void OLED_PowerCtrl(uint8_t on1_off0);
|
|
|
|
#endif
|
|
|