Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    Paneldue not allowing me to set temp on T2.

    Scheduled Pinned Locked Moved
    General Discussion
    3
    11
    1.2k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • dc42undefined
      dc42 administrators
      last edited by

      How many tool heaters are you using? Please share your config.g file.

      Duet WiFi hardware designer and firmware engineer
      Please do not ask me for Duet support via PM or email, use the forum
      http://www.escher3d.com, https://miscsolutions.wordpress.com

      1 Reply Last reply Reply Quote 0
      • timcurtis67undefined
        timcurtis67
        last edited by

        I'm using 2 heaters. One for each head (IDEX).

        How do I upload files on here?

        whosrdaddyundefined 1 Reply Last reply Reply Quote 0
        • whosrdaddyundefined
          whosrdaddy @timcurtis67
          last edited by

          @timcurtis67, there is an upload file button in the reply window (see icons above text you type)

          1 Reply Last reply Reply Quote 0
          • dc42undefined
            dc42 administrators
            last edited by

            config.g. is short enough that you can include the text in your post.

            Duet WiFi hardware designer and firmware engineer
            Please do not ask me for Duet support via PM or email, use the forum
            http://www.escher3d.com, https://miscsolutions.wordpress.com

            1 Reply Last reply Reply Quote 0
            • timcurtis67undefined
              timcurtis67
              last edited by timcurtis67

              Config.g

              ; General preferences
              M111 S0 ; Debugging off
              G21 ; Work in millimetres
              G90 ; Send absolute coordinates...
              M83 ; ...but relative extruder moves
              M555 P1 ; Set firmware compatibility to look like RepRapFirmare

              ; Endstops
              ; M558 P6 I1 X0 Y0 Z0 F175 T6000 H3 ; Probe Mode 6 Switch Type
              ; M558 P1 I1 R0.4 F300 X0 Y0 Z0 ; Piezo Board
              G31 X0 Y0 Z6.975 ; Set Z probe offset and trigger height Switch Type
              ; G31 X0 Y0 Z-.1 P600 ; Piezo Board
              M557 X-195:195 Y-190:190 S20 ; Define mesh grid

              ; Drives
              M569 P0 S1 ; Drive 0 goes forwards
              M569 P1 S1 ; Drive 1 goes forwards
              M569 P2 S0 ; Drive 2 goes backwards
              M569 P3 S1 ; Drive 3 goes forwards
              M569 P4 S0 ; Drive 4 goes backwards
              M569 P5 S0 ; Drive 5 goes backwards
              M584 X0 Y1 Z2 U3 E4:5 ; Create U axis for second X carriage before we try to configure it
              M574 X1 Y2 U2 Z2 S0 ; Set active low endstops
              M208 X-255.3 Y-226 U-213 Z0 S1 ; Set axis minima
              M208 X214 Y250.1 U255.6 Z426.95 S0 ; Set axis maxima
              M350 X16 Y16 U16 Z16 E16:16 I1 ; Configure microstepping with interpolation
              M92 X80 Y80 U80 Z400 E837.0:837.0 ; Set steps per mm
              M566 X175 Y175 U175 Z12 E500:500 ; Set maximum instantaneous speed changes (mm/min)
              M203 X18000 Y18000 U18000 Z2500 E1200:1200 ; Set maximum speeds (mm/min)
              M201 X600 Y600 U600 Z250 E1000:1000 ; Set accelerations (mm/s^2)
              M906 X1000 Y1400 U1000 Z1800 E1100:1100 I30 ; Set motor currents (mA) and motor idle factor in per cent
              M84 S30 ; Set idle timeout

              ; Heaters
              M301 H0 S1.00 P10 I0.1 D200 T0.4 W180 B30 ; Use PID on bed heater (may require further tuning)
              M305 P0 T100000 B3950 C0 R4700 ; Set thermistor + ADC parameters for heater 0
              M143 H0 S120 ; Set temperature limit for heater 0 to 120C
              M305 P1 T100000 B4725 C0.0000000706 R4700 ; Set thermistor + ADC parameters for heater 1
              M143 H1 S350 ; Set temperature limit for heater 1 to 350C
              M305 P2 T100000 B4725 C0.0000000706 R4700 ; Set thermistor + ADC parameters for heater 2
              M143 H2 S350

              ; Tools
              M563 P0 D0 H1 ; Define tool 0
              G10 P0 X0 Y0 U0 Z-.25 ; Set tool 0 axis offsets
              G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0C
              M563 P1 D1 H2 X3 ; Define tool 1
              G10 P1 X0 Y.1 U0 Z-.25 ; Set tool 1 axis offsets
              G10 P1 R0 S0 ; Set initial tool 1 active and standby temperatures to 0C
              M563 P2 D0:1 H1:2 X0:3 ; Define tool 2 Ditto Printing
              G10 P2 X50 Y0 U-50 Z-.25 ; Set tool 2 axis Ditto Printing offsets
              G10 P2 R0 S0 ; Set initial tool 2 active and standby temperatures to 0C
              M576 P2 E1:1 ; Set mix rtio 100% on both extruders

              ; Network
              M550 P******* ; Set machine name
              M551 ******* ; Set password
              M552 S1 ; Enable network
              M587 S"EnolaRoad" P"******" ; Configure access point. You can delete this line once connected
              M586 P0 S1 ; Enable HTTP
              M586 P1 S0 ; Disable FTP
              M586 P2 S0 ; Disable Telnet

              ; Fans
              M106 P1 S1 I0 F500 H1 T45; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on
              M106 P2 S1 I0 F500 H2 T45 ; Set fan 2 value, PWM signal inversion and frequency. Thermostatic control is turned on
              M106 P3 H100:101 T35:45 L0.3 ; CPU Cooler later

              ; Custom settings are not configured

              ; Miscellaneous
              M501 ; Load saved parameters from non-volatile memory
              M80 ; turn on power supply
              T0 ; Select first tool

              1 Reply Last reply Reply Quote 0
              • timcurtis67undefined
                timcurtis67
                last edited by

                Here is my tfree2 and tpost2 files as well

                ; tfree2.g
                ; called when tool 0 is freed
                ;
                ; generated by RepRapFirmware Configuration Tool on Mon Nov 27 2017 08:32:27 GMT-0500 (Eastern Standard Time)

                M83 ; relative extruder movement
                G91 ; relative axis movement
                G1 Z5 F1500 ; up 10mm
                G90 ; absolute axis movement
                G28 X U ; park the X & U carriages
                ;M572 D0 S0.0
                ;M572 D1 S0.0

                ; tpost2.g
                ; called after tool 0 has been selected
                ;
                ; generated by RepRapFirmware Configuration Tool on Mon Nov 27 2017 08:32:27 GMT-0500 (Eastern Standard Time)

                ; Wait for set temperatures to be reached
                ;G91
                ;G1 X1 F1500
                ;G1 Z-10 F1500
                M116 P2
                M567 P2 E1:1 ; Set mixing ratio
                M568 P2 S1 ; turn on mixing
                ;M572 D0 S0.06 ; turn on pressure advance ext 1
                ;M572 D1 S0.06 ; turn on pressure advance ext 2

                1 Reply Last reply Reply Quote 0
                • dc42undefined
                  dc42 administrators
                  last edited by

                  You have 3 tools configured but only 2 heaters. PanelDue doesn't yet handle multiple tools very well when there isn't a 1:1 mapping between heaters and tools.

                  Duet WiFi hardware designer and firmware engineer
                  Please do not ask me for Duet support via PM or email, use the forum
                  http://www.escher3d.com, https://miscsolutions.wordpress.com

                  1 Reply Last reply Reply Quote 0
                  • timcurtis67undefined
                    timcurtis67
                    last edited by

                    Any suggestions on how to map the third heater? I just followed the guides for IDEX on the Duet documents page but didn't see anything about mapping an additional heater?
                    Please advise or point me in the right direction,

                    Thank you David

                    1 Reply Last reply Reply Quote 0
                    • dc42undefined
                      dc42 administrators
                      last edited by

                      Your tool configuration is correct, it's just that PanelDue doesn't handle the ditto printing tool properly.

                      Duet WiFi hardware designer and firmware engineer
                      Please do not ask me for Duet support via PM or email, use the forum
                      http://www.escher3d.com, https://miscsolutions.wordpress.com

                      1 Reply Last reply Reply Quote 0
                      • timcurtis67undefined
                        timcurtis67
                        last edited by

                        Okay David, now I'm following you. Thank you for the info. It's not a big deal I just wanted to make sure I didn't miss something.

                        The new firmware is working great! I'm running 20 out of 24 hours per day for the next 10 days with the IDEX ditto printing. Thank you for all the amazing work you guys do with the Duet!

                        1 Reply Last reply Reply Quote 0
                        • First post
                          Last post
                        Unless otherwise noted, all forum content is licensed under CC-BY-SA