fancy_leds.h
1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
* Copyright (C) 2014 Freie Universität Berlin
* Copyright (C) 2015 Zolertia SL
*
* This file is subject to the terms and conditions of the GNU Lesser General
* Public License v2.1. See the file LICENSE in the top level directory for more
* details.
*/
/**
* @ingroup boards_remote
* @brief LED extension
* @{
*
* @file
* @brief LED extended functions
*
* @author Antonio Lignan <alinan@zolertia.com>
*/
#ifndef FANCY_LEDS_H
#define FANCY_LEDS_H
#include "board_common.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @name Macro to create blinking and rainbows with the LEDs
* @{
*/
/* Take LED_COLOR as argument, i.e LED0 */
#define LED_FADE(led) \
volatile int i; \
int k, j; \
LED_FADE_EXPAND(led)
#define LED_FADE_EXPAND(led) \
for(k = 0; k < 800; ++k) { \
j = k > 400 ? 800 - k : k; \
led##_ON; \
for(i = 0; i < j; ++i) { \
__asm__("nop"); \
} \
led##_OFF; \
for(i = 0; i < 400 - j; ++i) { \
__asm__("nop"); \
} \
}
#define LED_RAINBOW() \
volatile int i; \
int k,j; \
LED_FADE_EXPAND(LED3); \
LED_FADE_EXPAND(LED0); \
LED_FADE_EXPAND(LED4); \
LED_FADE_EXPAND(LED2); \
LED_FADE_EXPAND(LED1);
/** @} */
#ifdef __cplusplus
} /* end extern "C" */
#endif
#endif /* FANCY_LEDS_H */
/** @} */