I dont know if the problem with the “blob” is solved but I post anyway.
Simplify3D is exelent software for me. But I had the same “blob” with my Wanhao 4 when I did my first print. It was Simplify3D that had those actions in the start-gcode. It is a feature that you can write your own g-code for specific actions, like the start off a print.
In Simplify3D:
When you add/edit your active process(your settings for the print) You klick the Scripts-tab
There you have tabs for g-code for the actions Starting, Layer change, Tool change and Ending
The Starting G-code will be added in the machine-program before the code generated by Simplify3D(the movements you see in the simulation after klicking “prepare to print”
The code there is for heating the nozzle and the buildplate and also for extruding a bit filament so the nozzle is ready and primed when it starts printing
You can add whatever code you like there to get the machine to do what you want in the start
If you can not make your own starting code, you can take mine if you want. I dont leave any garantuee on that it will work, it is makerware-code that I have changed a bit so the nozzle is wiping against the glass a bit in the end.
M136 ;(Enable build)
M73 P0 ;(Manually set build percentage. Valid P values are 0 to 100)
M140 S[bed0_temperature] T0 ;(Set Bed Temperature (Fast))
M104 S[extruder1_temperature] T0 ;(Set Extruder Temperature)
G162 X Y F2000 ;(Home positive XY axes maximum)
G161 Z F900 ;(Home negative Z axis minimum)
G92 X0 Y0 Z-5 A0 B0 ;(set Z to -5) (Define current position on axes)
G1 Z0.0 F900 ;(Move Z to ‘0’)
G161 Z F100 ;(Home negative Z axis minimum)
M132 X Y Z A B ;(Recall stored home offsets for XYZAB axis)
G92 X152 Y72 Z0 A0 B0 ;(Define current position on axes or ?Set current as home?)
G1 X105.400 Y-74.000 Z50.000 F3300 ;(Move to waiting position)
G130 X20 Y20 A20 B20 ;(Lower stepper Vrefs while heating)
M126 S[fan_speed_pwm]
M140 S[bed0_temperature] T0 ;(Set Bed Temperature (Fast))
M109 S[extruder0_temperature] T0 ;(Set Extruder Temperature and wait)
M104 S[extruder0_temperature] T0 ;(Set Extruder Temperature)
M134 T0 ;Stabilize bed temperature (Write PID values to EEPROM)
M133 T0 ;Stabilize right extruder temperature (Set PID I limit value)
G130 X127 Y127 A127 B127 ;(Set Stepper motor Vref to defaults)
;
G1 X105.400 Y-74.000 Z0.270 F9000 ;(Extruder Prime Dry Move)
G1 X-105 F1800 E15 ;(Extruder Prime Start) E = Extruded length in mm while moving
G92 A0 B0 ;(Reset after prime)
G1 Z0 F1000
G1 Y-74 F1000 E0.0
G92 E0 ;Set position E = Extrudes coordinate
G1 X-105 Y-70 F9000; Wipe of
G1 X-105 Y-70 Z1 F3600; Rise for travel
M135 T0; Extruder change
G1 X-105 Y-70 Z1 F1500 A-1.30000; Retract
G1 X-105 Y-70 Z1 F1380; Travel move
M73 P0;
Copy it and replace the code under your “Staritng G-goce” tab, but backup the original code first if something goes wrong