-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c3836fa
commit db8e5a3
Showing
5 changed files
with
11 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,20 @@ | ||
from AutoSequencerV2.command import Command | ||
from singerMovement.carriageControl import CarriageControl, CarriageControlCmd | ||
from pieceHandling.gamepieceHandling import GamePieceHandling | ||
|
||
class EjectCommand(Command): | ||
def __init__(self): | ||
self.carriageControl = CarriageControl() | ||
self.gamePieceHandling = GamePieceHandling() | ||
pass | ||
|
||
def execute(self): | ||
#self.carriageControl.setPositionCmd(CarriageControlCmd.AMP) | ||
|
||
self.gamePieceHandling.setInput( | ||
GamePieceHandling().setInput( | ||
True, | ||
False, | ||
False, | ||
False | ||
) | ||
|
||
def isDone(self): | ||
return False | ||
#return if we're done. Which should be never? It should be controlled by other things | ||
# return if we're done. Which should be never? It should be controlled by other things | ||
return False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters