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

how the heating control operates

Scheduled Pinned Locked Moved Solved
Tuning and tweaking
4
26
743
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.
  • undefined
    luca Massimiliano
    last edited by 21 Jul 2024, 09:38

    good morning I have a RepRapFirmware for Duet 2 WiFi/Ethernet version 3.2.2 I'm trying to calibrate my 2 new CHC V6 Hotend Ceramic hotend at 24 60 w volt NTC100K B3950 here are the commands and responses:

    first Hotend
    ************COMMAND **********
    M303 H1 S275 (275 temperature because my wire requires max 270)
    _ANSWER
    Warning: heater behavior was not consistent during tuning
    Auto tuning heater 1 completed after 4 idle and 25 tuning cycles in 413 seconds. This heater needs the following M307 command:
    M307 H1 R4.649 C105.2 D1.62 S1.00 V23.8
    Send M500 to save this command in config-override.g
    ************COMMAND **********
    M307 H1 R4.649 C105.2 D1.62 S1.00 V23.8
    _ANSWER
    Warning: M307: Heater 1 appears to be over-powered. If left on at full power, its temperature is predicted to reach 514C

    undefined 1 Reply Last reply 21 Jul 2024, 09:43 Reply Quote 0
    • undefined
      jay_s_uk @luca Massimiliano
      last edited by 21 Jul 2024, 09:43

      @luca-Massimiliano best update to 3.5.2 as the heater tuning has improved since then.

      Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

      undefined 1 Reply Last reply 21 Jul 2024, 09:47 Reply Quote 0
      • undefined
        luca Massimiliano @jay_s_uk
        last edited by luca Massimiliano 21 Jul 2024, 09:47

        THANKS WHERE CAN I DOWNLOAD version 3.5.2 COULD IT BE THIS?https://configtool.reprapfirmware.org/

        undefined 1 Reply Last reply 21 Jul 2024, 10:00 Reply Quote 0
        • undefined
          jay_s_uk @luca Massimiliano
          last edited by jay_s_uk 21 Jul 2024, 10:00

          @luca-Massimiliano https://github.com/Duet3D/RepRapFirmware/releases/tag/3.5.2
          And tune as a tool rather than a heater

          M303 T0 S275
          

          Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

          undefined 2 Replies Last reply 21 Jul 2024, 10:14 Reply Quote 0
          • undefined
            luca Massimiliano @jay_s_uk
            last edited by 21 Jul 2024, 10:14

            This post is deleted!
            1 Reply Last reply Reply Quote 0
            • undefined
              luca Massimiliano @jay_s_uk
              last edited by 21 Jul 2024, 14:28

              @jay_s_uk said in how the heating control operates:

              M303 T0 S275

              THANKS FOR YOUR HELP, I HAVE SOLVED IT

              undefined 1 Reply Last reply 24 Jul 2024, 13:20 Reply Quote 1
              • undefined jay_s_uk marked this topic as a question 21 Jul 2024, 18:04
              • undefined jay_s_uk has marked this topic as solved 21 Jul 2024, 18:04
              • undefined
                luca Massimiliano @luca Massimiliano
                last edited by 24 Jul 2024, 13:20

                @luca-Massimiliano
                GOOD MORNING I HAVE A Duet 2 WiFi, AFTER THE UPDATE TO THE LATEST VERSION 3.5.2 ON THE DASHBORD, ONCE THE SET HEATER TEMPERATURE HAS BEEN REACHED, THE EXTRUSION CONTROL BAR CANNOT BE USED, INSTEAD THE DISPLAY IF USED GIVES THE FOLLOWING ERROR error: attempting to extrude with no tools selected. here is the config
                ; Heaters
                M308 S0 P"bedtemp" Y"thermistor" T100000 B3950 ; configure sensor 0 as thermistor on pin bedtemp
                M950 H0 C"bedheat" T0 ; create bed heater output on bedheat and map it to sensor 0
                M307 H0 B1 S1.00 ; enable bang-bang mode for the bed heater and set PWM limit
                M140H0 ; map heated bed to heater 0
                M143 H0 S120 ; set temperature limit for heater 0 to 120C
                M308 S1 P"e0temp" Y"thermistor" T100000 B4388 ; configure sensor 1 as thermistor on pin e0temp
                M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 1
                M307 H1 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit
                M143 H1 S280 ; set temperature limit for heater 1 to 280C
                M308 S2 P"e1temp" Y"thermistor" T100000 B4388 ; configure sensor 2 as thermistor on pin e1temp
                M950 H2 C"e1heat" T2 ; create nozzle heater output on e1heat and map it to sensor 2
                M307 H2 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit
                M143 H2 S280 ; set temperature limit for heater 2 to 280C

                ; Fans
                M950 F0 C"fan0" Q500 ; create fan 0 on pin fan0 and set its frequency
                M106 P0 S0 H1 T100 ; set fan 0 value. Thermostatic control is turned on
                M950 F1 C"fan1" Q500 ; create fan 1 on pin fan1 and set its frequency
                M106 P1 S1 H2 T100 ; set fan 1 value. Thermostatic control is turned on

                ; Tools
                M563 P1 S"LUCA1" D0 H1 F0 ; define tool 1
                G10 P1 X12.8 Y3.9 Z0 ; set tool 1 axis offsets
                G10 P1 R0 S0 ; set initial tool 1 active and standby temperatures to 0C
                M563 P2 S"LUCA2" D1 H2 F0 ; define tools 2
                G10 P2 X-12.8 Y3.9 Z0 ; set tool 2 axis offsets
                G10 P2 R0 S0 ; set initial tool 2 active and standby temperatures to 0C

                undefined 1 Reply Last reply 24 Jul 2024, 13:21 Reply Quote 0
                • undefined
                  jay_s_uk @luca Massimiliano
                  last edited by 24 Jul 2024, 13:21

                  @luca-Massimiliano you need a tool to be active.
                  Send Tx where X is the tool number that you want to drive

                  Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

                  undefined 1 Reply Last reply 24 Jul 2024, 13:43 Reply Quote 0
                  • undefined
                    luca Massimiliano @jay_s_uk
                    last edited by 24 Jul 2024, 13:43

                    @jay_s_uk
                    how should I put it in the config

                    undefined 1 Reply Last reply 24 Jul 2024, 13:46 Reply Quote 0
                    • undefined
                      jay_s_uk @luca Massimiliano
                      last edited by 24 Jul 2024, 13:46

                      @luca-Massimiliano you have two tools so it depends which one you want to be active when you first turn on the machine
                      Either add T1 to the end of the config or T2

                      Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

                      undefined undefined 2 Replies Last reply 24 Jul 2024, 14:18 Reply Quote 0
                      • undefined
                        oliof @jay_s_uk
                        last edited by 24 Jul 2024, 14:18

                        @jay_s_uk rather T0 or T1?

                        <>RatRig V-Minion Fly Super5Pro RRF<> V-Core 3.1 IDEX k*****r <> RatRig V-Minion SKR 2 Marlin<>

                        undefined 1 Reply Last reply 24 Jul 2024, 14:30 Reply Quote 0
                        • undefined
                          luca Massimiliano @jay_s_uk
                          last edited by 24 Jul 2024, 14:25

                          @jay_s_uk
                          I don't understand in which config .g command should I add t0 and t1? the problem is that the commands on the dashboard and on the duet display are not activated if I send the extrusion error: trying to extrude with no tools selected.

                          undefined 1 Reply Last reply 24 Jul 2024, 14:28 Reply Quote 0
                          • undefined
                            oliof @luca Massimiliano
                            last edited by 24 Jul 2024, 14:28

                            @luca-Massimiliano just add either T0 or T1 on the end of config.g

                            <>RatRig V-Minion Fly Super5Pro RRF<> V-Core 3.1 IDEX k*****r <> RatRig V-Minion SKR 2 Marlin<>

                            1 Reply Last reply Reply Quote 0
                            • undefined
                              jay_s_uk @oliof
                              last edited by 24 Jul 2024, 14:30

                              @oliof he has the tools setup as T1 and T2

                              @luca-Massimiliano said in how the heating control operates:

                              ; Tools
                              M563 P1 S"LUCA1" D0 H1 F0 ; define tool 1
                              G10 P1 X12.8 Y3.9 Z0 ; set tool 1 axis offsets
                              G10 P1 R0 S0 ; set initial tool 1 active and standby temperatures to 0C
                              M563 P2 S"LUCA2" D1 H2 F0 ; define tools 2
                              G10 P2 X-12.8 Y3.9 Z0 ; set tool 2 axis offsets
                              G10 P2 R0 S0 ; set initial tool 2 active and standby temperatures to 0C

                              Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

                              undefined undefined 2 Replies Last reply 24 Jul 2024, 14:31 Reply Quote 0
                              • undefined
                                oliof @jay_s_uk
                                last edited by 24 Jul 2024, 14:31

                                @jay_s_uk well ok then (-: That'll confuse the average slicer tho

                                <>RatRig V-Minion Fly Super5Pro RRF<> V-Core 3.1 IDEX k*****r <> RatRig V-Minion SKR 2 Marlin<>

                                undefined 1 Reply Last reply 24 Jul 2024, 14:51 Reply Quote 0
                                • undefined
                                  luca Massimiliano @jay_s_uk
                                  last edited by 24 Jul 2024, 14:50

                                  @jay_s_uk
                                  I inserted t1 and t2 without anything else and it works, but I never did it in previous versions and it worked anyway, has it been changed in this version?

                                  undefined 1 Reply Last reply 24 Jul 2024, 14:53 Reply Quote 0
                                  • undefined
                                    luca Massimiliano @oliof
                                    last edited by 24 Jul 2024, 14:51

                                    @oliof
                                    now I try to send a print with slicer,

                                    1 Reply Last reply Reply Quote 0
                                    • undefined
                                      jay_s_uk @luca Massimiliano
                                      last edited by 24 Jul 2024, 14:53

                                      @luca-Massimiliano you shouldn't insert both of them into the config, just one of them.
                                      you can only have one active tool at a time.
                                      and no changes i'm aware of in that area for ages

                                      Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

                                      undefined 1 Reply Last reply 24 Jul 2024, 14:57 Reply Quote 0
                                      • undefined
                                        luca Massimiliano @jay_s_uk
                                        last edited by 24 Jul 2024, 14:57

                                        @jay_s_uk Now I try again but with a declared tool if activated first the second one doesn't work

                                        undefined undefined 2 Replies Last reply 24 Jul 2024, 14:58 Reply Quote 0
                                        • undefined
                                          luca Massimiliano @luca Massimiliano
                                          last edited by 24 Jul 2024, 14:58

                                          @luca-Massimiliano
                                          I had version 3.2.2 before and didn't declare the first extruder

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