Skip to content
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

Feature enhanced limit info #51

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@

LasaurAppCommunity
==================

This is a fork of the official "LasaurApp" repository. It contains community-provided changes to the lasersaur (http://lasersaur.com) app. It is in no way "official" and it should only be used by people willing to experiment and suffer potential problems as a result.

If you wish to discuss this fork, please join the lasaurappcommunity Google Group (<[email protected]>).

You can eMail our moderator, Steve Baker at <[email protected]>

Our code repostiory is on GIThub:

https://github.com/RenaissanceMiniatures/LasaurApp

Discussions of the official version of LasaurApp and the Lasersaur laser cutter should take place in the lasersaur Google Group (<[email protected]>) - this group is SOLELY for software designers/developers, etc.

-- Steve



----------------------------------------------------------------------------------------------
LasaurApp
=========

Expand Down
8 changes: 7 additions & 1 deletion firmware/src/gcode.c
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,13 @@ void gcode_process_line() {
printString("L3"); // Limit Y1 Hit
}
if (SENSE_Y2_LIMIT) {
printString("L4"); // Limit Y21 Hit
printString("L4"); // Limit Y2 Hit
}
if (SENSE_Z1_LIMIT) {
printString("L5"); // Limit Z1 Hit
}
if (SENSE_Z2_LIMIT) {
printString("L6"); // Limit Z2 Hit
}
}
#endif
Expand Down