📄 tempmon.h
字号:
/*
* TempMon.h - A header file containing structures for the Temperature Monitor application
*
* @author Geoff Martin
* @date 18th April 2004
* @version 1.0
*/
enum
{
TIMER_RATE = 5000, // Send a message every 5 seconds
AM_TEMPMONMSG = 10,
};
typedef struct TempMonMsg
{
uint16_t address;
uint32_t timestamp;
uint16_t reading;
} __attribute__ ((packed)) TempMonMsg;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -