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

    Posts made by toufou54

    • RE: Duet Telegram bot

      @the_dragonlord I don't remember if I did the file or get on the web but you have to make duetbot as a service with a file "duetbot.service" or whatever into /etc/systemd/system as root

      File content (edited):

      [Unit]
      Description=node js duetbot for telegram
      #after network is up
      After=network.target 
      
      [Service]
      WorkingDirectory=/usr/bin
      ExecStart=duetbot
      Restart=on-failure
      RestartSec=1500ms
      Type=forking
      #user pi or root, will determine where the script will search the configuration file **.duetbot.json** 
      User=pi
      # Note Debian/Ubuntu uses 'nogroup', RHEL/Fedora uses 'nobody'
      Group=nogroup
      Environment=PATH=/usr/bin:/usr/local/bin
      Environment=NODE_ENV=production
      # log send to syslog
      StandardOutput=syslog
      StandardError=syslog
      
      # syslog name id
      SyslogIdentifier=duetbot
      
      [Install]
      WantedBy=multi-user.target
      

      And don't forget to execute after that :

      #to load the file for the systemctl manager
      systemctl daemon-reload
      
      # to start and test
      service duetbot start 
      
      # to check if loaded an active
      service duetbot status 
      
      # if all is good you can tell the system to execute it as a service on boot :
      systemctl enable duetbot
      
      #if it's ok the system will respond :
      Created symlink /etc/systemd/system/multi-user.target.wants/duetbot.service → /etc/systemd/system/duetbot.service.
      
      posted in General Discussion
      toufou54undefined
      toufou54
    • RE: Duet Telegram bot

      Excellent job ! Thanks

      posted in General Discussion
      toufou54undefined
      toufou54
    • RE: Height map missing

      OK guys, maybe you will tell me I'm not doing the right way but it took me some time to find the information...
      Because I was searching here :
      https://github.com/Duet3D/RepRapFirmware/blob/v3-dev/WHATS_NEW_RRF3.md

      But at least I've found the correct changes notes here :
      https://github.com/Duet3D/DuetWebControl/releases

      Question: what are you doing such confusing things ? Every time I'm searching the documentation it's a pain ! too much documents with too much versions !!

      I think I understood, I've upgraded the firmware (combined) and I checked the releases notes with it ... but at least the bin file upgraded the Web interface...and not the firmware by the way, when I checked I see "RepRapFirmware for Duet 2 WiFi/Ethernet 3.1.1 (2020-05-19b2)" instead of the 3.2.0-b2

      Thanks guys for the support

      posted in Duet Web Control
      toufou54undefined
      toufou54
    • RE: Show HTML5 desktop notifications

      Thanks guys

      posted in Duet Web Control
      toufou54undefined
      toufou54
    • RE: Warning or Pause on heater failure detection

      that's ok now thank you , I just have Z stall height errors, I need to tune that.

      I just want to know how can it be done, make an emergency stop in case of heater failure (or at least a pause during the print).
      Is it possible ?

      posted in Tuning and tweaking
      toufou54undefined
      toufou54
    • RE: Warning or Pause on heater failure detection

      Very weird but errors disappears as they came...

      My errors are disappears now (at least those, I have others..)

      But what about the warning and not a critical default and automatic print stop in case of heater fault ???

      posted in Tuning and tweaking
      toufou54undefined
      toufou54
    • RE: Warning or Pause on heater failure detection

      @zerspaner_gerd It was that, thanks !!

      but now I have a new error, I don't think it's relative but appeared right after the change :
      Error: M106: Fan number 2 not found

      It appear twice, the only call to M106 en config is this :

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

      No call to a fan number 2...

      Thanks

      posted in Tuning and tweaking
      toufou54undefined
      toufou54
    • RE: Warning or Pause on heater failure detection

      @zerspaner_gerd you are certainly right, I will modify this (this is my gcodes than I uses on Marlin, I just went to Duet a few days ago...)

      And btw T0 is not the solution, tested without luck.

      Thanks guys, I'll post results when I could try

      posted in Tuning and tweaking
      toufou54undefined
      toufou54
    • RE: Warning or Pause on heater failure detection

      here the begining of one gcode file:

      ; generated by PrusaSlicer 2.2.0+win64 on 2020-05-24 at 17:05:55 UTC
      
      M107
      
      M582 T1 ; check if filament is present
      
      M220 S100 ;Reset Feedrate
      M221 S100 ;Reset Flowrate
      
      M140 S55 R40 ; set bed temp
      M190 S55-10 ; wait for bed temp
      M104 S210 ; set extruder temp
      
      M300 S40 P10 ; chirp
      
      M118 P3 S"HOMING" ; message HTTP
      M118 P4 S"HOMING" ; message TELNET
      
      G28 ; Home all axes
      ;M420 S1; restore manual mesh
      
      M300; beep
      G92 E0 ;Reset Extruder
      G1 Z2.0 F3000 ;Move Z Axis up
      G1 X5 Y20 Z2.0 F3000.0 ; Move to start position
      M109 S210 ; wait for extruder temp
      G1 X5 Z0.3
      G1 X5 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line
      G1 X5 Y200.0 Z0.3 F5000.0 ; Move to side a little
      G1 X5.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line
      G92 E0 ; Reset Extruder
      G10 S1; retract
      G1 Z10 F3000 ; Move Z Axis up
      G1 X30
      G11; recover after retraction G10
      
      M118 P4 S"PRINT_START" ; message TELNET
      G21 ; set units to millimeters
      G90 ; use absolute coordinates
      M82 ; use absolute distances for extrusion
      G92 E0
      ; Filament gcode
      G1 Z0.260 F30000.000
      G1 E-3.00000 F2700.00000
      G92 E0
      G1 X64.064 Y47.624 F30000.000
      G1 E3.00000 F2700.00000
      G1 F1200.000
      G1 X65.084 Y46.449 E3.07805
      G1 X66.328 Y45.514 E3.15611
      G1 X67.739 Y44.860 E3.23416
      G1 X100.092 Y36.264 E4.91391
      G1 X101.141 Y36.067 E4.96746
      
      posted in Tuning and tweaking
      toufou54undefined
      toufou54
    • RE: Warning or Pause on heater failure detection

      It happen on all my prusaslicer generated gcodes, just after the start gcode, I didn't found any M104 S1 in the code.
      I'll send the code tomorrow now, going to sleep right now.

      But yes the gcode seems to send a heater temp to 1 just before print and the warning came later when it detect that the temp is to low to extrude, but it does not stop the print !

      posted in Tuning and tweaking
      toufou54undefined
      toufou54
    • RE: M950 and M581 issues

      @dc42 said in M950 and M581 issues:

      What do you have in your resume.g file?

      Ok I understand now, I have this:
      ; resume.g
      ; called before a print from SD card is resumed
      ;
      ; generated by RepRapFirmware Configuration Tool v2.1.8 on Thu May 21 2020 00:01:33 GMT+0200 (heure d’été d’Europe centrale)
      G1 R1 X0 Y0 Z5 F6000 ; go to 5mm above position of the last print move
      G1 R1 X0 Y0 ; go back to the last print move
      M83 ; relative extruder moves
      G1 E10 F3600 ; extrude 10mm of filament

      So I will remove or put the last line before moving...

      Thanks

      posted in Duet Hardware and wiring
      toufou54undefined
      toufou54
    • Warning or Pause on heater failure detection

      Hi,

      I have this Warning (I have to check my generated gcode) : "Tool 0 was not driven because its heater temperatures were not high enough or it has a heater fault"
      So yes after 30 seconds in the print start, the heater is set to 1°C, I have to found why.

      But I'm asking why just a warning, why don't a critical fail is not detected ?

      And how can I force to stop or pause on such error ?

      Thank you

      posted in Tuning and tweaking
      toufou54undefined
      toufou54
    • RE: M950 and M581 issues

      Thanks, it's working great now, except that when I resume after the test, when the nozzle came back to X and Y position, just when the Z go down the extruder begin to extrude before the Z final position !!!

      Andwhat about the :
      M582 T1 ; check if filament is present
      in the console I have no responses...

      In the meanwhile I've tested the M951 code, without success too :
      M591 D0 P2 C"e0stop"

      What I do wrong ?

      Thanks again for your quick answer

      posted in Duet Hardware and wiring
      toufou54undefined
      toufou54
    • RE: Show HTML5 desktop notifications

      I'm using 3.11 version.
      and here the screenshot of the doc :
      04557323-a0ab-474d-83e1-97239bb57112-image.png

      posted in Duet Web Control
      toufou54undefined
      toufou54
    • RE: M950 and M581 issues

      Thanks I just found why I didn't see the informations, I was looking at new 3.0 firmware commands here :
      https://duet3d.dozuki.com/Wiki/RepRapFirmware_3_overview#Section_M950_Create_heater_fan_or_GPIO_servo_port

      But that's not help me for what it doesn't work for me.

      Anybody help please ?
      -->
      ; filament jam and run out switches
      M950 P3 C"e0stop"
      M581 P3 T1 S1 R0 ; Filament run-out sensor triggers a pause

      Not pausing anything when switch change...

      posted in Duet Hardware and wiring
      toufou54undefined
      toufou54
    • M950 and M581 issues

      HI,

      I've just try to install a filament sensor on E0 stop, trying different configurations and finally got this :

      ; filament jam and run out switches
      M950 P3 C"e0stop"
      M581 P3 T1 S1 R0 ; Filament run-out sensor triggers a pause

      I've careful read the discussion here :
      https://forum.duet3d.com/topic/4952/inputs-for-a-simple-switch-filament-sensor/19

      and make adaptation for RFF 3.11 but it's not working

      Firstly I put E P0 but M950 P0 gave me this :
      M950 P0
      GPIO/servo port 0 pin (exp.heater3,exp.8) frequency 50Hz

      Now I have this with P3 :
      M950 P3
      GPIO/servo port 3 pin e0stop frequency 500Hz

      But nothing trigger (I want to pause) when a test (the led on the board is changing state when switch on and off, so my wiring appears to be good)

      And by the way, I don't understand the documentation here :
      https://duet3d.dozuki.com/Wiki/Gcode#Section_M581_RepRapFirmware_3_01RC2_and_later

      It says "P Specify one or more input pin numbers that you created using M950 with the J parameter"

      What is this J parameters ???

      Thanks

      posted in Duet Hardware and wiring
      toufou54undefined
      toufou54
    • Show HTML5 desktop notifications

      Where is the Show HTML5 desktop notifications menu describe here :
      https://duet3d.dozuki.com/Wiki/Duet_Web_Control_Manual#Section_Notifications
      ??

      Sorry I cannot tell what version of web interface, it's a new fresh install and i'm new to duet, but I've updated everything to the latest versions available (RFF3, last firmware, last web version)

      Thanks

      posted in Duet Web Control
      toufou54undefined
      toufou54
    • RE: Brand new Paneldue 7 not connecting (RRF3)

      That's ok now it's working thanks again

      posted in PanelDue
      toufou54undefined
      toufou54
    • RE: Brand new Paneldue 7 not connecting (RRF3)

      Thanks, that what I was thinking, but never found that in Panelduet documentations, maybe it will be good to make a fresh install documentation, because I did read the page you send me, bu only when I plug and update the board before anything else...so I didn't see the panel M575 g-code.
      I will get a try right now !

      posted in PanelDue
      toufou54undefined
      toufou54
    • Brand new Paneldue 7 not connecting (RRF3)

      Hi, I've just received my first Duet 2 Ethernet with Panel 7" yesterday, I'm a little be confused about a lot of missing feature like notifications and a real user friendly Web GUI, but the worse things is this panel with old school graphics which apparently not working (I can see with an oscilloscope that it send 3.3v data and when a want to test RX the signal is very weird with a lot of parasites).
      So no effects on any action on the panel, and no data from the duet (all temperatures stays at 0)
      Maybe an issue with RRF3 ? (I hope otherwise it seems that panel and/or this duet board will not have a great future...)

      posted in PanelDue
      toufou54undefined
      toufou54