blob: 8db2b11041f9cc6f6df2c5ff914b664636d7b057 [file] [log] [blame]
Marcoen Hirschbergdd754882006-08-12 08:01:54 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2006 by Linus Nielsen Feltzing
11 *
Daniel Stenberg2acc0ac2008-06-28 18:10:04 +000012 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
Marcoen Hirschbergdd754882006-08-12 08:01:54 +000016 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#ifndef BACKLIGHT_TARGET_H
22#define BACKLIGHT_TARGET_H
23
Steve Gotthardtc07814f2007-01-07 06:38:57 +000024/* Use these to set the buttonlight mode */
25enum buttonlight_mode
26{
Steve Gotthardt93b047f2007-01-08 08:53:36 +000027 /* ON follows the setting */
Steve Gotthardtc07814f2007-01-07 06:38:57 +000028 BUTTONLIGHT_ON,
29
30 /* buttonlights always off */
31 BUTTONLIGHT_OFF,
32
Steve Gotthardt93b047f2007-01-08 08:53:36 +000033 /* buttonlights follow backlight */
Karl Kurbjun173b6112007-05-07 19:34:34 +000034 BUTTONLIGHT_FOLLOW
Steve Gotthardtc07814f2007-01-07 06:38:57 +000035};
36
Steve Gotthardt93b047f2007-01-08 08:53:36 +000037/* Call this to flicker or signal the button lights. Only is effective for
38 * modes that take a trigger input.
39 */
40void __buttonlight_trigger(void);
Steve Gotthardtc07814f2007-01-07 06:38:57 +000041
Steve Gotthardt93b047f2007-01-08 08:53:36 +000042/* map the mode from the command into the state machine entries */
43/* See enum buttonlight_mode for available functions */
Karl Kurbjun173b6112007-05-07 19:34:34 +000044void __buttonlight_mode(enum buttonlight_mode mode);
Steve Gotthardtc07814f2007-01-07 06:38:57 +000045
Jens Arnoldef12b3b2007-11-12 18:49:53 +000046bool _backlight_init(void);
47void _backlight_on(void);
48void _backlight_off(void);
49void _backlight_set_brightness(int brightness);
Karl Kurbjunb15ef982007-05-08 06:57:08 +000050
Jens Arnoldef12b3b2007-11-12 18:49:53 +000051void _buttonlight_set_brightness(int brightness);
52void _buttonlight_on(void);
53void _buttonlight_off(void);
Marcoen Hirschbergdd754882006-08-12 08:01:54 +000054#endif