How do I manually adjust for bed concave in RepRap Firmware? December 19, 2017 01:58AM |
Registered: 6 years ago Posts: 38 |
Re: How do I manually adjust for bed concave in RepRap Firmware? December 19, 2017 03:02AM |
Registered: 9 years ago Posts: 5,232 |
Re: How do I manually adjust for bed concave in RepRap Firmware? December 19, 2017 09:00AM |
Registered: 10 years ago Posts: 14,684 |
Re: How do I manually adjust for bed concave in RepRap Firmware? December 19, 2017 06:43PM |
Registered: 6 years ago Posts: 38 |
Re: How do I manually adjust for bed concave in RepRap Firmware? December 20, 2017 01:46AM |
Registered: 9 years ago Posts: 5,232 |
Re: How do I manually adjust for bed concave in RepRap Firmware? December 20, 2017 05:17AM |
Registered: 10 years ago Posts: 14,684 |
Quote
Lobotomy
Unfortunately, as I have a RADDS, I do not have access to the Web Controls at this time, and I think the 1.20 RC may not be compatible yet. However, I do plan on buying a couple of wifi modules, and playing around with them. As PanelDue uses the four pins I would need for PanelDue, is there a means of using both the Wifi Module and PanelDue at once? Is there a second set of tx and rx pins I can use for one or the other?
Quote
Lobotomy
Is there any way to get the prompts over PanelDue or Pronterface? I pressed the bed leveling button on PanelDue, but nothing came up in the console. I'll mess with Pronterface to see what I can get.
Quote
Lobotomy
I wonder how much of a stretch having an ethernet controller would be, if wifi is an available option? I'd much prefer that.
Quote
o_lampe
The configurator is a bit annoying, if you are not used to work with it. Especially when you only want to generate a new bed.g file.
(I haven't found out what a "json" profile is yet...
Re: How do I manually adjust for bed concave in RepRap Firmware? December 21, 2017 02:16AM |
Registered: 9 years ago Posts: 5,232 |
Re: How do I manually adjust for bed concave in RepRap Firmware? December 21, 2017 08:36PM |
Registered: 6 years ago Posts: 38 |
Re: How do I manually adjust for bed concave in RepRap Firmware? December 22, 2017 03:14AM |
Registered: 10 years ago Posts: 14,684 |
Quote
Lobotomy
Alright, my Z-probe is recognized, but it doesn't want to stop when I try to probe the bed. Am I missing something? What does the T parameter do in G31?
Re: How do I manually adjust for bed concave in RepRap Firmware? December 22, 2017 11:53PM |
Registered: 6 years ago Posts: 38 |
Re: How do I manually adjust for bed concave in RepRap Firmware? December 23, 2017 02:37AM |
Registered: 10 years ago Posts: 14,684 |
Quote
Lobotomy
Which gcode does the orange autoleveling button use in PanelDue? Or is it a macro?
Re: How do I manually adjust for bed concave in RepRap Firmware? December 23, 2017 11:20PM |
Registered: 6 years ago Posts: 38 |
; bed.g ; called to perform automatic delta calibration via G32 ; ; generated by RepRapFirmware Configuration Tool on Sun Dec 10 2017 02:25:28 GMT-0500 (Eastern Standard Time) ; Clear any bed transform M561 ; Home all towers G28 ; Probe the bed at 3 peripheral and 0 halfway points, and perform 3-factor auto compensation ; Before running this, you should have set up your Z-probe trigger height to suit your build, in the G31 command in config.g. G30 P0 X0 Y0 H0 Z-99999 G30 P1 X0 Y90 H0 Z-99999 G30 P2 X-78 Y-45 H0 Z-99999 G30 P3 X78 Y-45 H0 Z-99999 S3 ; Use S-1 for measurements only, without calculations. Use S4 for endstop heights and Z-height only. Use S6 for full 6 factors ; If your Z probe has significantly different trigger heights depending on XY position, adjust the H parameters in the G30 commands accordingly. The value of each H parameter should be (trigger height at that XY position) - (trigger height at centre of bed)
Re: How do I manually adjust for bed concave in RepRap Firmware? December 24, 2017 02:10AM |
Registered: 10 years ago Posts: 14,684 |
Re: How do I manually adjust for bed concave in RepRap Firmware? December 24, 2017 02:40AM |
Registered: 6 years ago Posts: 38 |