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

    Config of a 12864 on a MINI 5

    Scheduled Pinned Locked Moved Solved
    General Discussion
    4
    12
    499
    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.
    • jay_s_ukundefined
      jay_s_uk @3DPrintingWorld
      last edited by

      @3dprintingworld said in Config of a 12864 on a MINI 5:

      M563 P0 D0 H1 F0:1:2

      You shouldn't map thermostatically controlled fans to a tool.
      Also, the thermostatically controlled fan is intended to be fan 1 not fan 0

      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

      3DPrintingWorldundefined 1 Reply Last reply Reply Quote 1
      • 3DPrintingWorldundefined
        3DPrintingWorld @jay_s_uk
        last edited by 3DPrintingWorld

        @jay_s_uk
        Didn't catch that, the configuration tool put fan 0 on the tool.

        What do you mean intended to be fan 1. Why does it matter what is the tool fan?

        Now that I took fan 0 off the tool, only the knob on the LCD lights up and not the display. If I turn the hotend temp past 45, turn it off and it cools down, the LCD lights up again. Why is the status of the fan have anything to do with the LCD.

        Luke'sLaboratoryundefined 1 Reply Last reply Reply Quote 0
        • Luke'sLaboratoryundefined
          Luke'sLaboratory @3DPrintingWorld
          last edited by Luke'sLaboratory

          @3dprintingworld

          Some weird stuff about assuming which fan is a part cooling fan and which isn't. its just a label flip to make one fan0 and fan1

          Luke
          http://lukeslab.online

          3DPrintingWorldundefined 1 Reply Last reply Reply Quote 1
          • 3DPrintingWorldundefined
            3DPrintingWorld @Luke'sLaboratory
            last edited by

            @luke-slaboratory
            Ok, I switched it and the good news is the LCD no longer changes with the status of the fan it just stays off.

            I also noticed that there was something weird with my config. I must have accidently cut and pasted something. Here is the current version

            G90                                     ; send absolute coordinates...
            M83                                     ; ...but relative extruder moves
            M550 P"Mulcore"                          ; set printer name
            M669 K1                                 ; select CoreXY mode
            M918 P1 E4 F2000000                     ; configure direct-connect display
            
            ; Drives
            M569 P0.1 S1                            ; physical drive 0.0 goes forwards
            M569 P0.0 S0                            ; physical drive 0.1 goes forwards
            M569 P0.2 S1                            ; physical drive 0.2 goes forwards
            M569 P0.4 S1                            ; physical drive 0.3 goes forwards
            M584 X0.1 Y0.0 Z0.2 E0.4                ; set drive mapping
            M350 X16 Y16 Z16 E16 I1                 ; configure microstepping with interpolation
            M92 X200.00 Y200.00 Z1096.00 E655.00       ; set steps per mm
            M566 X900.00 Y900.00 Z100.00 E300.00     ; set maximum instantaneous speed changes (mm/min)
            M203 X12000.00 Y12000.00 Z2000.00 E4200.00 ; set maximum speeds (mm/min)
            M201 X1000.00 Y900.00 Z100.00 E600.00     ; set accelerations (mm/s^2)
            M906 X700 Y700 Z300 E600 I30            ; set motor currents (mA) and motor idle factor in per cent
            M84 S30                                 ; Set idle timeout
            
            ; Axis Limits
            M208 X0 Y0 Z0 S1                        ; set axis minima
            M208 X200 Y200 Z200 S0                  ; set axis maxima
            
            ; Endstops
            M574 X1 S1 P"!io0.in"                    ; configure active-high endstop for low end on X via pin io0.in
            M574 Y2 S1 P"!io1.in"                    ; configure active-high endstop for high end on Y via pin io1.in
            M574 Z1 S2                              ; configure Z-probe endstop for low end on Z
            
            ; Z-Probe
            M950 S0 C"io2.out"                      ; create servo pin 0 for BLTouch
            M558 P9 C"^io2.in" H5 F120 T6000        ; set Z probe type to bltouch and the dive height + speeds
            G31 P500 X0 Y23 Z2.4                       ; set Z probe trigger value, offset and trigger height
            M557 X15:200 Y15:195 S20                ; define mesh grid
            
            ; Heaters
            M308 S0 P"temp0" Y"thermistor" T100000 B4534 C9.565227e-8        ; configure sensor 0 as PT1000 on pin temp0
            M950 H0 C"out1" T0                      ; create bed heater output on out0 and map it to sensor 0
            M307 H0 B0 S1.00                        ; disable bang-bang mode for the bed heater and set PWM limit
            M140 H0                                 ; map heated bed to heater 0
            M143 H0 S120                            ; set temperature limit for heater 0 to 120C
            M308 S1 P"temp1" Y"thermistor" T100000 B4376 ; configure sensor 1 as thermistor on pin e0temp
            ;M308 S1 P"temp1" Y"thermistor" T500000 B4723 C1.196220e-7 R4700        ; configure sensor 1 as PT1000 on pin temp1
            M950 H1 C"out2" T1                      ; create nozzle heater output on out1 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
            
            ; Fans
            M950 F0 C"out3" Q500                    ; create fan 1 on pin out4 and set its frequency
            M106 P0 S0 H-1                          ; set fan 1 value. Thermostatic control is turned off
            M950 F1 C"out4" Q500                    ; create fan 0 on pin out3 and set its frequency
            M106 P1 S0 H1 T45                        ; set fan 0 value. Thermostatic control is turned on
            M950 F2 C"out5" Q500                    ; create fan 2 on pin out5 and set its frequency
            M106 P2 S0 H-1                          ; set fan 2 value. Thermostatic control is turned off
            M950 F3 C"out6" Q500                    ; create fan 2 on pin out5 and set its frequency
            M106 P3 S1 H-1                          ; set fan 2 value. Thermostatic control is turned off
            
            ; LED
            M950 F4 C"out0"                      ; create LED 4 on pin duex.fan7 and set its frequency - TOP LEFT
            M106 P4 S1                               ; set LED 4 value. Thermostatic control is turned OFF
            
            ; Tools
            M563 P0 D0 H1 F0:2                    ; define tool 0
            G10 P0 X0 Y0 Z0                         ; set tool 0 axis offsets
            G10 P0 R0 S0                            ; set initial tool 0 active and standby temperatures to 0C
            
            M501                                             ; Record
            
            
            Luke'sLaboratoryundefined 1 Reply Last reply Reply Quote 0
            • Luke'sLaboratoryundefined
              Luke'sLaboratory @3DPrintingWorld
              last edited by

              @3dprintingworld

              If you are using a Fysetc mini v2.1 you need option P2 for your LCD for the ST7567 driver.

              Luke
              http://lukeslab.online

              3DPrintingWorldundefined 1 Reply Last reply Reply Quote 1
              • 3DPrintingWorldundefined
                3DPrintingWorld @Luke'sLaboratory
                last edited by

                @luke-slaboratory Good catch, one step closer. Its say "file Main" not found.
                I have the main file in a "menu" folder with the others in the system directory.

                PCRundefined 1 Reply Last reply Reply Quote 0
                • PCRundefined
                  PCR @3DPrintingWorld
                  last edited by

                  @3dprintingworld

                  Go Into system. Then choose Menu from the upper left drowdown. Then Upload the Menu Files there

                  3DPrintingWorldundefined 1 Reply Last reply Reply Quote 1
                  • 3DPrintingWorldundefined
                    3DPrintingWorld @PCR
                    last edited by

                    @pcr Awesome, thanks! Its working now. I just need to figure out how to get the back light for the panel and the button to come on.

                    PCRundefined 1 Reply Last reply Reply Quote 0
                    • PCRundefined
                      PCR @3DPrintingWorld
                      last edited by

                      @3dprintingworld use the M150 command

                      3DPrintingWorldundefined 1 Reply Last reply Reply Quote 1
                      • 3DPrintingWorldundefined
                        3DPrintingWorld @PCR
                        last edited by

                        @pcr Got it figured out, thanks!

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