NIBO Library 2.11
|
00001 /* BSD-License: 00002 00003 Copyright (c) 2007 by Nils Springob, nicai-systems, Germany 00004 00005 All rights reserved. 00006 00007 Redistribution and use in source and binary forms, with or without modification, 00008 are permitted provided that the following conditions are met: 00009 00010 * Redistributions of source code must retain the above copyright notice, 00011 this list of conditions and the following disclaimer. 00012 * Redistributions in binary form must reproduce the above copyright notice, 00013 this list of conditions and the following disclaimer in the documentation 00014 and/or other materials provided with the distribution. 00015 * Neither the name nicai-systems nor the names of its contributors may be 00016 used to endorse or promote products derived from this software without 00017 specific prior written permission. 00018 00019 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00020 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00021 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 00022 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 00023 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00024 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00025 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00026 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00027 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00028 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00029 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00030 00031 */ 00032 00043 #ifndef NIBO_LEDS_H_ 00044 #define NIBO_LEDS_H_ 00045 #if defined(NIBO_USE_LEDS) || defined (DOXYGEN) 00046 00047 #include <stdint.h> 00048 00049 #ifdef __cplusplus 00050 extern "C" { 00051 #endif 00052 00056 enum { 00057 LEDS_OFF = 0, 00058 LEDS_GREEN = 1, 00059 LEDS_RED = 2, 00060 LEDS_ORANGE = 3 00061 }; 00062 00066 void leds_init(void); 00067 00074 void leds_set_status(uint8_t color, uint8_t led); 00075 00076 #ifdef _NIBO_2_ 00077 00083 void leds_set_status_intensity(int light); 00084 00089 int leds_get_status_intensity(); 00090 #endif 00091 00098 void leds_set_headlights(int light); 00099 00104 int leds_get_headlights(); 00105 00112 void leds_set_displaylight(int light); 00113 00118 int leds_get_displaylight(); 00119 00120 #ifdef __cplusplus 00121 } // extern "C" 00122 #endif 00123 00124 #endif // NIBO_USE_LEDS 00125 #endif // NIBO_LEDS_H_