Skip to content
This repository has been archived by the owner on Mar 3, 2019. It is now read-only.

Commit

Permalink
Ordres actionneurs
Browse files Browse the repository at this point in the history
  • Loading branch information
PFGimenez committed May 27, 2017
1 parent 3660598 commit 56d4b82
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pc/src/config/ConfigInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -121,14 +121,14 @@ public enum ConfigInfo
TURN_LEFT_KEY(37),
TURN_RIGHT_KEY(39),
RESET_WHEELS_KEY(10),
BAISSE_FILET_KEY(66),
LEVE_FILET_KEY(76),
EJECTE_DROITE_KEY(68),
EJECTE_GAUCHE_KEY(71),
REARME_DROITE_KEY(69),
REARME_GAUCHE_KEY(84),
FERME_FILET_KEY(70),
OUVRE_FILET_KEY(79),
BAISSE_FILET_KEY(75), // 66
LEVE_FILET_KEY(82), // 76
EJECTE_DROITE_KEY(73), // 68
EJECTE_GAUCHE_KEY(65), // 71
REARME_DROITE_KEY(80), // 69
REARME_GAUCHE_KEY(66), // 84
FERME_FILET_KEY(69), // 70
OUVRE_FILET_KEY(76), // 79

/**
* Paramètres bas niveau des capteurs
Expand Down
3 changes: 3 additions & 0 deletions pc/src/remoteControl/Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@ else if(!args[i].startsWith("-"))
frame.setVisible(true);
repaint();

for(Commandes c : Commandes.values())
log.debug(c+" "+c.code);

int noSending = 0;
try
{
Expand Down

0 comments on commit 56d4b82

Please sign in to comment.