00001 /* 00002 * Copyright (c) 2016 Carnegie Mellon University, Guilherme Pereira <gpereira@cmu.edu> 00003 * 00004 * For License information please see the LICENSE file in the root directory. 00005 * 00006 */ 00007 00008 #ifndef _BLINK1_FUNCTIONS 00009 00010 #define _BLINK1_FUNCTIONS 00011 00012 #define BL_FADE 1 // fade to the RGB color, t is the time of fading in ms 00013 #define BL_ON 2 // turn on to the RGB color, t is ignored 00014 #define BL_BLINK 3 // blink the RGB color, t is the period in ms 00015 #define BL_RANDBLINK 4 // blink at random RGB colors, t is the period in ms 00016 00017 00018 #endif