9 lines
226 B
C
9 lines
226 B
C
#ifndef DISPLAY_HELPER_H
|
|
#define DISPLAY_HELPER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
// 显示混合字符串(中文+英文数字)
|
|
void DisplayMixedString(uint8_t start_x, uint8_t start_y, const char* text);
|
|
|
|
#endif // DISPLAY_HELPER_H
|