Welcome! Log In Create A New Profile

Advanced

Newbie need help

Posted by tavietbao 
Newbie need help
March 16, 2016 10:28PM
Hello everyone!

My name is Viet, I had bought reprappro fisher delta. Right now my problem is that I can not connect to the web interface (I have set IP address in config.g), even when I plugged directly throught cable from my laptop to it? What is the solution to fix this problem? Pls help

Thanks for helping,
Viet
Re: Newbie need help
March 16, 2016 10:38PM
First check the lights on the Duets network port there should be an amber and green light and they should be flashing.

if you have removed the SD card put it back in and cycle the power

next check the IP address of in the config.G and check the IP address of your computers Ethernet port, IF you have your Ethernet port set to automatic change it to a fixed IP, within the same subnet as the Duet, IE if the Duet IP is set t0 192.168.1.14 then set your computer IP to 192.168.1.99, both with subnet masks of 255.255.255.0

now open a command prompt and try doing a ping, ie PING 192.168.1.14, if you dont get a ping whilst you are in the command window type IPCONFIG and check that your Ethernet settings have taken correctly.

if you still have problems then reply here with a copy of your config.G file and a screenshot of your computers Ethernet port settings



RepRapPro Mendel 3 Tricolour
RepRapPro Fisher
-Carbon Arms
-Easy adjust Carriage+effector
-axis stiffness mods
HE3D -600 delta
-Duet 0.8.5
-PanelDue
-DC42 Height probe
-RobotDigg metal components
Simplyfy3D
RS Design Spark CAD
Re: Newbie need help
March 16, 2016 10:54PM
Thanks for your reply
This is what I have:
1. Both of the light are on
2. I set the IP like the way you said, I ping it and destination host unreachable
Attachments:
open | download - Untitled.png (33.4 KB)
Re: Newbie need help
March 16, 2016 11:01PM
Take the semi colons out of the lines that set the IP address in the config.G anything after ; is considered to be a comment and doesnt have any effect

in fact the entire section of the Config.G looks messed up, it should read as follows with each code on a separate line...

M550 PRepRapProFisher
M554 P192.168.1.14
M553 P255.255.255

etc
maybe you should go back to the original config.G file and start again

Edited 2 time(s). Last edit at 03/16/2016 11:06PM by bgkdavis.



RepRapPro Mendel 3 Tricolour
RepRapPro Fisher
-Carbon Arms
-Easy adjust Carriage+effector
-axis stiffness mods
HE3D -600 delta
-Duet 0.8.5
-PanelDue
-DC42 Height probe
-RobotDigg metal components
Simplyfy3D
RS Design Spark CAD
Re: Newbie need help
March 16, 2016 11:17PM
So you mean move the semi colons from the IP address?
Re: Newbie need help
March 16, 2016 11:28PM
anything after ANY semi colon is a comment, Ideally each line starts with a M or G code, but looking at your config.G you have lost many of your carraige returns ge look at where it says

; GatewayM552 P0.0.0.0

it should read

;Gateway
M552 P0.0.0.0

if you post your actual config.G rather than a screenshot I can edit it for you

Edited 1 time(s). Last edit at 03/16/2016 11:29PM by bgkdavis.



RepRapPro Mendel 3 Tricolour
RepRapPro Fisher
-Carbon Arms
-Easy adjust Carriage+effector
-axis stiffness mods
HE3D -600 delta
-Duet 0.8.5
-PanelDue
-DC42 Height probe
-RobotDigg metal components
Simplyfy3D
RS Design Spark CAD
Re: Newbie need help
March 16, 2016 11:40PM
This is the default config.g file, so basically i changed it to 172.5.0.30 to match my router at my house
Attachments:
open | download - config.g~ (2.6 KB)
Re: Newbie need help
March 16, 2016 11:43PM
yup as I thought, that file is massively messed up, give me 5 minutes



