Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login
    1. Home
    2. Simonjb
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 17
    • Best 4
    • Controversial 0
    • Groups 0

    Simonjb

    @Simonjb

    4
    Reputation
    3
    Profile views
    17
    Posts
    0
    Followers
    0
    Following
    Joined Last Online
    Location Scotland

    Simonjb Unfollow Follow

    Best posts made by Simonjb

    • RE: Customising the splash screen

      Try making sure you have a space between the two command line switches
      bmp2c-escher3d.exe myimage.bmp myimage.bin -b -c and not -b-c.

      I have successfully converted a 1126kb 24 bit bmp file to a 106kb bin. My firmware bin after the binary copy is 224kb. The bmp file needs to have large blocks of colour. Too much detail will not convert successfully.

      I presume you are following the instructions on github for the PanelDue firmware.

      totoro.jpg

      posted in PanelDue
      Simonjbundefined
      Simonjb
    • RE: Just updated FW to 3.1.1. Now i get failed to enable endstops.

      You are missing defining a pin with M950 for the servo on the the BL Touch. My config.g for a Hypercube reads -

      ; Z-Probe
      M950 S0 C"exp.heater7"                             ; assign heater7 for bltouch
      M558 P9 C"^zprobe.in" H5 F120 T6000 A30 S0.02      ; Set Z probe type to bltouch and the dive height + speeds
      G31 P500 X28 Y0 Z0.812                             ; set Z probe trigger value, offset and trigger height
      M557 X45:300 Y5:295 S40                            ; define mesh grid
      

      Have a look here https://duet3d.dozuki.com/Wiki/Connecting_a_Z_probe#Section_BLTouch

      posted in Firmware installation
      Simonjbundefined
      Simonjb
    • RE: Customising the splash screen

      Glad I spotted it! Falling back on my original DOS 2 and 3 experience!

      posted in PanelDue
      Simonjbundefined
      Simonjb
    • RE: PanelDue 7i stuck at 'connecting'

      From github -

      Version 3.2.11
      Upgrade Notes:
      This release is compatible with RepRapFirmware 3.2 or later.

      Someone that knows more may correct me but I think the last 100% 2.05 compatible version was 1.24 of the PanelDue firmware

      posted in PanelDue
      Simonjbundefined
      Simonjb

    Latest posts made by Simonjb

    • RE: Bed temperature dropdown does not match setting

      @droftarts Ian, That fixed it however it persists as a bug in 3.5.4

      posted in Duet Web Control
      Simonjbundefined
      Simonjb
    • RE: Bed temperature dropdown does not match setting

      I see the same problem and only with bed temperature. Deleting cookies and the dwc settings file and trying different browsers sometimes removes the error but it has always come back...

      posted in Duet Web Control
      Simonjbundefined
      Simonjb
    • RE: Make your own design for the LCD screen

      @spirit-robotics Look at https://github.com/Duet3D/PanelDueFirmware#splash-screen - its quite easy to do.

      posted in PanelDue
      Simonjbundefined
      Simonjb
    • RE: PanelDue 7i stuck at 'connecting'

      From github -

      Version 3.2.11
      Upgrade Notes:
      This release is compatible with RepRapFirmware 3.2 or later.

      Someone that knows more may correct me but I think the last 100% 2.05 compatible version was 1.24 of the PanelDue firmware

      posted in PanelDue
      Simonjbundefined
      Simonjb
    • RE: Customising the splash screen

      Glad I spotted it! Falling back on my original DOS 2 and 3 experience!

      posted in PanelDue
      Simonjbundefined
      Simonjb
    • RE: Customising the splash screen

      Try making sure you have a space between the two command line switches
      bmp2c-escher3d.exe myimage.bmp myimage.bin -b -c and not -b-c.

      I have successfully converted a 1126kb 24 bit bmp file to a 106kb bin. My firmware bin after the binary copy is 224kb. The bmp file needs to have large blocks of colour. Too much detail will not convert successfully.

      I presume you are following the instructions on github for the PanelDue firmware.

      totoro.jpg

      posted in PanelDue
      Simonjbundefined
      Simonjb
    • RE: Just updated FW to 3.1.1. Now i get failed to enable endstops.

      You are missing defining a pin with M950 for the servo on the the BL Touch. My config.g for a Hypercube reads -

      ; Z-Probe
      M950 S0 C"exp.heater7"                             ; assign heater7 for bltouch
      M558 P9 C"^zprobe.in" H5 F120 T6000 A30 S0.02      ; Set Z probe type to bltouch and the dive height + speeds
      G31 P500 X28 Y0 Z0.812                             ; set Z probe trigger value, offset and trigger height
      M557 X45:300 Y5:295 S40                            ; define mesh grid
      

      Have a look here https://duet3d.dozuki.com/Wiki/Connecting_a_Z_probe#Section_BLTouch

      posted in Firmware installation
      Simonjbundefined
      Simonjb
    • RE: RRF 3.0 upgrade - Fans

      @droftarts I was right - it was simple. Thanks Ian both fans now working as expected.

      posted in Duet Hardware and wiring
      Simonjbundefined
      Simonjb
    • RE: RRF 3.0 upgrade - Fans

      as in the title RRF 3.0

      posted in Duet Hardware and wiring
      Simonjbundefined
      Simonjb
    • RRF 3.0 upgrade - Fans

      Spent far too much time trying to get my hotend and partcooling fans to work on my DUET 2 so asking here for help.

      My first PWM fan connection does not work (cock up when building my HEVO) so I have to assign the hotend fan to the second connector and the part cooling fan to the third.

      My config.g (from the online config tool) for the fans is -
      ; Fans
      M950 F0 C"fan1" Q500 ; create fan 0 on pin fan1 and set its frequency
      M106 P0 S1 H1 T45 ; set fan 0 value. Thermostatic control is turned on
      M950 F1 C"fan2" ; create fan 1 on pin fan2 and set its frequency
      M106 P1 S0 H-1 ; set fan 1 value. Thermostatic control is turned off

      In my 2.06 config.g I had -
      ; Fans
      M106 P1 S1 I0 F500 H1 T45 C"HotEnd" ; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on
      M106 P2 S0 H-1 C"PrintCool" ; suggested by forum

      Running M98 P"config.g" give the following -
      Error: M950: Pin 'fan2' is not free
      Error: M106: Fan number 1 not found
      And the hotend fan then works correctly if I heat up/cool down turning on/off at 45°C

      If I restart the board it fails again and does not spin up.

      The part cooling fan does not respond at all to M106 P1 and give the error "Fan number 1 not found"

      I'm baffled - no doubt it will be a simple error on my part but I can't find it!

      posted in Duet Hardware and wiring troubleshooting rrf3 fans setup
      Simonjbundefined
      Simonjb