-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mg longshot #174
Merged
Merged
Mg longshot #174
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
e65bb64
Merge pull request #173 from ArmoredTurtle/DEV
MG-longshot 64b49c2
added Infinite loop functions
MG-longshot 202388a
removed import of idle_timeout
MG-longshot d1839f3
added LED change when runout
MG-longshot 585b40a
used better English for status
MG-longshot 1461034
added else for lane ejects
MG-longshot 86366d7
changed to IDLE.state
MG-longshot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -238,10 +238,18 @@ | |
if self.load_state == True and self.prep_state == True: | ||
self.status = 'Loaded' | ||
self.AFC.afc_led(self.AFC.led_ready, led) | ||
elif self.name == self.AFC.current and self.IDLE.state == 'Printing' and self.AFC.lanes[self.unit][self.name]['runout_lane'] != 'NONE': | ||
self.status = None | ||
self.AFC.afc_led(self.AFC.led_not_ready, led) | ||
self.AFC.gcode.respond_info("Infinete Spool triggered") | ||
empty_LANE = self.printer.lookup_object('AFC_stepper ' + self.AFC.current) | ||
change_LANE = self.printer.lookup_object('AFC_stepper ' + self.AFC.lanes[self.unit][self.name]['runout_lane']) | ||
self.gcode.run_script_from_command(change_LANE.map) | ||
self.gcode.run_script_from_command('SET_MAP LANE=' + change_LANE.name + ' MAP=' + empty_LANE.map) | ||
else: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This else statement need to stay, if a lane is ejected the led stays green There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
self.status = None | ||
self.AFC.afc_led(self.AFC.led_not_ready, led) | ||
|
||
def do_enable(self, enable): | ||
self.sync_print_time() | ||
stepper_enable = self.printer.lookup_object('stepper_enable') | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this will always return the same state and not update, this line can be removed