2 * (C) Copyright 2005-2010
8 * SPDX-License-Identifier: GPL-2.0+
10 #ifndef _led_display_h_
11 #define _led_display_h_
13 /* Display Commands */
14 #define DISPLAY_CLEAR 0x1 /* Clear the display */
15 #define DISPLAY_HOME 0x2 /* Set cursor at home position */
17 void display_set(int cmd);
18 int display_putc(char c);