Dan

Forum Replies Created

Viewing 25 posts - 501 through 525 (of 1,021 total)
  • Author
    Posts
  • in reply to: A Stronger Stepper Motor? #15293
    Dan
    Keymaster

    The home position is so high up that the force needed to pull the belts is crazy high, even for a bigger stepper motor.

    A better solution would be to move the home position to a place it can reach more easily.

    Makelangelo-firmware can do this…

    D6 Xnnn Ynnn Znnn Unnn Vnnn Wnnn
    Set home position for each axis.

    …but Makelangelo software does not have an option to adjust the home position. it would probably reset the home position to the default as soon as the robot connects. I haven’t looked at that bit in a while and can’t confirm that at this second.

    in reply to: Skycam/SpiderCam #15290
    Dan
    Keymaster

    Everything in the makelangelo code should be in mm. I thought I had documented it better in configure.h that the standard units would be mm and kg… another issue to open in github.

    Thank you for your patience with me. I’m going as fast as I can.

    in reply to: Skycam/SpiderCam #15274
    Dan
    Keymaster

    adjustDimensions() there would only happen once, when the EEPROM version changes, which is almost never.

    gcode M101 will adjust limits without changing the firmware.

    M101 Annn Tnnn Bnnn
    Change axis A limits to max T and min B

    axis order is XYZUVW, so to change axis X to limit from -10 to +20

    M101 A0 T20 B-10

    I hope this helps.

    in reply to: Skycam/SpiderCam #15253
    Dan
    Keymaster

    Uh…. they shouldn’t all move together.

    option a) Did you wire all the motors to one driver?

    option b) Maybe your setup thinks the machine is 0mm on each side and the math is failing? :S

    option c) it’s a firmware bug and I need to investigate.

    in reply to: Skycam/SpiderCam #15234
    Dan
    Keymaster

    An update with this fix has been published to the firmware master branch. Thank you for your help!

    in reply to: Skycam/SpiderCam #15233
    Dan
    Keymaster

    That was very thorough 🙂

    Change the start like this:

    void IK(float *cartesian, long *motorStepArray) {
    float x = cartesian[0];
    float y = cartesian[1];
    float z = cartesian[2];

    float limit_xmax = axies[0].limitMax;
    float limit_xmin = axies[0].limitMin;
    float limit_ymax = axies[1].limitMax;
    float limit_ymin = axies[1].limitMin;

    in reply to: Can't change settings on software #15232
    Dan
    Keymaster

    Is your drawing a single continuous line?

    The “start at #” goes to line N, then looks backward in the gcode to find the last time the pen was put down and starts from there. if your drawing is one giant line, it would start from the very beginning.

    I will have to improve that, maybe with a checkbox option (“start exactly at this line number?”)

    Wander is slow to show results. it’s also not wonderful, but it does work. Try to expand the log tab at the bottom of the app before running Wander, and you will see status reports while it is working.

    in reply to: home position problem #15203
    Dan
    Keymaster

    a problem has been found in the firmware. when I click “this is home” the position is reset to 0,0 instead of the correct home position. A patch has been submitted.

    Please
    – go to https://github.com/MarginallyClever/Makelangelo-firmware/tree/dev
    – “clone or download”
    – install the latest firmware
    – report results here

    in reply to: Can't change settings on software #15200
    Dan
    Keymaster

    I want to help. I agree that the problem sounds strange. I am unable to recreate it here by following your steps. Are you sure you are running the latest software v7.15.2? I tested Makelangelo 3+ with several settings changes and there was no issue. As far as I know no one else has this issue either. I don’t know how else to help yet.

    in reply to: Zarplotter 4-motor drawing machine #15197
    Dan
    Keymaster

    Please try the latest version (7.15.2), it should support zarplotter better. if it still does not work let me know and I will run more tests. I apologize for the slowness, I am getting a lot of tricky customer support questions right now.

    in reply to: Can't change settings on software #15196
    Dan
    Keymaster

    hmm is right! I just tried it here with the latest version and it was fine. changed pen size and saved settings, changed paper size and saved, changed both together and saved, no issues.

    Is there any error report in the log.html?

    in reply to: home position problem #15183
    Dan
    Keymaster

    I’m running some tests now.

    in reply to: home position problem #15181
    Dan
    Keymaster

    When you run it over USB, does it behave correctly?

    in reply to: Skycam/SpiderCam #15180
    Dan
    Keymaster

    The latest version has been rolled into Makelangelo-firmware.

    set MACHINE_STYLE to SKYCAM.

    Yes, controlled via USB for direct-drive & setup.

    SD card if you have a long programmed sequence of moves.

    in reply to: home position problem #15163
    Dan
    Keymaster

    Huh. I’d have to ask the robot “please keep telling me where you are while you are running” so I could get a better idea what it is thinking.

    in reply to: Displaced drawing #15159
    Dan
    Keymaster

    It looks like the belt is slipping.

    is the pulley tightly attached to the stepper motor?

    As the pulley turns, do you see the belt skip on the pulley? If yes, count the teeth on the pulley. We have in the past received 18-tooth pulleys labelled as 20-tooth pulleys. Monsters!

    in reply to: start at line # #15152
    Dan
    Keymaster

    Hi Raphael!

    Let’s say I’m drawing and the USB connection fails at line 10418. I reconnect, home the machine, and then say “start from line #10417”. Makelangelo should skip the first part and finish the drawing. Assuming your homing is good then there should be no visible “break” where the hiccup happened. This is much easier on the M5 where it can auto-home perfectly every time.

    in reply to: incomplete drawing / USB-Connection #15151
    Dan
    Keymaster

    It could be lame cable, it could be loose connection on the end, it could be interrupted by human.

    The safest way to run a long drawing is with the SD card. :T

    in reply to: wobbling at drawing start #15149
    Dan
    Keymaster

    Do you click “this is home” in the menu before starting?

    Do you have a clip of the behavior?

    in reply to: Makelangelo 3.2 doesn´t begin to draw #15110
    Dan
    Keymaster

    What does your counterweight look like?

    in reply to: traditional xy in Makelangelo #15072
    Dan
    Keymaster

    some people use a Y shaped cable to drive two motors from one axis driver. be careful about current limit! each driver has max 1.5a without cooling, 2 with cooling.

    in reply to: Makelangelo 3.2 doesn´t begin to draw #15071
    Dan
    Keymaster

    > lines are like stairs

    I’ve never heard this description before. picture, please.

    in reply to: traditional xy in Makelangelo #15064
    Dan
    Keymaster

    Makelangelo-firmware is not a library.

    I don’t know why you are using #include many times in your sketch.

    I’m not sure what you’re trying to do.

    in reply to: Makelangelo 3.2 doesn´t begin to draw #15043
    Dan
    Keymaster

    Please use the makelangelo software to convert your DXF / SVG to NGC (gcode) format. There are also many great styles for converting bitmaps. I also answered on the youtube video so that Youtubbers can see the answer. Sorry for the duplicate responses.

    in reply to: turn on Makelangelo 3.2 #15041
    Dan
    Keymaster

    I’m happy to refund you for the power supply you bought. I will also inspect the QA process for testing power supplies and make sure our current stock is OK.

Viewing 25 posts - 501 through 525 (of 1,021 total)