Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login
    1. Home
    2. peter247
    3. Topics
    • Profile
    • Following 0
    • Followers 0
    • Topics 57
    • Posts 460
    • Best 35
    • Controversial 0
    • Groups 0

    Topics created by peter247

    • peter247undefined

      I'm hoping a backup config saved my life ?

      General Discussion
      • • • peter247
      4
      0
      Votes
      4
      Posts
      257
      Views

      Phaedruxundefined

      Please update your firmware to 3.4.5

      There were certain edge cases where the config.g file could get lost on older firmware. This may have been the case here.

      Upload this zip file to the system tab in DWC.
      https://github.com/Duet3D/RepRapFirmware/releases/download/3.4.5/Duet2and3Firmware-3.4.5.zip

    • peter247undefined

      Solved Is their a macro which get called on job start ?

      General Discussion
      • • • peter247
      2
      0
      Votes
      2
      Posts
      166
      Views

      fcwiltundefined

      @peter247

      You can create a file called start.g which is called at the very beginning of a print.

      Frederick

    • peter247undefined

      How do you get out of a macro loop without a M112 ?

      General Discussion
      • • • peter247
      8
      0
      Votes
      8
      Posts
      390
      Views

      JAundefined

      I think all you need is M99
      Here you have a macro using variables, if someone doesn't want variables (to use with older firmware) just replace the values.

      To download: Cool_Bed.g

      ;[Macro Cool_Bed.g] ; Needs RRF3.3 or later because uses variables ; Change these variables to suit your printer var BedFan = 9 ; Fan number var ThresholdTemp = 50 ; ºC var CheckEvery = 1 ; Seconds if heat.heaters[0].current > {var.ThresholdTemp} M108 ; Cancel Heating (just in case), Breaks out of an M109 or M190 M140 S0 ; Turn off bed heater (*) M106 P{var.BedFan} S1.0 ; Turn on BedFan while true G4 S{var.CheckEvery} ; Wait 1 sec, to check temperature every second if heat.heaters[0].current <= {var.ThresholdTemp} M106 P{var.BedFan} S0.0 ; Turn off BedFan M99 ; Return from Macro/Subprogram ;END if ;END while ;END if

      "*" in line 11, is there anything analogous to M568 A0 for tools but for the bed??

    • peter247undefined

      Solved Error: New tool too close to Z axis limit. ?

      General Discussion
      • • • peter247
      16
      0
      Votes
      16
      Posts
      769
      Views

      peter247undefined

      @phaedrux said in Error: New tool too close to Z axis limit. ?:

      @peter247 said in Error: New tool too close to Z axis limit. ?:

      ( Tool position X Y Z all zero )

      What do you mean by this? Are you manually setting the positions? If you haven't homed yet how do you know what the tool position is?

      Are you baby stepping before anything has been homed or a tool has been selected?

      When you start the print, the first command it does is select T0. then sets some temps, and then homes.

      Since you only have a single tool, you should add T0 to the end of your config.g so that it is selected at startup.

      Then only baby step after you've homed.

      I just mean that the web interface says Tool position all zero , not that the tool head is at a known position.

      Yes I set a baby step before I homed it

      o.k I'll add T0 to the end of my config.g

      I think that is a solved now .

    • peter247undefined

      thermal fuses any advice ?

      General Discussion
      • • • peter247
      5
      0
      Votes
      5
      Posts
      233
      Views

      PaulHewundefined

      @peter247 Sent you a PM

    • peter247undefined

      Any advice printing tpu ?

      General Discussion
      • • • peter247
      20
      0
      Votes
      20
      Posts
      995
      Views

      SJIundefined

      I was originally using buildtak sheets, printing the same item repeatedly in the same location on the bed, got about 20-30 parts. Each part takes 9 hrs to print.
      I then switched to garalite G11 3mm sheet 16months ago and still haven’t had to touch up the G11 surface. Best money spent

    • peter247undefined

      M303 H0 S60 with SSR

      Tuning and tweaking
      • • • peter247
      7
      0
      Votes
      7
      Posts
      274
      Views

      peter247undefined

      @jay_s_uk well it did it, in the end !!!

      Auto tuning heater 0 completed after 5 idle and 15 tuning cycles in 3147 seconds. This heater needs the following M307 command:
      M307 H0 B0 R0.734 C515.8 D11.02 S1.00 V24.1
      Edit the M307 H0 command in config.g to match this. Omit the V parameter if the heater is not powered from VIN.

    • peter247undefined

      Aluminium plate for heat bed what alloy type ?

      General Discussion
      • • • peter247
      23
      0
      Votes
      23
      Posts
      2.5k
      Views

      percarundefined

      I am using high temperature silicon for the adessive. I had this under a press during curing so that there were no voids. I am using 2 heating pads each with their own controls and scr. Each pad has its own safety to prevent over heating. Each pad has type K thermocouple. Heater control is commercial heater control with an analog input so that Duet and control temperatures. The controller has safety cutoff if it runs outside of the set range plus the safety switches. I have been using this for a few years without issue. Thickness of the glass is important as the thicker glass gives more stable temperatures.

    • peter247undefined

      What is the minimum wattage of PSU ?.

      Duet Hardware and wiring
      • • • peter247
      13
      0
      Votes
      13
      Posts
      431
      Views

      Phaedruxundefined

      @peter247 said in What is the minimum wattage of PSU ?.:

      but I guess that depends who you get it from.

      Keep in mind that mouser and digikey usually have free shipping and a warranty, and you're sure to be getting what you pay for.

    • peter247undefined

      Neopixel and DotStar LEDs ?

      Duet Hardware and wiring
      • • • peter247
      2
      0
      Votes
      2
      Posts
      168
      Views

      dc42undefined

      Yes, and I have corrected it. Thanks for pointing it out.

    • peter247undefined

      3.3.0 have you changed how M84 works ?

      General Discussion
      • • • peter247
      2
      0
      Votes
      2
      Posts
      289
      Views

      dc42undefined

      @peter247 M84 has always taken a list of extruder numbers after the E parameter. In previous firmware, if you omitted a number where one was expected, 0 was assumed. That is no longer the case.

    • peter247undefined

      job.file.pauseDuration does it get used anywhere ?

      Gcode meta commands
      • • • peter247
      4
      0
      Votes
      4
      Posts
      144
      Views

      chrishammundefined

      @peter247 Yes, that is correct.

    • peter247undefined

      GCode Meta Commands , delay command ?

      Gcode meta commands
      • • • peter247
      2
      0
      Votes
      2
      Posts
      138
      Views

      jay_s_ukundefined

      @peter247 G4?
      https://duet3d.dozuki.com/Wiki/Gcode#Section_G4_Dwell

    • peter247undefined

      3.3.0 upgrade !!!!

      Firmware installation
      • • • peter247
      5
      0
      Votes
      5
      Posts
      377
      Views

      droftartsundefined

      @peter247 shouldn't have the brackets on the end: https://github.com/Duet3D/DSF-Plugins/releases/tag/v3.3.0

      Ian

    • peter247undefined

      Pause delayed heater shut off ?

      Gcode meta commands
      • • • peter247
      3
      0
      Votes
      3
      Posts
      148
      Views

      Phaedruxundefined

      https://duet3d.dozuki.com/Wiki/GCode_Meta_Commands#Section_Variables

    • peter247undefined

      Solved How do you make it Solved ?

      General Discussion
      • • • peter247
      4
      1
      Votes
      4
      Posts
      233
      Views

      peter247undefined

      @o_lampe

      Over the first post there is a topic tools gear button ( Right , Top ) .
      Select ask a question, then select topic solved .

    • peter247undefined

      Solved Firmware update duet 2 , 3.11 > 3.22

      Firmware installation
      • • • peter247
      3
      0
      Votes
      3
      Posts
      192
      Views

      peter247undefined

      @droftarts said in Firmware update duet 2 , 3.11 > 3.22:

      M997 S1

      Done that , it look like it as stop my wifi , eg wifi is disconnected .

      o.k restarted my wifi with M552 S1

      back up and running .

    • peter247undefined

      M122 results , failedOp 0x6f ?

      Tuning and tweaking
      • • • peter247
      2
      0
      Votes
      2
      Posts
      85
      Views

      dc42undefined

      There is a bug in the firmware, whereby the reported position for internal drivers is actually the position of that axis number, not the driver position.

      The timeouts and failed ops don't normally matter because they get retried. Firmware 3.3 includes a fix for them.

    • peter247undefined

      Can deform 4mm print glass

      Tuning and tweaking
      • • • peter247
      14
      0
      Votes
      14
      Posts
      694
      Views

      peter247undefined

      @jens55 @dc42 @deckingman

      Now this is better Screenshot 2021-06-03 153344.png

    • peter247undefined

      3950 1% pullup thermistor is built-in ?

      Duet Hardware and wiring
      • • • peter247
      4
      0
      Votes
      4
      Posts
      212
      Views

      dc42undefined

      @peter247 use T100000 B3950 C0 in your M308 command for the bed heater.