|
Function |
|
Green LED blinking |
|
Purpose |
|
Continuous green LED blinking on OS background |
|
Syntax |
|
void pulsingLEDG() |
|
Parameters |
|
– |
|
Return value |
|
– |
|
Output values |
|
– |
|
Preconditions |
|
Blinking times should be defined in advance by setOnPulsingLED and setOffPulsingLED. |
|
Remarks |
|
Blinking continues until it is changed (e.g. by stopLEDG). |
|
Side effects |
|
– |
|
See also |
|
|
|
Example 1 |
|
pulsingLEDG(); // continuous blinking on OS background |
|
Example 2 |
|
// Blinking for 2 s pulsingLEDG(); // blinking for 2 s on OS background waitDelay(200); // 2 s delay generated on foreground stopLEDG(); // Stop blinking |