Lines Matching refs:effect
5 …cluding obtaining the light type, setting the lighting mode and blinking effect, and turning on or…
37 …effect) | Turns on available lights in the list based on the specified light type. **type** indica…
57 struct LightEffect effect;
68 …effect.lightBrightness = 0x80000000; // Brightness value. The most significant bit indicates the c…
69 effect.flashEffect.flashMode = LIGHT_FLASH_NONE;
72 ret = g_lightDev->TurnOnLight(g_lightInfo[i].lightType, &effect);
81 effect.lightBrightness = 0x80000000;
82 effect.flashEffect.flashMode = LIGHT_FLASH_TIMED;
83 effect.flashEffect.onTime = g_onTime; // Light on time in a blinking period, in ms
84 effect.flashEffect.offTime = g_offTime; // Light off time in a blinking period, in ms
87 ret = g_lightDev->TurnOnLight(g_lightInfo[i].lightType, &effect);