WM のすべての LED は、通常、NLED API を使用してアクセスできます。問題は、赤い LED の ID を自分で見つけなければならないことです。
最初に LED の数を取得します。
NLED_COUNT_INFO cInfo;
memset(&cInfo, 0, sizeof(cInfo));
NLedGetDeviceInfo(NLED_COUNT_INFO_ID, &cInfo);
次に、LED ON/OFF を使用して各 LED ID を確認します (BLINK をサポートするものもあります)。
/*
struct NLED_SETTINGS_INFO
{
UINT LedNum; // @FIELD LED number, 0 is first LED
INT OffOnBlink; // @FIELD 0 == off, 1 == on, 2 == blink
LONG TotalCycleTime; // @FIELD total cycle time of a blink in microseconds
LONG OnTime; // @FIELD on time of a cycle in microseconds
LONG OffTime; // @FIELD off time of a cycle in microseconds
INT MetaCycleOn; // @FIELD number of on blink cycles
INT MetaCycleOff; // @FIELD number of off blink cycles
};
*/
NLED_SETTINGS_INFO settings;
memset(&settings, 0, sizeof(settings));
settings.LedNum= id;
/* 0 Off
1 On
2 Blink */
settings.OffOnBlink= onoff;
settings.TotalCycleTime=1000;
settings.OnTime = 500;
settings.OffTime=500;
settings.MetaCycleOn=5;
settings.MetaCycleOff=5;
if (!NLedSetDevice(NLED_SETTINGS_INFO_ID, &settings))
{
DEBUGMSG(true,(L"NLedSetDevice(NLED_SETTINGS_INFO_ID) failed"));
}
else
{
DEBUGMSG(true,(L"NLedSetDevice(NLED_SETTINGS_INFO_ID) success"));
}
PhoneGap には、上記の C API 用の CS インターフェイスがあります: https://github.com/hemisphire/phonegap-winmo/blob/master/NotificationCommand.cs
上記は Motorola だけでなく、すべての WM デバイスで動作します。これは、他のデバイスでは機能しない OEM SDK を使用するよりも一般的なアプローチです。