老循迹
This commit is contained in:
13
循迹/Hardware/OLED.h
Normal file
13
循迹/Hardware/OLED.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef __OLED_H
|
||||
#define __OLED_H
|
||||
|
||||
void OLED_Init(void);
|
||||
void OLED_Clear(void);
|
||||
void OLED_ShowChar(uint8_t Line, uint8_t Column, char Char);
|
||||
void OLED_ShowString(uint8_t Line, uint8_t Column, char *String);
|
||||
void OLED_ShowNum(uint8_t Line, uint8_t Column, uint32_t Number, uint8_t Length);
|
||||
void OLED_ShowSignedNum(uint8_t Line, uint8_t Column, int32_t Number, uint8_t Length);
|
||||
void OLED_ShowHexNum(uint8_t Line, uint8_t Column, uint32_t Number, uint8_t Length);
|
||||
void OLED_ShowBinNum(uint8_t Line, uint8_t Column, uint32_t Number, uint8_t Length);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user