mvizsensorc.nc
来自「tinyos-2.x.rar」· NC 代码 · 共 17 行
NC
17 行
/**
* The default sensor for MViz is a simple sine wave.
*
* @author Philip Levis
*/
generic configuration MVizSensorC()
{
provides interface Read<uint16_t>;
}
implementation
{
components new SineSensorC() as DemoChannel;
Read = DemoChannel;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?