Dan

Forum Replies Created

Viewing 25 posts - 976 through 1,000 (of 1,016 total)
  • Author
    Posts
  • in reply to: Stepper motor issues? #8964
    Dan
    Keymaster

    Hrm. I believe you.

    I don’t believe it’s DXF related. the DXF loader turns the DXF file into Gcode, and from then on it’s treated like all other drawings. The problem should be happening to all drawings.

    I need a simplified test case that demonstrates the problem. A 20 minute drawing is too long, and it’s hard to see where the error begins. Would you have some Gcode that does that?

    in reply to: Connect Makelangelo Software to Custom Bot #8963
    Dan
    Keymaster

    You’ve done something to your setup. I can’t tell what from your explanation.
    Try to start again fresh. I believe you have an arduino/library that you don’t need, and it’s breaking things.
    maybe it’s an old version of the Adafruit motor shield library *from adafruit*, which should also be updated. (It’s not used by our code but the names are similar and it could cause a problem.)

    in reply to: Connect Makelangelo Software to Custom Bot #8960
    Dan
    Keymaster

    in #8954 I said there were changes made for 1.6.7. Your post above says you’re using Arduino 1.6.5. Please update your Arduino and try again.

    in reply to: Stepper motor issues? #8959
    Dan
    Keymaster

    I think I put too much water in the bottles, it’s pulling the pen up a little bit over time.

    in reply to: Connect Makelangelo Software to Custom Bot #8956
    Dan
    Keymaster

    Neither. In fact, you don’t need to copy anything to the arduino/library folder any more.

    firmware_ams.ino is the file you should open and upload.

    If you are following our recipe for building a Makelangelo then the only thing you need to change is the MOTHERBOARD.

    If your steppers are not moving, you probably have crossed wires. The coils in the stepper will fight each other and you will get a vibration, at best, and nothing, at worst.

    in reply to: Connect Makelangelo Software to Custom Bot #8954
    Dan
    Keymaster

    Arduino 1.6.7 made changes that broke the code. Please read the latest makelangelo-firmware to see the changes we added that fix this problem. The github diff will be especially useful.

    https://github.com/MarginallyClever/Makelangelo-firmware/commit/778525a3bb7a479545018a91e8279dc08f29d094

    in reply to: Stepper motor issues? #8951
    Dan
    Keymaster

    Oh, wow. Now I have to recount every tooth on every pulley in stock. Time to make a one-off robot to count them for me?

    in reply to: Stepper motor issues? #8950
    Dan
    Keymaster

    I finally tried the DXF. The code is fine afaik.

    Belt is skipping off the pulleys here, but I’m using an older model motor mount at the moment.
    Tomorrow I’ll assemble some of the newer mounts and try again.

    in reply to: Speed It Up #8948
    Dan
    Keymaster

    The maximum feed rate for AFMS boards is less than 1/3 the top speed of the RUMBA boards. That was a big part of why we made the v3.

    The Arduino talk to the shield, which then sends stepper commands. To get straight lines it’s

    Arduino > I2C language > shield > motor

    every step. Converting to and from i2c is the bottleneck. The RUMBA is

    RUMBA > motor

    every step, and the speed it can talk at is faster (because the clock is faster).

    There are ways to say “take N steps” instead of just one step, but then the code for AFMS becomes something different. I try to not break things that already work, so I haven’t explored this option.

    I am eager to hear how anyone else has improved their top speed.

    in reply to: Build a Reprep 3D printer ? #8943
    Dan
    Keymaster

    No need. Ask for Dan, Steve, or Kevin.

    in reply to: Build a Reprep 3D printer ? #8941
    Dan
    Keymaster

    Hi!

    Saturday mornings at the Vancouver Hack Space (1715 Cook Street) are the 3D printer group. They build, fine tune, discuss, and print. The perfect place to get all your answers at once. Many are Marginally Clever customers, and we support them with products and technical help.

    Officially they are there 11:00-13:00. This morning I am there from 09:30, in case you want to come early.

    See you there?

    in reply to: Makelangelo Firmware for 7.3 #8932
    Dan
    Keymaster

    I’ve just pushed github commit 778525a3bb7a479545018a91e8279dc08f29d094 to https://github.com/marginallyclever/makelangelo-firmware

    It compiles without error. Does it run OK for you? I don’t have a AFMS2 setup to run right this second.

    It looks like now 1.6.7 will read the libraries from the install folder. That means no more installing a library to get Makelangelo to run. Easier!

    in reply to: Makelangelo Firmware for 7.3 #8929
    Dan
    Keymaster

    Please post the entire error message.

    in reply to: JumboTron Dance Floor? What material #8917
    Dan
    Keymaster

    That would depend a great deal on the weight of the people and the force they apply when dancing. I imagine a waffle of material with lights in the holes, and then a clear dance surface on top of that. Perhaps a single thick sheet of material with pockets cut in the bottom side for wires and lights.

    I don’t have enough material since to definitively answer this question…but i wish I did! It’s a great question.

    in reply to: Makelangelo Firmware for 7.3 #8916
    Dan
    Keymaster

    PWMServoDriver is new to me.

    Please check that the start windows batch file contains the right name for the .jar file.

    in reply to: Makelangelo 7.3.1 #8902
    Dan
    Keymaster

    I think I found it. Pause() lifts the pen if it is down. unpause() puts the pen back if it needs to. In some cases unpause() was called when pause() was never called. The “was the pen down when we started pause?” test is now wrong, because we never paused, and the pen would lower. This happened every time Halt() was called – right after gcode is loaded, and right after a drawing is finished.

    So it’s a minor fix, and will be in the next release.

    Now I try your R2D2 DXF.

    in reply to: Stepper motor issues? #8888
    Dan
    Keymaster

    I ran this test repeatedly and did not get any deviation.

    After 10 back and forth’s I still had only one dot on the board. If there was drift it would have been anything but.

    in reply to: Stepper motor issues? #8887
    Dan
    Keymaster

    Please try this gcode and send me a picture of the results. It should draw a series of dots that demonstrate the drift. Does it happen if you go to the top left instead of the top right?

    G90;
    G0 Z50;
    G4 P50;
    G0 Z90;
    G4 P50;
    G00 X100 Y100;
    G00 X0 Y0;
    G0 Z50;
    G4 P50;
    G0 Z90;
    G4 P50;
    G00 X100 Y100;
    G00 X0 Y0;
    G0 Z50;
    G4 P50;
    G0 Z90;
    G4 P50;
    G00 X100 Y100;
    G00 X0 Y0;
    G0 Z50;
    G4 P50;
    G0 Z90;
    G4 P50;
    G00 X100 Y100;
    G00 X0 Y0;
    G0 Z50;
    G4 P50;
    G0 Z90;
    G4 P50;
    G00 X100 Y100;
    G00 X0 Y0;
    G0 Z50;
    G4 P50;
    G0 Z90;
    G4 P50;

    Edit: changed P1 to P50 because it’s milliseconds, not seconds.

    in reply to: Stepper motor issues? #8881
    Dan
    Keymaster

    The most relevant code would be in these two places:

    The bit that turns pulley diameter into ammount-of-belt-move-per-step:
    https://github.com/MarginallyClever/Makelangelo-firmware/blob/master/firmware_ams/firmware_ams.ino#L227

    The bit that turns (x,y) into (belt lengths left, belt length right):
    https://github.com/MarginallyClever/Makelangelo-firmware/blob/master/firmware_ams/firmware_ams.ino#L309

    They are identical in both the AMS firmware and the RUMBA firmware. Nothing obvious jumps out at me (like a nasty rounding error). Those blocks of code have not changed in a loooong time.

    My guess is that the newer compiler that comes with Arduino GENUINO is doing something funny.

    in reply to: LEDs and LCD flashing with no response #8880
    Dan
    Keymaster

    All I can think is that it was damaged in shipping, which is 🙁

    I will recheck our inventory.

    The only reason I can think of is that the board is rebooting over and over. We upload the firmware to the boards at the last step before shipping, to be sure that the board is working when it leaves the warehouse and has the latest code.

    in reply to: LEDs and LCD flashing with no response #8850
    Dan
    Keymaster

    I personally test parts when they arrive at our facility.

    Are you running Windows? Windows machines need a driver to recognize the controller.
    http://learn.marginallyclever.com/index.php/Makelangelo_3.2_Assembly#Teach_the_Controller

    in reply to: Won't draw but can move left-right top-bottom #8849
    Dan
    Keymaster

    Please try the v7.3.0-alpha Makelangelo software released yesterday.

    https://github.com/MarginallyClever/Makelangelo/releases

    in reply to: Won't draw but can move left-right top-bottom #8848
    Dan
    Keymaster

    Please try the new release, 7.3.0-alpha, released yesterday.

    in reply to: Jog Motor only works in one direction #8847
    Dan
    Keymaster

    Please try the latest Makelangelo-firmware with the Makelangelo software v7.3.0-alpha that was released yesterday.

    in reply to: Problems with Rumba Board #8833
    Dan
    Keymaster

    Your diagnosis sounds right. As you said, it worked and then it didn’t, regardless of the servo or the USB.

    I can swap you out a new board, and we’d like to take a look at the one you have. The fastest way is to order another board and ship your old one back. When we receive your old board we’ll credit you the value of the board. That way you get your replacement quickly and you’re motivated to send your old board back for us.

Viewing 25 posts - 976 through 1,000 (of 1,016 total)