📄 ds1302._h
字号:
#ifndef DS1302_H
#define DS1302_H
#ifndef uchar
#define uchar unsigned char
#endif
#ifndef uint
#define uint unsigned int
#endif
#ifndef ulong
#define ulong unsigned long
#endif
//----------------------------------------------------------------------------------//
typedef struct time_now{ //当前时间的数据结构
uchar sec; /*秒*/
uchar min; /*分*/
uchar hour; /*时*/
uchar date; /*日期*/
uchar month; /*月*/
uchar week; /*周*/
uchar year; /*年*/
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -