Dan

Forum Replies Created

Viewing 25 posts - 726 through 750 (of 1,027 total)
  • Author
    Posts
  • in reply to: Makelango doesn\'t show usb connections #12738
    Dan
    Keymaster

    Ok, I’ve asked the original equipment manufacturers. I’m getting to the bottom of this. Thank you for your patience and understanding.

    in reply to: Makelango doesn\'t show usb connections #12737
    Dan
    Keymaster

    Ok, now that’s weird. I need to find a copy of newer OSX to test this for myself.

    I wonder if this is related: Sierra doesn’t seem to support some USB drivers very well:

    https://forums.developer.apple.com/thread/61472

    “The use of a Fresh Roast SR700 Coffee Roaster also crashes Sierra because of this CH340 chip usb/serial driver incompatibilty too.”

    CH340 is used in several arduino clones. RUMBA is merely arduino-compatible, it may be victim to a similar issue.

    in reply to: Feedrate not working #12724
    Dan
    Keymaster

    Did you dig into the code at all? If you try “G0 F100” and then “M114” does it report that the feed rate changed to 100?

    in reply to: GBRL software and Arduino #12716
    Dan
    Keymaster

    Maybe.

    Perhaps you should reconsider why you are building a CNC machine when you can buy one for less effort.

    in reply to: GBRL software and Arduino #12710
    Dan
    Keymaster

    You will have more success asking the developers of GRBL.

    in reply to: GBRL software and Arduino #12679
    Dan
    Keymaster

    To use GRBL software you must install GRBL firmware on arduino.

    https://github.com/grbl/grbl/wiki/Flashing-Grbl-to-an-Arduino

    in reply to: GBRL software and Arduino #12676
    Dan
    Keymaster

    Do you want to write Gcode to send to GRBL? https://en.wikipedia.org/wiki/G-code

    Do you want to recreate GRBL? Why reinvent the wheel?

    in reply to: delta v3 support #12652
    Dan
    Keymaster

    make sure newline is a chosen setting in the serial window, and the baud rate is correct. without newline hitting send or enter does nothing.

    in reply to: 4-axis Arduino based CNC hot wire foam cutter #12623
    Dan
    Keymaster

    You may need to check which axis is the slowest and adjust all speeds accordingly.

    What if two motors pulse at the same time and the second motor has a shorter dt?

    in reply to: 4-axis Arduino based CNC hot wire foam cutter #12620
    Dan
    Keymaster

    a/b/c – which one gets divided first?

    in reply to: delta v3 support #12613
    Dan
    Keymaster

    I have just updated the master branch of the code to include fixes.
    Earlier versions of arduino IDE had no problem compiling because they were less strict.
    Later versions are not quite so forgiving.

    in reply to: 2-axis Arduino CNC Gcode Interpreter #12600
    Dan
    Keymaster

    1. motor driver power input screw terminals
    2. Rev 3 and R3 are the same thing. Other 12v stepper motors will work.
    3. I don’t understand this question. The code only deals with electronic design, not mechanical design.

    in reply to: Makelango doesn\'t show usb connections #12598
    Dan
    Keymaster

    I only have Yosemite (10.10.5) on a Macbook Pro.

    in reply to: Makelango doesn\'t show usb connections #12585
    Dan
    Keymaster

    It is actively maintained. I answer as fast as you post.

    Please suggest how I should diagnose/fix something that seems to happen only on your computer.

    in reply to: Starting up Polargraph #12573
    Dan
    Keymaster

    Hi! Anything not behaving as it did in the video is cause for concern. I meant it when I said it’s supposed to be easy. We test every unit before it ships.

    What was your order number, please?

    Do you have any screenshots of what “the screen did not alter to look anything like my set up like it did in the video” – what happened instead?

    Can you please DM me a clear picture of your machine? If there has been damage in shipping or a loose wire, we’d know what to look for.

    in reply to: In the News- Line Art Drawing? Wired Magazine #12546
    Dan
    Keymaster

    the video in question: https://www.youtube.com/watch?v=orPiPpaeN3E

    Brian, yes. I just updated the processing code to print the order of the nails. If you have N nails,

    Nail N0.00 is east.
    Nail N0.25 is north.
    Nail N0.75 is south.

    You will want to change in the code….

    numberOfPoints (number of nails)
    totalLinesToDraw (how many times to wrap around a nail and make a new string)

    Also at the top of setup() near line 49 you will see

    img = loadImage(“2016-05-08 greek woman.JPG”);

    change the part in the quotes with your jpg file. On the very next line it says

    size(1336,1000);

    the 1336 should be your image width * 2, and 1000 should be your image height.

    Be sure to pause the code while it running, the output window only holds about 500 lines and (by default) the demo generates 3000 lines. So 2500 fly off the screen unless you pause and copy them to a text file.

    Share your results with us, please!

    in reply to: Pen not going up or down #12545
    Dan
    Keymaster

    Jose, you have good ideas I’ve considered. I didn’t pop up a reminder because I felt it was annoying. Long time regenerating pictures is exactly the reason I didn’t make it automatic. I have not found a happy middle.

    in reply to: Makelangelo Pen Holder Changes #12544
    Dan
    Keymaster

    The current M5 pen holder is a laser cut variation on a thingiverse model: http://www.thingiverse.com/thing:798076
    ymmv.

    in reply to: Help makelangelo with ramps #12543
    Dan
    Keymaster

    are you running the latest firmware and arduino? I’ve seen and fixed this in the past. The code should work but Arduino IDE is being very picky here, so I massaged the code to make Arduino happy.

    in reply to: Steppers not responding to jog #12542
    Dan
    Keymaster

    Hi Stephanie, sorry for the delay. Motors should get hot because current is flowing through the coils.
    if it doesn’t then it’s probably not connected. V1 has better support than V2.

    in reply to: Need help in generating gcode from arduino #12541
    Dan
    Keymaster

    I can’t help with “initiate the scanning”.

    If you know the limits of your machine x=[0…a] y=[0…b] then you can do two loops

    for(int x=0;x<a;x+=step_size_x) {
      for(int y=0;y<b;y+=step_size_y) {
        send("G01 X"+x+" Y"+y);
        readField(x,y);
      }
    }

    which should move the machine through all possible coordinates at the step_size that you want (the resolution).

    I would then plot circles on the paper where the diameter of the circle is the field strength in that location, with possibly a cutoff value (so that you don’t draw lots of tiny dots in weak areas)

    in reply to: Makelango doesn\'t show usb connections #12540
    Dan
    Keymaster

    no picture. imgur link?

    in reply to: Stewart platform repeatability #12539
    Dan
    Keymaster

    I have not found the footage. I’ll have to film it again next week.

    in reply to: Stewart platform repeatability #12362
    Dan
    Keymaster

    We’ve done repeatability tests in the past. I don’t have the documentation on the results. I remember we filmed it. If I can’t find the footage I’ll make a new video.

    Many other specs for the machine can be found on the product page, in the “features” section.

    Rotary Stewart Platform v2

    in reply to: How to hack the speed #12299
    Dan
    Keymaster

    Our RUMBA boards work great and they’re fully supported. Don’t forget to buy two a4988 drivers – motors won’t move without them.

Viewing 25 posts - 726 through 750 (of 1,027 total)