RepRapPro Mendel 3 Tricolour
RepRapPro Fisher
-Carbon Arms
-Easy adjust Carriage+effector
-axis stiffness mods
HE3D -600 delta
-Duet 0.8.5
-PanelDue
-DC42 Height probe
-RobotDigg metal components
Simplyfy3D
RS Design Spark CAD
Re: Newbie need help
March 16, 2016 11:50PM
Just take your time, i just want to know why it didnt connect each other, because in the first time i downloaded full pack of reprappro firmware, it was already in there, make me 1 week research and troubleshooting from their wiki and still no work, so just take your time
Re: Newbie need help
March 16, 2016 11:56PM
OK. here is your new file, note how its constructed, each line starts with a G or M code and the comment is after it, you should be able to cut-n-paste this code into your config.G file ...Just spotted an error in the line M558 command

; Configuration file for RepRapPro Fisher - delta 3D printer

; Communication and general

M111 S0                          	; Debug off

M550 PRepRapProFisher		 	; Machine name (can be anything you like)

M551 Preprap                     	; Machine password (used for FTP)

M540 P0xBE:0xEF:0xDE:0xAD:0xFE:0x43 	; MAC Address


;*** Adjust the IP address and gateway in the following 2 lines to suit your network

M552 P172.5.0.30               		; IP address

;M554 P0.0.0.0               		; Gateway

M553 P255.255.255.0               	; Netmask


M555 P2                         	; Set output to look like Marlin

G21                                	; Work in millimetres

G90                                	; Send absolute coordinates...

M83                              	; ...but relative extruder moves

; Axis and motor configuration

M569 P0 S0				; Drive 0 goes forwards

M569 P1 S0				; Drive 1 goes forwards

M569 P2 S0				; Drive 2 goes forwards

M569 P3 S0				; Drive 3 goes forwards

M569 P4 S1				; Drive 4 goes forwards

M574 X2 Y2 Z2 S1			; set endstop configuration (all endstops at high end, active high)


;*** The homed height is deliberately set too high in the following - you will adjust it during calibration

M665 R81.0 L160.0 B75 H180		; set delta radius, diagonal rod length, printable radius and homed height

M666 X0.0 Y0.0 Z0.0  			; put your endstop adjustments here

M92 X87.489 Y87.489 Z87.489  		; Set axis steps/mm

M906 X800 Y800 Z800 E1200			; Set motor currents (mA)

M201 X4000 Y4000 Z4000 E4000		; Accelerations (mm/s^2)

M203 X15000 Y15000 Z15000 E3600		; Maximum speeds (mm/min)

M210 Z50                                ; Homing feedrate

M566 X1200 Y1200 Z1200 E1200		; Maximum instant speed changes mm/minute



; Thermistors

M305 P1 R4700                   	; Put your own H and/or L values here to set the first nozzle thermistor ADC correction


; Tool definitions

M563 P0 D0 H1                       	; Define tool 0

G10 P0 S200 R0                      	; Set tool 0 operating and standby temperatures

M301 H1 P10 I0.1 D100 W180
M92 E144.0    ; Set extruder steps per mm



;// Z probe and compensation definition

;*** If you have an IR zprobe instead of a switch, change P4 to P1 in the following M558 command

M558 P4 X0 Y0 Z0 H4			; Z probe is a switch and is not used for homing any axes

G31 X0 Y0 Z-0.1 P200			; Set the zprobe height and threshold (put your own values here)


;*** If you are using axis compensation, put the figures in the following command

M556 S78 X0 Y0 Z0                   	; Axis compensation here

Edited 1 time(s). Last edit at 03/17/2016 12:02AM by bgkdavis.



RepRapPro Mendel 3 Tricolour
RepRapPro Fisher
-Carbon Arms
-Easy adjust Carriage+effector
-axis stiffness mods
HE3D -600 delta
-Duet 0.8.5
-PanelDue
-DC42 Height probe
-RobotDigg metal components
Simplyfy3D
RS Design Spark CAD
Re: Newbie need help
March 17, 2016 12:04AM
Thanks but it is still not working, do I have to aware something, like is there some button like reset, or change the firmware??
Re: Newbie need help
March 17, 2016 12:23AM
Make sure you cycle power, after inserting the SD card, if you still have trouble just use the following lines and see if you can ping or connect then copy the rest of the file in


