Dan

Forum Replies Created

Viewing 25 posts - 226 through 250 (of 1,027 total)
  • Author
    Posts
  • in reply to: How to set up Polargraph dimensions? #23116
    Dan
    Keymaster

    The machine height should be 2x the area above the home position + the paper height.

    It does not have to go to the floor. When the pen is near the top corners of the paper then the weights will be below the bottom of the machine height.

    in reply to: Calibrating Makelangelo 2 & 3 #23114
    Dan
    Keymaster

    As for the leading… I’m glad someone else thinks about this! 😃 I imagine that it does make a difference and I have never com up with a good solution. Without the corner the belt length calculation gets really hairy. With the corner it easier until near the very bottom corners. In those cases I fudge the result. I need to make a video to explain the whole thing. I bet you get what I mean. There’s probably a way to lock the angle down and then the width would be between each “lock”. As it stands I go Center to center of each motor for width.

    in reply to: Calibrating Makelangelo 2 & 3 #23113
    Dan
    Keymaster

    I don’t have a first time guide for makelangelo 3 users. Can I use your picture when I build the guide?

    Here are the existing guides:
    https://mcr.dozuki.com/c/User_Guides

    Dan
    Keymaster

    For #5 you’re really looking at making your own image converter. In your place I’d get familiar with how the existing converters work and then write a new one (or tweak an existing one). Way better than waiting for me, much shorter development time.

    in reply to: replace the servomotor for lifting pencil #23087
    Dan
    Keymaster

    I didn’t understand what @Vladimir was trying to do.

    The goal is interesting. I’ve tried a few times in the past with a servo. For me the challenge is the mechanical slide that moves the pen back and forth.

    Also with a stepper motor you will have to add an encoder or limit switch. On the plus side you can do away with the 200g weight because a weighs enough to compensate.

    Dan
    Keymaster

    It’s not enough information to determine the cause of the problem. If it was just one motor I’d say the wiring is wrong on that motor OR the driver is dead.
    The reprap smart LCD controller is supported, so it’s either wired wrong, setup wrong in the software, or something else. Process of elimination.

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

    1. line 54:

    #define HAS_LCD // if you have an LCD panel
    #define HAS_SD // if you have SD card support on your LCD panel (must be on panel?)

    2. Correct. Adafruit motor shields are not supported. The delay between each step was unacceptably long. painfully slow drawings.

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

    1. In configure.h is a line that says

    #define MACHINE_STYLE POLARGRAPH // Change this

    Make it say

    #define MACHINE_STYLE ZARPLOTTER // Change this

    2. Same goes for

    #define MOTHERBOARD BOARD_RUMBA // change this

    Make it say

    #define MOTHERBOARD BOARD_RAMPS // change this

    hm. Maye I should change that to say MEGA_W_RAMPS…

    in reply to: Makelangelo 5 with MKS Board v1.4 #23034
    Dan
    Keymaster

    check the history of board_ramps.h, maybe there’s been a change. https://github.com/MarginallyClever/Makelangelo-firmware/

    in reply to: Makelangelo 5 with MKS Board v1.4 #23030
    Dan
    Keymaster

    In Makelangelo-firmware, near line 744,

    
    int pin = parseNumber('P', -1);
    if(pin == -1) return; // no pin specified.
    #endif
    

    should be

    
    int pin = parseNumber('P', -1);
    #endif
    if(pin == -1) return; // no pin specified.
    

    Try that and let me know if it works.

    Dan
    Keymaster

    It is not clear to me what is your LCD problem. Please list the steps to reproduce it. Thanks!

    Dan
    Keymaster

    >although moves up instead of down

    with power off, reverse the connection. if the wires are rgby, make them ybgr.

    > motors are moving faster!!! instead of 1cm they move ~3cm

    probably still missing a jumper under a driver. all three jumpers should be on for 1/16th microstepping. if your board somehow supports 1/32… then you have to adjust.

    Dan
    Keymaster

    1. I’m looking at options for a wemos/esp* brain that would be wireless.
    2. what do you mean? automatic pen changing? foo… that’s a big ask for a polargraph.
    3. Possible on the M3 with a few changes.
    4. I could add a toggle in the software to not add the message, beep, and wait for click.
    5. not sure what you mean here.

    what kind of diy tutorial? Do any of these help? https://mcr.dozuki.com/c/User_Guides

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

    I like you, you’ve been raised to use your brain and your manners. 🙂
    Four motors in the air? That’s a skycam/Spider cam. Different thread, same subforum. The first version I built was with two arduinos and two AMS shields.

    in reply to: Skycam/SpiderCam #22243
    Dan
    Keymaster

    I built one of these inverted stewart platforms many years ago. Which approach is best? … I’m not sure I have enough experience to judge. … but I am excited to see your results! Please share when you make progress.

    Dan
    Keymaster

    Nice work!

    Dan
    Keymaster

    The reprap graphic smart controller is already supported.

    Configure.h :

    // only uncomment one of these options
    //#define LCD_IS_128X64 // reprapdiscount Full Graphic Smart LCD Controller
    #define LCD_IS_SMART // reprapdiscount Smart LCD Controller (including XXL model)

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

    Yes, it can. Last time I checked it can also be run through the Makelangelo software, so you should be able to set width and height (in mm) in the Settings button.

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

    As I recall they should all be the same, with the red wire on the left.

    Dan
    Keymaster

    @rodgerholl – what do you think is the best way to organize these pin settings?

    it’s not really per-board, and it’s not really per-lcd. it’s a matrix that grows and grows!

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

    Do you mean the physical assembly or the electrical wiring?

    The motors are X=top left, Y=top right, Z=bottom left, E0=bottom right.

    Dan
    Keymaster

    I also think there are issues with the current LCD code. I find it quite hard to navigate between menu items, the response time on twisting the dial is bad and sometimes the cursor goes the wrong direction because of the low sample rate. Maybe an interrupt on the encoder pin would work better?

    in reply to: Makelangelo 5 USB connection problem #21990
    Dan
    Keymaster

    Manole,

    Thank you! You were the first person to install the code and (unfortunately) the first to find a mistake I made. I have attempted a hotfix update.
    Here is the new firmware which should repair the problem: https://github.com/MarginallyClever/Makelangelo-firmware/archive/9.0.1.zip

    in reply to: Makelangelo 5 USB connection problem #21957
    Dan
    Keymaster

    I released updated versions of the firmware and the software yesterday evening. You should be on v9 firmware and 7.20 software.

    Can you connect with the 7.20 software to the robot with the v9 firmware? In the message window at the bottom you should see a “hello world” message from the robot and you should NOT get an “The firmware (code in the brain of your robot) is not the version I expected” message.

    in reply to: Makelangelo 5 USB connection problem #21923
    Dan
    Keymaster
Viewing 25 posts - 226 through 250 (of 1,027 total)