Project instellingen goed gezet, apache commons logging pakketten geplaatst en denon rc 176 knoppen toegevoegd.

This commit is contained in:
2011-06-03 16:11:44 +00:00
parent 885ab53f39
commit 32f87ed6a2
5 changed files with 37 additions and 11 deletions

View File

@@ -3,15 +3,16 @@
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
<attributes>
<attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="Project Multimedia/native"/>
<attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="Mimis/native"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="lib/jacob-1.15-M3.jar"/>
<classpathentry kind="lib" path="lib/TableLayout.jar"/>
<classpathentry kind="lib" path="lib/nativecall-0.4.1.jar"/>
<classpathentry kind="lib" path="lib/nativeloader-200505172341.jar"/>
<classpathentry kind="lib" path="cfg"/>
<classpathentry kind="lib" path="resource"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="lib/commons-logging-1.1.1.jar"/>
<classpathentry kind="lib" path="lib/log4j-1.2.16.jar"/>
<classpathentry kind="lib" path="lib/jacob-1.15-M3.jar"/>
<classpathentry kind="lib" path="lib/nativecall-0.4.1.jar"/>
<classpathentry kind="lib" path="lib/nativeloader-200505172341.jar"/>
<classpathentry kind="lib" path="lib/TableLayout.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Project Multimedia</name>
<name>Mimis</name>
<comment></comment>
<projects>
</projects>

View File

@@ -3,10 +3,35 @@ package mimis.device.lirc.button;
import mimis.device.lirc.LircButton;
public enum DenonRC176 implements LircButton {
;
TAPE_AB ("TAPE_AB"),
TAPE_REC ("TAPE_REC"),
TAPE_PAUSE ("TAPE_PAUSE"),
TAPE_STOP ("TAPE_STOP"),
TAPE_REWIND ("TAPE_REW"),
TAPE_FORWARD ("TAPE_FF"),
TAPE_PREIVOUS ("TAPE_PLAYREV"),
TAPE_NEXT ("TAPE_PLAY"),
CD_PREVIOUS ("CD_TRACK_-"),
CD_NEXT ("CD_TRACK_+"),
CD_SHUFFLE ("CD_RANDOM"),
CD_REPEAT ("CD_REPEAT"),
CD_SKIP ("CD_SKIP"),
CD_PAUSE ("CD_PAUSE"),
CD_STOP ("CD_STOP"),
CD_PLAY ("CD_PLAY"),
AMP_TAPE2 ("AMP_TAPE2"),
AMP_TAPE1 ("AMP_TAPE1"),
AMP_AUX ("AMP_AUX"),
AMP_TUNER ("AMP_TUNER"),
AMP_CD ("AMP_CD"),
AMP_PHONO ("AMP_PHONO"),
AMP_VOLUME_UP ("AMP_VOL_UP"),
AMP_VOLUME_DOWN ("AMP_VOL_DOWN"),
AMP_POWER ("AMP_POWER"),
AMP_MUTE ("AMP_MUTE"),
AMP_NEXT ("TUN_CH_UP"),
AMP_PREVIOUS ("TUN_CH_DOWN");
public static final String NAME = "DENON_RC-176";
protected String code;