/** * \file cfg_led_7seg.h * * * \brief Configuration file for led 7 segment display. * * \author Fabio Bizzi * * \addtogroup SevenSegDisplay 7 Segments LED Displays Driver * \{ * */ #ifndef CFG_LED_7SEG_H #define CFG_LED_7SEG_H /** * Use a Common Cathode display. * $WIZ$ type = "boolean" */ #define CONFIG_LED_7SEG_CCAT 0 /** * Number of digit present in the LED display. * $WIZ$ type = "int" * $WIZ$ min = 1 * $WIZ$ max = 8 */ #define CONFIG_LED_7SEG_DIGIT 4 /** * Max lenght of the string to be displayed. * $WIZ$ type = "int" * $WIZ$ min = 16 * $WIZ$ max = 255 */ #define CONFIG_LED_7SEG_STRLEN 255 /** * Default scrolling speed (ms * CONFIG_LED_7SEG_RTIME). * $WIZ$ type = "int" */ #define CONFIG_LED_7SEG_SSPEED 10 /** * Default refresh time (ms). * $WIZ$ type = "int" */ #define CONFIG_LED_7SEG_RTIME 5 #endif /* CFG_LED_7SEG_H */ /** \} */ //defgroup drivers