WouoUI-PageVersion/Csource/src/oled_port.h

17 lines
334 B
C
Raw Normal View History

2024-02-16 04:02:53 +00:00
#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);
2024-02-16 04:02:53 +00:00
#endif