Welcome! Log In Create A New Profile

Advanced

Zonestar D810B from AliExpress

Posted by frankvdh 
Re: Zonestar D810B from AliExpress
May 29, 2017 03:06PM
Someone has designed an adaptor to attach a Bowden connector to the effector.
Re: Zonestar D810B from AliExpress
June 28, 2017 08:39PM
This morning I went out to my printer and found about 20m of filament wrapped around it. Not the usual? extruded spaghetti... in this case the Bowden connector at the extruder end had come loose. This connector is held in place by an M3 screw (originally this was a little grub screw, but I found I often needed to disconnect the Bowden tube from the extruder to start new filament, so for convenience I replaced it with an M3 socket cap screw) screwed into the aluminium of the extruder, clamping against the outside of the threaded part of the connector. In my case, the M3 thread in the extruder had stripped, so there was not enough friction holding the connector in place. I'll be drilling the hole out to 3.5mm and tapping it for M4.

Just wanted to let others know to check that screw hole.

I guess I should be glad that in this case the filament hasn't been wasted... I just have to wind the tangle back onto the spool.

Frank
Re: Zonestar D810B from AliExpress
August 05, 2017 07:57PM
A quick update;

I'm working towards putting a Diamond hotend on my printer, so I've designed a new spoolholder and extruder mount.

The spool holder & extruder mount screw to the 2040 extrusion at the top of the printer. This makes the spool holder and extruder much more accessible for changing filament, and shortens the Bowden tube quite a bit. The spool holder is positioned so it feeds as directly as possible into the extruder. The spool's weight isn't taken by the screws... it's still sitting on top of the acrylic plate on the top of the printer.

The extruder mount is designed for the stepper motor and extruder that I got with my printer. Other extruders (e.g. the ones that came with my Diamond) will probably need a redesign.

I also made some braces to hold the bed laterally -- I'd noticed some movement of the bed while printing. These screw to the bottom 2020 extrusion using an M3 screw and hammer-nut.

Incidentally, after weeks of failed prints, I found that one of my stepper mounts had broken (again). The motor could move about 2-3mm sad smiley

Frank
Re: Zonestar D810B from AliExpress
August 06, 2017 02:23AM
Like these design especially keeping the tilt of the spool. I had the same issue with 2 nema, fixed the issue by adding silent bloc for nema 17, reduced vibration et the overall noise in the same time.

These are cheap on Aliexpress, I've these ones : [m.fr.aliexpress.com]

You won't believe the change it makes.

Edited 1 time(s). Last edit at 08/06/2017 02:27AM by Hergonoway.
Re: Zonestar D810B from AliExpress
October 29, 2017 05:47PM
An update and lessons learned:

After yet another one failed, I've replaced the corners of my D810 with these metal parts. This resulted in a wonderful increase in rigidity, but some further pain.

Firstly, the metal parts cause the printer to be *slightly* larger than the original... a mm or two. I used the old attachment holes in two sides of the acrylic top to attach to the 2020s, and drilled a couple of new holes on one side of the acrylic top, so I didn't need any new parts. (The acrylic top will have to be replaced some time... it has some cracks in it).
Secondly, there's nowhere to mount the end-stops. No problem... I printed some new endstop mounts. As part of that, I also hot-glued some nuts and screws on the carriages to be adjustable end-stop triggers. This turned out to be a Really Good Idea (tm).

However, small diameter items printed OK, but anything larger caused extruder skips. So I turned up the extruder tension. And then things got worse. So, finally, I did some reading up, and found that the extra 2mm in tower spacing is NOT negligible. The firmware absolutely needs to be reconfigured for the different geometry.

I'd been putting off doing anything with the firmware, in case I bricked the ZRIB board, but now I'm forced into it. Generating & flashing new versions of the firmware turned out to be quite straightforward. You can use the latest version of the Arduino IDE (set up to use Mega 2560 and your comm port), and (almost) just use the latest release of Repetier. The latest release of Repetier doesn't include the pinout configuration of the ZRIB board, so you need to replace their Configuration.h and pins.h files with the ones supplied by Zonestar. (The development version of Repetier *does* include a setting for ZRIB, but there are some discrepancies between that and Zonestar's files that I'm still working through). Plug the USB cable into your computer, send the Repetier Sketch to the ZRIB, and it just works smiling smiley You'll see a slight difference in the UI, where Zonestar's "V2 ..." line on the display no longer shows.

Of course, nothing in my life is that simple.

Firstly, I decided that if I was going to fiddle with the calibration settings, I should do a proper calibration of my printer, the first ever. Reading up on the Net, it is crucial that the bed be perfectly square to all the towers. So, adjusting the bed (as I had been doing) to correct for bed level is *wrong*. The correct thing to do is to adjust the bed so that it is square to the towers. And then don't fiddle with it ever again. Adjust the "bed level" by adjusting the *end-stops*. I was very happy that I'd added the screws to my carriages. (If you don't have any kind of screw adjustment, I guess you could bend the switches themselves up and down to get a little adjustment).

A useful hint to avoid confusion; when doing this calibration stuff, set EEPROM_MODE to 0. This turns off the use of EEPROM, and you can be sure that whatever values you've set up in the firmware are what you are actually using.

Next step according to the Web is to calibrate the tower positions. I suggest doing this *after* the dome/bowl calibration, because if dome/bowl is too bad, you may not be able to print anything. This thing is convenient -- I just printed the small version. Because I'd been lazy and only drilled 2 holes on one side, my Y (front right) tower was out by about 4 degrees.

Then it came to correcting the dome/bowl error. Dome/bowl error means that, if you command a horizontal move from outside to centre, the hotend actually moves up or down. By doing a Z Calib, and then moving the hotend to various places, I found I had a dome error of about 2mm in 80mm. After a Z Calib at 0,0,0, a move of 80mm in any direction meant the nozzle also moved down 2mm, pressing into the bed and causing filament jams, and extruder skipping and grinding. Various web pages on Delta calibration tell you that you do this in Repetier by altering the PRINTER_RADIUS value in Configuration.h. I spent an entire afternoon and a lot of filament trying increasingly wider values between 75 and 200 with no apparent change. It turns out that the only use for PRINTER_RADIUS is to calculate ROD_RADIUS. It only does this if ROD_RADIUS is not already defined. And ROD_RADIUS *is* defined in Zonestar's Configuration.h. So, in Zonestar's Configuration.h, you need to change the value of ROD_RADIUS. When I finally figured that out and added 2mm to it, suddenly everything started working. smiling smiley

Finally, you need to correct for dimensional error. You do this by adjusting DELTA_DIAGONAL_ROD in Configuration.h, which fortunately works as everyone assumes.

I then did another repeat of each of these calibration steps, since adjusting one can screw up the others.
Sorry, only registered users may post in this forum.

Click here to login