how can i interface duet to the web interface
can any one list the steps that i should make it simply
thanks
ABDELRHMAN SAMIR ABOGABAL
@ABDELRHMAN SAMIR ABOGABAL
Best posts made by ABDELRHMAN SAMIR ABOGABAL
-
Duet to the web
Latest posts made by ABDELRHMAN SAMIR ABOGABAL
-
RE: Do not find AD12 ON DUET 0.8.5
WHeRE IS IN THE KIT
??????????
in duet 0.6 it is at pin 39
where is it in duet 0.8.5 -
Do not find AD12 ON DUET 0.8.5
I DO NOT find AD12 on duet 0.8.5 because i want to connect z probe output to it
can any one help ??????????/ -
Different time consumption between cura and duet 0.8.5
cura tell me that the time for print some thing is 25 minutes
the duet tell me in the screen that is about 16 hour it is a fatal different between the two period
what is the error ????? -
Printing speed is very very slowly ?????
the speed of printing is very very slowly
this is my config.g
; Configuration file for Duet 0.8.5 (firmware version 1.17)
; executed by the firmware on start-up
;
; generated by RepRapFirmware Configuration Tool on Sat Dec 24 2016 09:54:13 GMT-0800 (Pacific Standard Time);
General preferences
M111 S0 ;
Debugging off
G21 ;
Work in millimetres
G90 ;
Send absolute coordinates…
M83 ;
...but relative extruder moves
M555 P2 ;
Set firmware compatibility to look like RepRapFirmare
M208 X0 Y0 Z0 S1 ;
Set axis minima
M208 X190 Y190 Z190 S0 ; Set axis maxima;
Endstops
M574 X1 Y1 Z1 S0 ; Define active low and unused microswitchesM558 P1 X0 Y0 Z1 F120 T6000 l1 ; Set Z probe type to switch, the axes for which it is used and the probe + travel speeds
G31 P600 X0 Y0 Z2.5 ;
Drives
M569 P0 S1 ; Drive 0 goes forwardsM569 P1 S1 ;
Drive 1 goes forwards
M569 P2 S1 ;
Drive 2 goes forwards
M569 P3 S1 ;
Drive 3 goes forwards
M92 X80 Y80 Z800 E86 ; Set steps per mmM566 X15 Y15 Z0.2 E2 ; Set maximum instantaneous speed changes (mm/min)
M203 X100 Y100 Z30 E20 ; Set maximum speeds (mm/min)
M201 X1500 Y1500 Z500 E250 ; Set accelerations (mm/s^2)
M906 X1500 Y1500 Z1500 E1500 ; Set motor currents (mA)
M84 S0 ; Disable motor idle current reduction
;
Heaters
M143 S260 ; Set maximum heater temperature to 260CM301 H0 S0.17 P10 I0.1 D200 T0.4 W180 B30 ; Use PID on bed heater (may require further tuning)
M305 P0 T100000 B3988 C0 R4700 ; Set thermistor + ADC parameters for heater 0
M301 H1 S0.17 ; Set heater 1 output scale factor to 20%
M305 P1 T100000 B4138 C0 R4700 ; Set thermistor + ADC parameters for heater 1
;
Tools
M563 P0 D0 H1 ;
Define tool 0
G10 P0 X0 Y0 ;
Set tool 0 axis offsets
G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0C; Network
M550 Pshisan 3d printer ; Set machine name
M540 PBE:EF:DE:AD:FE:ED ; Set MAC address
M552 P0.0.0.0 S1 ; Enable network and acquire dynamic address via DHCP; Fans
M106 P0 S0.3 I1 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
M106 P1 S1 I1 F500 H1 T45 ; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on; Custom settings are not configured
-
RE: Error in auto bed leveling
i used this code in the bed.g
G1 Z-200 S1 F100 ; move Z down until the switch triggers
G30 P0 ; probeYou should probe from a sufficient Z height, say 5mm. You should not have any homing moves (i.e. G1 moves with S parameter) in bed.g. Try this:
M561 ; clear any bed transform, otherwise homing may be at the wrong height
G28 ; home all
G1 Z5 ;
G30 P0 X15 Y15 Z-99999 ; probe
G30 P1 X160 Y15 Z-99999 ;
G30 P2 X160 Y160 Z-99999 ;
G30 P3 X15 Y160 Z-99999 S0 ; probe and calibrate with 4 parameters (as there is 4 points)
G1 Z10 F350 ;and i used mechanical limit swutch in z axis
the z axis in all points still down (the limit is triggered and do not stop down ) until the z postion bcome 0 and become up again -
RE: Error in auto bed leveling
can i ask question in g30 the z probe when it being sense it send 0v to stp bit in z limit switch
0v with G30 can stop the moving or not can explain this point please -
Z probe ????
how can i use z probe and connect it withe duet board but it does not stop when it is triggered
i used npn proximity sensor
-
RE: Error in auto bed leveling
1- G30 WORK BUT IT DO NOT STOP WHEN THE SWITCH IS TRIGGERED
2-THE LED IN THE Z PROB IS BEING ON
3- THE SWITCH IS correctly WHEN I AM DOING AUTO HOME IT WORKS CORRECTLY. -
Error in auto bed leveling
when i used this G30 command in auto bed leveling the z go down and don not stop when the switch trigeer /?????
what is the reason and how can i solve it
M561 ; clear any bed transform, otherwise homing may be at the wrong height
G90
G1 Z5 F350
G1 X-15 Y-15 F2000 ; move head
G1 Z-200 S1 F100 ; move Z down until the switch triggers
G30 P0 ; probe
G1 Z5 F350 ; rise head
G1 X-170 Y-15 Z2 F2000 ;
G1 Z-200 S1 F100 ; move Z down until the switch triggers
G30 P1 ;
G1 Z5 F350;
G1 X-170 Y-170 Z2 F2000 ;
G1 Z-200 S1 F100 ; move Z down until the switch triggers
G30 P2 ;
G1 Z5 F350;
G1 X-15 Y-170 Z2 F2000 ;
G1 Z-200 S1 F100 ; move Z down until the switch triggers
G30 P3 ; probe and calibrate with 4 parameters (as there is 4 points)G1 Z10 F350 ;