; Configuration file for RepRapPro Fisher - delta 3D printer

; Communication and general

M111 S0                          	; Debug off

M550 PRepRapProFisher		 	; Machine name (can be anything you like)

M551 Preprap                     	; Machine password (used for FTP)

M540 P0xBE:0xEF:0xDE:0xAD:0xFE:0x43 	; MAC Address


;*** Adjust the IP address and gateway in the following 2 lines to suit your network

M552 P172.5.0.30               		; IP address

M553 P255.255.255.0               	; Netmask



RepRapPro Mendel 3 Tricolour
RepRapPro Fisher
-Carbon Arms
-Easy adjust Carriage+effector
-axis stiffness mods
HE3D -600 delta
-Duet 0.8.5
-PanelDue
-DC42 Height probe
-RobotDigg metal components
Simplyfy3D
RS Design Spark CAD
Re: Newbie need help
March 17, 2016 12:32AM
Still not working, it appear only the reprappro's icon, and connection_timed out
Re: Newbie need help
March 17, 2016 12:50AM
OK, so, you can get a ping to the Duet now?



RepRapPro Mendel 3 Tricolour
RepRapPro Fisher
-Carbon Arms
-Easy adjust Carriage+effector
-axis stiffness mods
HE3D -600 delta
-Duet 0.8.5
-PanelDue
-DC42 Height probe
-RobotDigg metal components
Simplyfy3D
RS Design Spark CAD
Re: Newbie need help
March 17, 2016 01:00AM
Unreachable but no loss
Attachments:
open | download - Untitled.png (13.1 KB)
Re: Newbie need help
March 17, 2016 01:02AM
Hm, not sure why you could see the logo then, try going back to a direct connection using 192.168.1.14 for the duet and 192.168.1.99 for your computer, until you get the fisher commissioned leave the router out of it



RepRapPro Mendel 3 Tricolour
RepRapPro Fisher
-Carbon Arms
-Easy adjust Carriage+effector
-axis stiffness mods
HE3D -600 delta
-Duet 0.8.5
-PanelDue
-DC42 Height probe
-RobotDigg metal components
Simplyfy3D
RS Design Spark CAD
Re: Newbie need help
March 17, 2016 10:51PM
It doesnt work even when I try another computer
Re: Newbie need help
March 18, 2016 03:23AM
Hello bgkdavis , right now im trying to do it from the begining, havent changed anything , download only fisher_beta_020915.zip, unrar and put it into the SD card, now what should I do next?
Re: Newbie need help
March 18, 2016 09:31PM
Other than update your firmware I've already told you everything there is to know about network connection

check your network card is working
check your config.g
check your computers network settings
don't use a router until you get it to work

.....check your firmware, but unless your board has NO firmware or you have wiped it then its unlikely that an old firmware wouldn't have functioning network drivers

another thought.... if your computer has WiFi, then turn this off

presumably you have already checked you cable and computers network port is working



RepRapPro Mendel 3 Tricolour
RepRapPro Fisher
-Carbon Arms
-Easy adjust Carriage+effector
-axis stiffness mods
HE3D -600 delta
-Duet 0.8.5
-PanelDue
-DC42 Height probe
-RobotDigg metal components
Simplyfy3D
RS Design Spark CAD
Re: Newbie need help
March 21, 2016 03:34AM
if you want, i could give you my team viewer ID so that you will know where i did wrong?
Re: Newbie need help
March 21, 2016 03:43AM
It could mean that the SD card isn't being read at startup. The common commissioning instructions for the Ormerod, Huxley and Mendel printers on the RepRapPro site explain how to use Arduino serial monitor to connect to the USB port and check for this.



Large delta printer [miscsolutions.wordpress.com], E3D tool changer, Robotdigg SCARA printer, Crane Quad and Ormerod

Disclosure: I design Duet electronics and work on RepRapFirmware, [duet3d.com].
Sorry, only registered users may post in this forum.

Click here to login