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

    Skimmy

    @Skimmy

    1
    Reputation
    12
    Profile views
    20
    Posts
    1
    Followers
    0
    Following
    Joined Last Online
    Website www.well-engineered.net Location Germany

    Skimmy Unfollow Follow

    Best posts made by Skimmy

    • RE: Duet WiFi in access point mode

      Ok, i fiddled around this evening and found out, that the accesspoint works EVERY TIME, when using:

      8 caps letters for SSID and 8 caps letters for the password. Example:

      [[language]]
      M589 S"MEINDUET" P"MEINWIFI" I192.168.178.250;
      
      

      As soon as the SSID contains lowcase-letters or numbers, it doesn't work anymore. Same for the password. And using less or more digits than 8 doesn't work too.

      posted in Firmware installation
      Skimmyundefined
      Skimmy

    Latest posts made by Skimmy

    • RE: end.g is possible?

      @dc42 If I execute stop.g via M0 at the end of my gcode-file, is it ok to have M0 inside of stop.g again to shut off the heaters?

      posted in Tuning and tweaking
      Skimmyundefined
      Skimmy
    • RE: RRF3 -> Z-Probe was not triggered during probing move

      I did an extensive code-check and talk with CR3D and also didn't come to a solution.

      For example: a 5-point bed-calibration works fine (a G32 (call to execute bed.g with 5x G30 in it)

      Every G30 command works, but as soon as you start a G29, things start getting weird.

      posted in General Discussion
      Skimmyundefined
      Skimmy
    • RE: M569 for choosing stealth chop is not working

      ah, thx for clarifying. Then, the docu is a bit misleading 😕

      https://duet3d.dozuki.com/Wiki/Gcode#Section_M569_Set_motor_driver_direction_enable_polarity_and_step_pulse_timing

      Dnn (firmware 2.0 and later, only applies to TMC2660 and TMC22xx stepper drivers) Driver mode: 0=constant off time, 1=random off time, 2=spread cycle, 3=stealthChop or stealthChop2. The default is spreadCycle for TMC2660 drivers and stealthChop2 for TMC22xx. In stealthChop mode the drivers will switch over to spreadCycle automatically at high speeds, see the V parameter.

      posted in General Discussion
      Skimmyundefined
      Skimmy
    • M569 for choosing stealth chop is not working

      If I do send

      M569 P0 S0 D3

      via console, I get the error message:

      Error: M569: Driver 0 does not support mode 'stealthChop'

      But the docs clearly say that the DUET uses TMC2660 and lists TMC2660 as stealth chop capable. Am I missing something?

      Im running the latest firmwares with a DUET + DUEX5:

      Firmwarename: RepRapFirmware for Duet 2 WiFi/Ethernet
      Firmware Elektronik: Duet WiFi 1.02 or later + DueX5
      Firmware Version: 2.02(RTOS) (2018-12-24b1)
      WiFi Server Version: 1.22
      Web Interface Version: 1.22.6

      posted in General Discussion
      Skimmyundefined
      Skimmy
    • RE: Feedback about this nozzle

      @martin1454 said in Feedback about this nozzle:

      From what I have seen from others, it really works well - just as long as it is not made by the chinese.

      To be fair, my "original" airbrush adapters are made in china, too. 😉 I just had to find the quality supplier!
      On the way to this, I got more than 300 bad nozzles, just with some measurement off or leaking or such.

      Any idea what to do with it? XD XD

      posted in General Discussion
      Skimmyundefined
      Skimmy
    • I broke my DUET. Is there anything you can do with it now?

      Title says it all. I broke it.
      I touched the back of the board with an active 24V wire. The only function the board still has: When I power it via USB, the 2 LEDs for 5V light up.
      What to do with it now? I don't want to throw money at it to get it repaired (unless it is <50€ in total). But can someone do something with it? Salvaging parts or stuff? I am willing to ship it worldwide for 6,20€.

      posted in General Discussion
      Skimmyundefined
      Skimmy
    • Multiple heater per tool

      Hello!

      I would like to talk about how best to assign several heaters to one tool. I want to create heating zones of different temperatures on a single tool.

      Currently I solve this with a second or even third "dummy" tool by assigning it another "standby" temperature.

      I would like to talk to you about how you handled this.

      posted in General Discussion
      Skimmyundefined
      Skimmy
    • External hard-reset

      Before bricking my beloved DUET with bad wiring and testing it on my own, I would rather ask to do it right:

      In case I want to add an external reset-button, is it ok to pull PIN44 of the extension header to GND via a simple microswitch? And, in addition, do I need a debounced switch or will any generic do?
      Do I need to add a pull-down resistor or is it already done in the CPU like on arduinos?

      posted in Duet Hardware and wiring
      Skimmyundefined
      Skimmy
    • RE: Duet WiFi in access point mode

      I did test it via macro.

      This did not work:

      [[language]]
      ; SetNetwork macro to set up access to dummy test Wifi network
      M552 S0;
      G4 S5;
      M589 S"test123" P"test123" I192.168.178.250;
      G4 S5;
      M552 S2;
      
      

      This works everytime:

      [[language]]
      ; SetNetwork macro to set up access to dummy test Wifi network
      M552 S0;
      G4 S5;
      M589 S"MEINDUET" P"MEINWIFI" I192.168.178.250;
      G4 S5;
      M552 S2;
      
      

      Noticed, that since using RC3, changing from M552 S2 over M552 S0 to M552 S1 doesn't work sometimes.
      Using the makro:

      [[language]]
      M552 S0;
      G4 S5;
      M552 S1;
      
      

      sometimes results in:

      [[language]]
      WiFi module  is idle Failed to change WiFi mode (code -7)
      
      

      executing the macro or M552 S1 again does work in this case.

      posted in Firmware installation
      Skimmyundefined
      Skimmy
    • RE: Duet WiFi in access point mode

      @dc42:

      Have you tried firmware 1.21RC3 yet? I made a change that should improve it, see the release notes.

      I updated to RC3 on firmware and webserver, and RC4 on the interface, and a quick test with:

      [[language]]
      M589 S"test123" P"test123" I192.168.178.250;
      
      

      didn't work. Back to all capital letters and 8 per parameter and it is functional again.

      posted in Firmware installation
      Skimmyundefined
      Skimmy