1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the GNU General Public License v3+, or later.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc
.squirreljme
.runtime
.lcdui
;
12 import cc
.squirreljme
.runtime
.cldc
.debug
.Debugging
;
15 * Control utilities for the backlight.
19 public final class BacklightControl
21 /** The minimum backlight level. */
22 public static final byte MIN_LEVEL
=
25 /** The maximum backlight level. */
26 public static final byte MAX_LEVEL
=
30 * Sets the level of the backlight.
32 * @param __level The backlight level, if outside of bounds it will be
36 public static void setLevel(int __level
)
38 Debugging
.todoNote("Implement backlight set: %d", __level
);