Jump to content

tinkergnome

Ambassador
  • Posts

    2,774
  • Joined

  • Last visited

  • Days Won

    61

Posts posted by tinkergnome

  1. Was kann/muss ich tun, damit ALLE Cura Einstellungen greifen?

    Für alle älteren Cura-Versionen bis (einschließlich) 15.04 kannst Du in den Maschinen-Settings einfach den GCode-Flavor auf "RepRap (Marlin/Sprinter)" umstellen.

    Die neue Cura-Version 15.06.xx ist in dieser Hinsicht (noch?) etwas verkrüppelt - genaugenommen nicht nur in dieser Hinsicht... :angry:

    Damit hast Du nur die Möglichkeit, als Druckerprofil den "Ultimaker Original+" auszuwählen,

    oder im Installations-Verzeichnis die Datei ".../resources/settings/ultimaker2.json" von Hand zu ändern. Relevant sind (mindestens) die Einstellungen "machine_gcode_flavor", "machine_start_gcode" und "machine_end_gcode" - aber das wäre dann schon sehr "experimentell"...

    Am Ultimaker2 bekommst Du in beiden Fällen nach Auswahl der Druckdatei die "Classic Warning" - und das bedeutet, das die Material-Einstellungen vom Drucker nicht benutzt werden. Also genau das, was Du erreichen willst.

  2. in order to disabled sensor_2 but apparently, it's not the right way...I'm not sure sensor_2 is the sensor of the second head !

     

    As you mentioned - it isn't... TEMP_SENSOR_2 is not relevant (not used at all for the UM2 AFAIK). The counting begins at 0 (TEMP_SENSOR_0 for the first etc.)

    Only two different defines are needed to compile the stock firmware either for one or for two extruders. And this should work similarly for the tinker version:

    Single Extruder:

     

    TEMP_SENSOR_1=0EXTRUDERS=1

     

    Dual Extruder:

     

    TEMP_SENSOR_1=20EXTRUDERS=2

     

    I've just added the (compiled) dual version to the recent tinker release.

    I'm afraid that you will have to make some other changes - but this depends on the type of your hardware modifications.

    Just be aware that you probably have to struggle with the compilation anyway (sooner or later)...02_EmoticonsHDcom.png

    • Like 1
  3. On the UM2 card, I can see 3 connectors:

    Temp3 with heater of head 1

    Temp2 : free

    Temps1 with PT100 of head1

    How do you control the second head?

     

    This is only almost correct...

    Temp3 should be connected to the temperature sensor of the heated bed.

    Temp2 is intended for the PT100 sensor of a second nozzle.

    The nozzle heater is connected to the screw connector marked with "heater1" - "heater2" is apparently intended for the second heater (consider the provided voltage (24V AFAIK).

    If you're in doubt - take a look at the board description or at the assembly manual

  4. Looks like it's printed without support... which slicer (and which printer) do you use?

    BTW: could you add your printer (and location) in your user profile please?

    An advice is: print it with support...

    If you model this piece by yourself, you can even make your own support structure. A narrow frame below the edges of the cuts (to support the perimeters) is sufficient. Leave a gap of about 0.15mm at the top of the support structure.

    The rest of the surface can be bridged then very nicely.

    Do you know the designing guide of the famous |Robert|?

  5. i mixed in the quote from the other thread:

     

    I am trying to set up my ultimaker 2 with the dual extruders. I can put anything together but I am not a programmer by any means. any advice?

    ...

    Who can point me in the correct direction of the firmware i need.

     

    Sorry, but it highly depends on what you put together...

    (i think you don't explained this yet?)

    There is a dual extruder version of the UM2 firmware from stock - included in all recent versions of Cura.

    You know your hardware setup - you have to decide if it is sufficient for you.

    Edit:

    Perhaps you could also explain how this topic is related to Simplify3D? Any firmware runs on its own, there should be no dependency on a specific slicer....?

  6. Hi @Kermit65,

    if i were you..., i would... (in ascending order)

     

    • add a small chamfer to the edges where the small parts are attached to the base
    • printing with zero infill but a larger shell width instead (try 1.2mm - 3 shells)
    • increase the layer height to (at least) 0.1 and increase the bottom/top thickness to (at least) 1.0mm - i even think there will be no drawbacks if you use a combination of 0.12 / 1.2
    • consider to split the parts in a different way (to make it printable without support)

     

    Edit:

    ...and don't use the default speed settings - the default infill speed (80 mm/s) is way too fast IMHO. Set all speeds to the same value (or the advanced speed settings all to zero) - and choose 40mm/s as the basic print speed.

  7. Something else, there is an lowest temp limmit build in the printer to prevent it from printing with a cold nozzle, not sure whats the default lowest temp (probably much lower than 150) , but as the UM2 is open source any setting can be changed easily.

     

    To prevent cold extrusions the minimum extrusion temperature is 170°C by default. That's a common Marlin feature and not special to Ultimaker.

    The default of 170°C is set after power on and after leaving the "Move material" menu, but can be changed by executing a M302 gcode command.

    In case of an Ultimaker2 one could even prepare an autostart gcode-file on the sdcard with this command.

    As a conclusion: no need to fiddle with the firmware, just do it - we're curious!

    • Like 1
  8. Cheers I had a look at that, but i'm using cura and just for now want to manually add the code with retraction, that the bit i'm super struggers with.

     

    Wait a minute... if i get you right, this is just a test for your tool changer.

    You want to achieve a tool change on every layer (independent of any toolchange command).

    And you're looking for an easy way to integrate a retraction (without the need to struggle with the current E-position), right?

    My suggestions are:

     

    • you definitly don't want to zero the e-position between layers... :)- remove the "G92 E0" lines - that's the main source of your problem

    • if possible - remove the "G1 E..." commands too and use firmware retractions instead "G10" resp. "G11"

    • or switch on (temporary) relative positioning ("G91 G1 E-2.5 G90" resp. "G91 G1 E2.5 G90")

     

    This should do the trick.

    ;LAYER

    G10

    G0 F9000 X100.000 Y180.000

    G0 F9000 Y192.7

    G0 F9000 X64.000

    G0 F3000 X16.000

    G0 F5000 Y100.000

    G0 F5000 X100.000 Y100.000

    G0 F5000 X16.000

    G0 F9000 Y180.000

    G0 F3000 Y192.700

    G0 F3000 X64.000

    G0 F9000 X100

    G11

    ;FINISH

    ;LAYER

    G91

    G1 E-2.5

    G90

    G0 F9000 X100.000 Y180.000

    G0 F9000 Y192.7

    G0 F9000 X64.000

    G0 F3000 X16.000

    G0 F5000 Y100.000

    G0 F5000 X100.000 Y100.000

    G0 F5000 X16.000

    G0 F9000 Y180.000

    G0 F3000 Y192.700

    G0 F3000 X64.000

    G0 F9000 X100

    G91

    G1 F200 E2.5

    G90

    ;FINISH

  9. Calum Douglas made this for the UMO

    Perhaps you can seize his suggestion....?

     

    Or, you could place one printer on top of the other. I'm sure Ultimaker would give you the laser cutting files for the spacer they have if you ask nicely. It's basically a small open box that you place on top of one machine so that another one can stand on top of it without crushing the bowden. Not sure if that would become too high to work with in your setup though.

     

    @IRobertI - i can not believe that you missed the "The Ultimaker Spacer" resp. "The Ultimaker Table" (Adobe Inventor and dxf files included).... until now...

    Should be easy to adapt for the Ultimaker2 - if needed?

  10.  

    Is there a logfile on windows too?

     

    If you Run as Admin there is.

     

    Ok, i tried it with "Run as Administrator" - same behavior. And now?

    You may agree that such a start is not very promising...

    It's a german Windows 7 and the very first dialog leads to this:

    cura_15_06.thumb.PNG.d37b896696802244efc4df659ba76e5d.PNG

    ..and the output from the details section:

     

    Problemsignatur:

    Problemereignisname: APPCRASH

    Anwendungsname: Cura.exe

    Anwendungsversion: 0.0.0.0

    Anwendungszeitstempel: 536d0024

    Fehlermodulname: StackHash_0a9e

    Fehlermodulversion: 0.0.0.0

    Fehlermodulzeitstempel: 00000000

    Ausnahmecode: c0000005

    Ausnahmeoffset: 00000000

    Betriebsystemversion: 6.1.7601.2.1.0.256.48

    Gebietsschema-ID: 1031

    Zusatzinformation 1: 0a9e

    Zusatzinformation 2: 0a9e372d3b4ad19135b953a78882e789

    Zusatzinformation 3: 0a9e

    Zusatzinformation 4: 0a9e372d3b4ad19135b953a78882e789

     

    The content of cura.log looks inconspicuous to me

    The tailing lines from today:

     

    2015-07-03 14:23:25,135 - INFO - Loaded plugin FileLogger

    2015-07-03 14:23:25,860 - INFO - Loaded plugin LocalFileStorage

    2015-07-03 14:23:25,887 - INFO - Loaded plugin LayerView

    2015-07-03 14:23:25,929 - INFO - Loaded plugin MeshView

    2015-07-03 14:23:25,973 - INFO - Loaded plugin WireframeView

    2015-07-03 14:23:25,990 - INFO - Loaded plugin OBJReader

    2015-07-03 14:23:25,999 - INFO - Loaded plugin STLReader

    2015-07-03 14:23:26,020 - INFO - Loaded plugin STLWriter

    2015-07-03 14:23:26,035 - INFO - Loaded plugin GCodeWriter

    2015-07-03 14:23:26,066 - INFO - Loaded plugin CameraTool

    2015-07-03 14:23:26,094 - INFO - Loaded plugin MirrorTool

    2015-07-03 14:23:26,157 - INFO - Loaded plugin RotateTool

    2015-07-03 14:23:26,189 - INFO - Loaded plugin ScaleTool

    2015-07-03 14:23:26,219 - INFO - Loaded plugin SelectionTool

    2015-07-03 14:23:26,252 - INFO - Loaded plugin TranslateTool

    2015-07-03 14:23:26,296 - INFO - Checking for new version of cura

    2015-07-03 14:23:26,296 - INFO - Loaded plugin UpdateChecker

    2015-07-03 14:23:26,347 - INFO - Loaded plugin USBPrinting

    2015-07-03 14:23:26,351 - INFO - Could not establish connection on COM13: 'Failed to open serial port'. Device is not arduino based.

    2015-07-03 14:23:26,355 - INFO - Loaded plugin CuraEngineBackend

    2015-07-03 14:23:27,952 - DEBUG - Loaded theme C:/Program Files/Cura_15.06.01/resources/themes/cura

    2015-07-03 14:23:28,461 - INFO - Started engine process: C:\Program Files\Cura_15.06.01\CuraEngine.exe

    2015-07-03 14:23:31,730 - DEBUG - Backend connected on port 49674

     

    Good luck!

    cura_15_06.thumb.PNG.d37b896696802244efc4df659ba76e5d.PNG

  11. Unfortunately, 15.06.1 doesn't work for me on Windows 7.

    The first dialog appears, i select Ultimaker 2 - click on 'Next' and Cura crashes after a few seconds... :(

    Is it a known problem? Is there a logfile on windows too?

    I'm afraid the whole thing is just another public beta test at the moment...

    and only good for scaring new customers... :(

×
×
  • Create New...