⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tempmon.h

📁 Tinyos LEACH protocol modify
💻 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 + -