?? islappc.nc
字號:
/**
* 本程序用于測試ISL29001光照傳感器接口組件和I2C驅動
* @author Lizm & Majy & Dupl
* @date 2008/09/27
*/
#include "ISL29001.h"
configuration ISLAppC
{
}
implementation
{
components MainC, ISLC, LedsC;
components new TimerMilliC() as Timer;
components ISL29001ReaderC;
ISLC -> MainC.Boot;
components SerialActiveMessageC as AM;
ISLC.SerialControl -> AM;
ISLC.Packet -> AM;
ISLC.AMSend -> AM.AMSend[AM_ISL_TESTING];
ISLC.ISLReader -> ISL29001ReaderC.ISL29001Reader;
ISLC.Timer -> Timer;
ISLC.Leds -> LedsC;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -