1

Topic: Da Vinci 1.0a Repetier Pre job clean not aligning.

So when I run any prints the stock head does its x / y clean. The issue is that the Y does not line up with the metal piece designed to catch / scrape any filament.

https://youtu.be/pRcX8GizgiQ

I assume I need to change my start codes in Slic3r? (Although it does do this when trying to print demo from sd card too)

Here is the custom Start G-code in Slic3r

I assume here is where I will need edits? (I copied and pasted from recommended settings video)

M140 S[first_layer_bed_temperature] ; Bed (no wait)
M106 S255 ; Start fan
G90 ; set absolute coordinates
G28 ; home all axis
M190 S[first_layer_bed_temperature] ; Bed (wait)
M104 S[first_layer_temperature] ; Extruder (no wait)
M109 S[first_layer_temperature] ; Extruder (wait)
M117 Start
M300 s1000 p400 ; Beep
M300 s1500 p400

2

Re: Da Vinci 1.0a Repetier Pre job clean not aligning.

to adjust the clean nozzle position to make it work with M100 command you need to change blade position in configuration.h
https://github.com/luc-github/Repetier- … .h#L80-L81
change x position to align

3 (edited by VampireV 2016-07-25 13:03:12)

Re: Da Vinci 1.0a Repetier Pre job clean not aligning.

Thank you.

So to figure it out I assume its as simple as jogging the X to the appropriate number (taking note)

Then replacing the bottom number with the correct figure?

#define CLEAN_X 20
#define CLEAN_Y HERE

and reflashing? or is there an easier way to update the configuration.h without doing such

4 (edited by luc 2016-07-25 13:20:50)

Re: Da Vinci 1.0a Repetier Pre job clean not aligning.

no other way -  I did not put in EEPROM as these numbers are not supposed to change, so they do no worth extra work

and they are distances values not positions

5 (edited by VampireV 2016-07-26 01:38:33)

Re: Da Vinci 1.0a Repetier Pre job clean not aligning.

Roger that re flashing it is smile

Trial and error for the number 2 up first..then 2 down etc..

EDIT:

Just tried multiple changes to the following and reflashed. They didn't make a difference at all.
The extruder remained in the same orientation.

I confirmed I have edited the correct section and made sure my config is set to point to that code.

IE

// ################## EDIT THESE SETTINGS MANUALLY ################

#define DAVINCI 1 // "0" if not DAVINCI, "1" For DAVINCI 1.0, "2" For DAVINCI 2.0 with 1 FAN, "3" For DAVINCI 2.0 with 2 FAN, 4 for AiO (WITH NO SCANNER SUPPORT)
#define MODEL  1//"0" for first generation (jumper JP1 to reset ) , "1" for new generation   (jumper J37 to reset)
#define REPURPOSE_FAN_TO_COOL_EXTRUSIONS 0 //Setting this to 1 will repurpose the main Extruder cooling fan to be controlled VIA M106/M107
                                                                                            //Warning: for DaVinci 1.0 need to add a permanent fan with power supply to cool extruder


  #if DAVINCI==1 //cleaner of Davinci 1.0 is not in same position of 2.0 neither AiO
// edit me
    #define CLEAN_X 20
    #define CLEAN_Y 25
//  Old settings  #define CLEAN_X 20   #define CLEAN_Y 20

any thoughts?