jvbiondo
About
- Username
- jvbiondo
- Joined
- Visits
- 8
- Last Active
- Roles
- Member
Comments
-
These are my settings currently: #define MOVE_X_WHEN_HOMED 0#define MOVE_Y_WHEN_HOMED 0#define MOVE_Z_WHEN_HOMED 0 Do I need to set it like so to allow movement before homing? #define MOVE_X_WHEN_HOMED 1#define MOVE_Y_WHEN_HOMED 1#define MOVE_Z_WHEN…
-
Great, thank you for your advice.
-
I have added this command, M380 to Commands.cpp which prints "done" when a move is completed. I would appreciate any comments regarding if this might create unexpected problems? case 380: // M380 Print done at end of all moves Commands::…
-
Thank you for the additional advice, I will make those modifications.
-
In order to keep the required code modifications limited to one location in the code, and since this was strictly for a temporary setup, I wrote the new case this way. A bit clumsy and redundant, but straightforward. Also, my way has the drawback of…
-
And I thank you very much for your previous comment, I have studied the code in commands.cpp and I believe I understand it enough to modify it.
-
Repetier said: It's not really complex for a programmer. If you aren't one it is in deed not as easy. It is more or less just adding a "case 456:"..."break;" to the M code list in commands.cpp and add what you want to do. You find lots of sam…
-
Thank you for the quick reply. That sounds like it would require me to understand your C++ code and write new code, is that correct? It looks very complex.
-
Thank you for your response.
-
I am searching for a command to ask the Repetier if the motors are idle. I would appreciate any thoughts, thank you.
-
I found the answer I was looking for, it's M112, emergency kill.
-
Thank you, that worked!
-
Thank you for commenting on my issue. It certainly is not a big problem for me and I indeed fine tuned it by changing the steps in EEPROM and using a vernier calipers to verify the distance between the carriages and the bed at datum points I designe…
-
The reason I wanted to be able to do this was for Delta calibration. The suggested method of de-energizing a motor, moving it to a calibration point, and then re-energizing it suffers from the problem that when the motor is re-energized it moves sli…
-
Thank you for getting back so quickly.
-
Thank you again for your help.
-
Thank you.
-
Thank you very much for the quick answer.
-
I resolved the problem finally by starting completely fresh with the configuration tool and very carefully filling out each item.
-
Repetier said: You need to tell firmware to move back z after homing 10-20mm for deltas. At top you have no move place so even adjusting to rotation or tool position will trigger end stops. So if you go down after homing you can adjust withou…
-
jvbiondo said: Repetier said: There are only 2 ways for permanent storage - EEPROM or sd card. You can wire quite easy the eeprom chip to power and I2C pins as one possible solution. I would like to wire in the EEPROM as my preferre…
-
G
-
Repetier said: There are only 2 ways for permanent storage - EEPROM or sd card. You can wire quite easy the eeprom chip to power and I2C pins as one possible solution. I would like to wire in the EEPROM as my preferred solution. Would thi…
-
Repetier said: You need to select the right board in arduino ide or the file will not be there. Since it wants a avr file probably Mega 2560 board. Thank you for your quick response. I am using a Due in my project, but I may have made a mi…