Dan

Forum Replies Created

Viewing 25 posts - 801 through 825 (of 1,021 total)
  • Author
    Posts
  • in reply to: Inifinite first motion #11260
    Dan
    Keymaster

    I can only offer good support on robots we built. Even the smallest change in your design could make a world of difference.

    in reply to: Inifinite first motion #11256
    Dan
    Keymaster

    eh, please post it to https://nopaste.me/ with “never time out” so the link will stay good.

    in reply to: Inifinite first motion #11255
    Dan
    Keymaster

    What is the gcode command you are sending? can you post the log.html?

    in reply to: Help: How to install "Makelangelo Software" #11249
    Dan
    Keymaster

    So… here’s the wierd thing. Your registry keys store JAVA settings in

    HKLM\Software\Wow6432Node\JavaSoft\Java Runtime Environment

    Which is only supposed to happen if you have 32 bit Java in 64 bit windows.

    REG QUERY "HKLM\Software\Wow6432Node\JavaSoft\Java Runtime Environment" /v CurrentVersion

    Works on its own, which finds the current version.

    FOR /F "skip=2 tokens=2*" %%A IN ('REG QUERY "HKLM\Software\Wow6432Node\JavaSoft\Java Runtime Environment" /v CurrentVersion') DO set CurVer=%%B
    IF DEFINED "%CurVer%" (GOTO 32in64) ELSE (GOTO 64in64)

    Does not appear to be setting the CurVer value, so the batch thinks you have 64 bit Java in 64 bit windows, and then tries to call

    FOR /F "skip=2 tokens=2*" %%A IN ('REG QUERY "HKLM\Software\JavaSoft\Java Runtime Environment" /v CurrentVersion') DO set CurVer=%%B
    FOR /F "skip=2 tokens=2*" %%A IN ('REG QUERY "HKLM\Software\JavaSoft\Java Runtime Environment\%CurVer%" /v JavaHome') DO set JAVA_HOME=%%B

    Which points to the wrong location, HKLM\Software\JavaSoft\Java Runtime Environment.

    I don’t know why IF DEFINED “%CurVer%” (GOTO 32in64) ELSE (GOTO 64in64) is failing. Any ideas?

    in reply to: Help: How to install "Makelangelo Software" #11246
    Dan
    Keymaster

    Huh.

    Please try command prompt: REG QUERY “HKLM\Software\Wow6432Node\JavaSoft\Java Runtime Environment” /v CurrentVersion and post the result.

    in reply to: Help: How to install "Makelangelo Software" #11244
    Dan
    Keymaster

    We’ve ruled out a problem with your installation of JAVA …. Aha!

    Open start windows.bat in a text editor. Find

    :32in64
    @ECHO 32 bit Java installed on 64 bit Windows.  Whoops?
    FOR /F "skip=2 tokens=2*" %%A IN ('REG QUERY "HKLM\Software\Wow6432Node\JavaSoft\Java Runtime Environment\%CurVer%" /v JavaHome') DO set JAVA_HOME=%%B
    GOTO endos

    and change it to read

    :32in64
    @ECHO 32 bit Java installed on 64 bit Windows.  Whoops?
    FOR /F "skip=2 tokens=2*" %%A IN ('REG QUERY "HKLM\Software\Wow6432Node\JavaSoft\Java Runtime Environment" /v CurrentVersion') DO set CurVer=%%B
    FOR /F "skip=2 tokens=2*" %%A IN ('REG QUERY "HKLM\Software\Wow6432Node\JavaSoft\Java Runtime Environment\%CurVer%" /v JavaHome') DO set JAVA_HOME=%%B
    GOTO endos
    in reply to: Help: How to install "Makelangelo Software" #11241
    Dan
    Keymaster

    Ok, now please run REG QUERY “HKLM\Software\Wow6432Node\JavaSoft\Java Runtime Environment\%CurVer%” /v JavaHome

    in reply to: Help: How to install "Makelangelo Software" #11238
    Dan
    Keymaster

    please try:

    – start command prompt (type cmd in cortana to get command prompt, then click it.)
    – run REG QUERY “HKLM\Software\JavaSoft\Java Runtime Environment” and post the results.
    – run REG QUERY “HKLM\Software\Wow6432Node\JavaSoft\Java Runtime Environment” and post the results.

    in reply to: Help: How to install "Makelangelo Software" #11236
    Dan
    Keymaster
    in reply to: Help: How to install "Makelangelo Software" #11233
    Dan
    Keymaster

    @toulouse – Did you try https://github.com/MarginallyClever/Makelangelo-software/blob/master/start%20windows.bat ?
    Please copy paste the output so I can exactly what happened.

    in reply to: Drawbot with motorshield not working #11232
    Dan
    Keymaster

    Putting 12v in a 5v circuit can be more than enough to cook it forever. I’ve cooked 3.3v circuits with 5v.

    12v2a is 24 watts. 24 watts/5v = ~5a. AFAIK your 5v motors would have to draw 5a before the supply would shut down from overcurrent protection.

    in reply to: Error with foreign languages #11211
    Dan
    Keymaster

    Please let me know if the tester steps are confusing. I want it to be easy for you.

    in reply to: Error with foreign languages #11209
    Dan
    Keymaster

    This is now github issue #209.

    I had a similar problem with a german, because the java code didn’t understand localized decimal point.

    I have uploaded a patch to github. Can you follow the steps to build a test copy and confirm if the patch works, please?

    in reply to: Drawbot with motorshield not working #11208
    Dan
    Keymaster

    M17 and M18 enable/disable steppers. I forget which is which.

    in reply to: Changes coming in Makelangelo Software 7.5.0 #11138
    Dan
    Keymaster

    Watch the setup video for the makelangelo 3.2, it explains the calibration location and proper centering of the pen holder.

    https://www.marginallyclever.com/2016/09/set-makelangelo-3-2-robot/

    in reply to: Compilation error #11137
    Dan
    Keymaster

    Yes. Makelangelo 3.2 is RUMBA. Makelangelo 2 is AMS.

    in reply to: feature request #11136
    Dan
    Keymaster

    That’s a really good point. Currently there’s no way to tell the machine go from top to bottom. If you used crosshatch style it would be… messy.

    in theory all the lines to be drawn could be put in a list, then sorted top to bottom, then saved to a file. what to do when two lines cross? I don’t know.

    Dan
    Keymaster

    Yeah i dunno man, that’s wierd.

    Dan
    Keymaster

    possibly there is some cm > mm conversion going on that accidentally loses the fraction? i don’t know yet. It’s one data point. What happens at 5mm? at 2mm?

    Dan
    Keymaster

    PS love the 3d printing. such style!

    Dan
    Keymaster

    Eh… I can’t even see your switches. One thing to note is that the switches on our delta are at about -30 degrees (the arms are not horizontal when touching).

    I don’t know why your third motor is being wierd. I’m slammed with work to get ready for re:make on friday, after that I will have time to make more videos (including a delta demonstration).

    in reply to: Another compilation problem #11074
    Dan
    Keymaster

    You have to hit set home once so the robot knows where it is. If you hit set home when the pen holder is not at the home position…. expect strange results.

    vortex mode?

    in reply to: Makelangelo picture size #11073
    Dan
    Keymaster

    So… did it answer your question?

    Dan
    Keymaster

    erm, they shouldn’t be on the switches at (0,0,0). they should touch the switches and back off. I believe that z adjust you mentioned may be part of the issue. it’s hard to say, your machine may have slight differences from ours and our assumptions differ.

    BTW, can I see a pic? post an imgur link and it should embed right here in the thread.

    in reply to: Makelangelo picture size #11056
    Dan
    Keymaster

    You shouldn’t have to change the pixel size of the paper. it will scale automatically.
    At worst you might have to crop the image to fit the SHAPE of the paper. Currently the software makes the image fill the entire page, even if some of the image will be cropped for going off the edges.

Viewing 25 posts - 801 through 825 (of 1,021 total)