Jump to content

mrdindon

Member
  • Posts

    11
  • Joined

  • Last visited

Posts posted by mrdindon

  1. Does setting_version needs to be in the "quality" config files only ?

    Should the "version" variables from the definition, extruder, variants should also match "16" ?

     

    So I tried redoing it with "setting_version" set at "16" in the quality file with the exact same result. Cura opens and randomly apply a quality from the generic ones and doesn't show any other qualities from rather the generic or the custom ones... So close yet so far... I can't figure it....

     

     

    Definition:

    {
        "name": "seckit_skgo",
        "version": 2,
        "inherits": "fdmprinter",
        "metadata": {
            "visible": true,
            "author": "seckit",
            "manufacturer": "Seckit",
            "file_formats": "text/x-gcode",
            "machine_extruder_trains": {
                "0": "seckit_skgo2_extruder_0"
            },
    
            "has_materials": true,
            "has_variants": true,
            "has_machine_quality": true,
            "variants_name": "Nozzle Size",
    
            "preferred_variant_name": "0.4mm Nozzle",
            "preferred_quality_type": "standard",
            "preferred_material": "generic_pla"
            
        }
    }

    extruder:

    {
        "version": 2,
        "name": "Extruder 1",
        "inherits": "fdmextruder",
        "metadata": {
            "machine": "seckit_skgo",
            "position": "0"
        }
    
       }

    variant :

    [general]
    name = 0.4mm Nozzle
    version = 4
    definition = seckit_skgo
    
    [metadata]
    setting_version = 16
    type = variant
    hardware_type = nozzle
    
    [values]
    machine_nozzle_size = 0.4

    quality:

    [general]
    version = 4
    name = Low Quality
    definition = seckit_skgo
    
    [metadata]
    setting_version = 16
    type = quality
    quality_type = low
    material = generic_pla
    variant = 0.4mm Nozzle
    
    [values]
    machine_nozzle_size = 0.4

     

  2. So I got a SecKit SKGo2 printer. I've being playing with Cura definitions to create a custom profile for it and got something working at one point by copying data from the Creality Ender3 pro and modifying it from there. But I was never able to create custom machine qualities (Ie .: Extra Fine, Fine, Normal,Draft, etc..)

    So what I did is to strip down my config to the minimum and tried to add qualities from there, but without success.. Cura is not reading / adding the quality file I made even after deleting appdata/roaming/cura and appdata/localdata/cura. If anyone could help me that would be nice :)

     

    Please remember this is a stripped down version just to try to make de qualities to work

    definition file : SecKit_SKGo2.def.json

    {
        "name": "SecKit_SKGo2",
        "version": 2,
        "inherits": "fdmprinter",
        "metadata": {
            "visible": true,
            "author": "SecKit",
            "manufacturer": "SecKit",
    		"file_formats": "text/x-gcode",
            "platform": "SecKit_bed.stl",
    		"platform_offset": [-65, -32, -40],
            "has_machine_quality": true,
    		"machine_extruder_trains": {
                "0": "SecKit_SKGo2_extruder"
            }   
        }
    }

    extruder file : seckit_skgo2_extruder.def.json (directly copied from the ender3)

    {
        "version": 2,
        "name": "Extruder 1",
        "inherits": "fdmextruder",
        "metadata": {
            "machine": "SecKit_SKGo2",
            "position": "0"
        },
    
        "overrides": {
            "extruder_nr": { "default_value": 0 },
            "machine_nozzle_size": { "default_value": 0.4 },
            "material_diameter": { "default_value": 1.75 }
            
        }
    }

    and my quality file located under quality/SecKit_SKGo2/draft.inst.cfg

    [general]
    version = 2
    name = SK_DRAFT
    definition = SecKit_SKGo2
    
    [metadata]
    setting_version = 15
    type = quality
    quality_type = normal
    weight = 0
    material = generic_pla
    
    [values]
    layer_height = 2.2
    wall_thickness = 1.05
    top_bottom_thickness = 0.8
    infill_sparse_density = 20
    speed_print = 80
    speed_layer_0 = =round(speed_print * 30 / 50)
    speed_topbottom = =math.ceil(speed_print * 20 / 80)
    cool_min_layer_time = 5
    cool_min_speed = 10

     

     

    Running Cura that way and adding the printer, I only see a quality called "Fine" thats has nothing to do with the dedicated quality I created...

    And if I remove the ("has_machine_quality": true,), I get the defaults one located at the quality root folder.

     

    Then, I tried to duplicate the ABAX PRi3 profile but thats event worst because I just don't understand how the custom qualities are applied for that printer since there is no reference at all to "has_machine_quality" and it can still go read the specific qualities for that printer anyone just to confuse me a little bit more. . . 

     

    Any idea ?

     

    Also, nothing specifically wrong (at least from my perspective) in the cura log file

    2020-11-22 13:21:51,731 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin FileLogger
    2020-11-22 13:21:51,758 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin FirmwareUpdateChecker
    2020-11-22 13:21:51,778 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin FirmwareUpdater
    2020-11-22 13:21:51,796 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin GCodeGzReader
    2020-11-22 13:21:51,814 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin GCodeGzWriter
    2020-11-22 13:21:51,833 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin GCodeProfileReader
    2020-11-22 13:21:51,870 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin GCodeReader
    2020-11-22 13:21:51,889 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin GCodeWriter
    2020-11-22 13:21:51,921 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin ImageReader
    2020-11-22 13:21:51,939 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin LegacyProfileReader
    2020-11-22 13:21:51,959 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin LocalContainerProvider
    2020-11-22 13:21:51,985 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin LocalFileOutputDevice
    2020-11-22 13:21:52,004 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin MachineSettingsAction
    2020-11-22 13:21:52,023 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin ModelChecker
    2020-11-22 13:21:52,043 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin MonitorStage
    2020-11-22 13:21:52,064 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin PerObjectSettingsTool
    2020-11-22 13:21:52,086 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin PostProcessingPlugin
    2020-11-22 13:21:52,103 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin PrepareStage
    2020-11-22 13:21:52,119 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin PreviewStage
    2020-11-22 13:21:52,145 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin RemovableDriveOutputDevice
    2020-11-22 13:21:52,163 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin SentryLogger
    2020-11-22 13:21:52,207 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin SimulationView
    2020-11-22 13:21:52,230 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin SliceInfoPlugin
    2020-11-22 13:21:52,252 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin SolidView
    2020-11-22 13:21:52,274 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin SupportEraser
    2020-11-22 13:21:52,337 - WARNING - [MainThread] UM.Logger.logException [106]: Exception: Failed to load packages for Marketplace
    2020-11-22 13:21:52,343 - WARNING - [MainThread] UM.Logger.logException [110]: NoneType: None
    2020-11-22 13:21:52,349 - WARNING - [MainThread] UM.Logger.logException [106]: Exception: Failed to load packages for Marketplace
    2020-11-22 13:21:52,353 - WARNING - [MainThread] UM.Logger.logException [110]: NoneType: None
    2020-11-22 13:21:52,358 - WARNING - [MainThread] UM.Logger.logException [106]: Exception: Failed to load packages for Marketplace
    2020-11-22 13:21:52,365 - WARNING - [MainThread] UM.Logger.logException [110]: NoneType: None
    2020-11-22 13:21:52,370 - WARNING - [MainThread] UM.Logger.logException [106]: Exception: Failed to load packages for Marketplace
    2020-11-22 13:21:52,376 - WARNING - [MainThread] UM.Logger.logException [110]: NoneType: None
    2020-11-22 13:21:52,390 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin Toolbox
    2020-11-22 13:21:52,413 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin CameraTool
    2020-11-22 13:21:52,434 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin MirrorTool
    2020-11-22 13:21:52,462 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin RotateTool
    2020-11-22 13:21:52,491 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin ScaleTool
    2020-11-22 13:21:52,508 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin SelectionTool
    2020-11-22 13:21:52,535 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin TranslateTool
    2020-11-22 13:21:52,552 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin TrimeshReader
    2020-11-22 13:21:52,579 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin UFPReader
    2020-11-22 13:21:52,604 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin UFPWriter
    2020-11-22 13:21:52,623 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin UltimakerMachineActions
    2020-11-22 13:21:52,886 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin UM3NetworkPrinting
    2020-11-22 13:21:52,903 - INFO - [Thread-1] UpdateChecker.UpdateCheckerJob.run [40]: Checking for new version of cura
    2020-11-22 13:21:52,931 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin UpdateChecker
    2020-11-22 13:21:53,881 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin USBPrinting
    2020-11-22 13:21:53,954 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade21to22
    2020-11-22 13:21:53,979 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade22to24
    2020-11-22 13:21:54,003 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade25to26
    2020-11-22 13:21:54,023 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade26to27
    2020-11-22 13:21:54,045 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade27to30
    2020-11-22 13:21:54,064 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade30to31
    2020-11-22 13:21:54,083 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade32to33
    2020-11-22 13:21:54,103 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade33to34
    2020-11-22 13:21:54,120 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade34to35
    2020-11-22 13:21:54,137 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade35to40
    2020-11-22 13:21:54,161 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade40to41
    2020-11-22 13:21:54,179 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade41to42
    2020-11-22 13:21:54,197 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade42to43
    2020-11-22 13:21:54,216 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade43to44
    2020-11-22 13:21:54,238 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade44to45
    2020-11-22 13:21:54,254 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade45to46
    2020-11-22 13:21:54,275 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade460to462
    2020-11-22 13:21:54,294 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade462to47
    2020-11-22 13:21:54,310 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin VersionUpgrade47to48
    2020-11-22 13:21:54,328 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin SimpleView
    2020-11-22 13:21:54,360 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin X3DReader
    2020-11-22 13:21:54,397 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin XmlMaterialProfile
    2020-11-22 13:21:54,418 - INFO - [MainThread] UM.Logger.info [122]: Loaded plugin XRayView
    2020-11-22 13:21:54,424 - DEBUG - [MainThread] UM.PluginRegistry.loadPlugins [432]: Loading all plugins took 3.9088993072509766 seconds
    2020-11-22 13:21:54,449 - INFO - [MainThread] UM.VersionUpgradeManager.upgrade [163]: Looking for old configuration files to upgrade.
    2020-11-22 13:21:54,484 - INFO - [MainThread] UM.VersionUpgradeManager.upgrade [175]: Checking and performing updates took 0.03406047821044922
    2020-11-22 13:21:54,493 - INFO - [MainThread] UM.Qt.QtApplication.startSplashWindowPhase [226]: The preferences file cannot be found or it is corrupted, so we will use default values
    2020-11-22 13:21:54,500 - INFO - [MainThread] UM.Qt.QtApplication.startSplashWindowPhase [235]: The preferences file 'None' cannot be found, will use default values
    2020-11-22 13:21:54,954 - DEBUG - [MainThread] UM.Settings.ContainerRegistry.loadAllMetadata [361]: Loading metadata into container registry took 0.20829272270202637 seconds
    2020-11-22 13:21:54,965 - DEBUG - [MainThread] cura.Scene.CuraSceneController.setActiveBuildPlate [142]: Select build plate: 0
    2020-11-22 13:21:54,973 - INFO - [MainThread] cura.CuraApplication.run [782]: Initializing machine error checker
    2020-11-22 13:21:54,979 - INFO - [MainThread] cura.CuraApplication.run [787]: Initializing machine manager
    2020-11-22 13:21:54,987 - INFO - [MainThread] cura.CuraApplication.run [792]: Initializing container manager
    2020-11-22 13:21:55,587 - DEBUG - [MainThread] UM.Scene.Camera._preferencesChanged [255]: Changing perspective mode to perspective.
    2020-11-22 13:21:55,643 - DEBUG - [MainThread] UM.Qt.Bindings.Theme.load [158]: Loading theme file: C:\Program Files\Ultimaker Cura 4.8.0\resources\themes\cura-light\theme.json
    2020-11-22 13:21:56,203 - DEBUG - [MainThread] UM.Qt.Bindings.Theme.load [246]: Loaded theme C:\Program Files\Ultimaker Cura 4.8.0\resources\themes\cura-light
    2020-11-22 13:21:57,939 - DEBUG - [MainThread] PostProcessingPlugin.PostProcessingPlugin._createView [340]: Creating post processing plugin view.
    2020-11-22 13:21:57,956 - DEBUG - [MainThread] PostProcessingPlugin.PostProcessingPlugin.loadScripts [202]: Begin loading of script: ChangeAtZ
    2020-11-22 13:21:57,960 - DEBUG - [MainThread] PostProcessingPlugin.PostProcessingPlugin.loadScripts [202]: Begin loading of script: ColorMix
    2020-11-22 13:21:57,964 - DEBUG - [MainThread] PostProcessingPlugin.PostProcessingPlugin.loadScripts [202]: Begin loading of script: DisplayFilenameAndLayerOnLCD
    2020-11-22 13:21:57,968 - DEBUG - [MainThread] PostProcessingPlugin.PostProcessingPlugin.loadScripts [202]: Begin loading of script: DisplayProgressOnLCD
    2020-11-22 13:21:57,970 - DEBUG - [MainThread] PostProcessingPlugin.PostProcessingPlugin.loadScripts [202]: Begin loading of script: FilamentChange
    2020-11-22 13:21:57,972 - DEBUG - [MainThread] PostProcessingPlugin.PostProcessingPlugin.loadScripts [202]: Begin loading of script: InsertAtLayerChange
    2020-11-22 13:21:57,979 - DEBUG - [MainThread] PostProcessingPlugin.PostProcessingPlugin.loadScripts [202]: Begin loading of script: PauseAtHeight
    2020-11-22 13:21:57,983 - DEBUG - [MainThread] PostProcessingPlugin.PostProcessingPlugin.loadScripts [202]: Begin loading of script: RetractContinue
    2020-11-22 13:21:57,985 - DEBUG - [MainThread] PostProcessingPlugin.PostProcessingPlugin.loadScripts [202]: Begin loading of script: SearchAndReplace
    2020-11-22 13:21:57,994 - DEBUG - [MainThread] PostProcessingPlugin.PostProcessingPlugin.loadScripts [202]: Begin loading of script: Stretch
    2020-11-22 13:21:57,998 - DEBUG - [MainThread] PostProcessingPlugin.PostProcessingPlugin.loadScripts [202]: Begin loading of script: TimeLapse
    2020-11-22 13:21:58,000 - DEBUG - [MainThread] PostProcessingPlugin.PostProcessingPlugin.loadScripts [202]: Begin loading of script: UsePreviousProbeMeasurements
    2020-11-22 13:21:58,399 - DEBUG - [MainThread] PostProcessingPlugin.PostProcessingPlugin._createView [350]: Post processing view created.
    2020-11-22 13:21:58,615 - DEBUG - [MainThread] cura.OAuth2.AuthorizationService._parseJWT [100]: There was no auth data or access token
    2020-11-22 13:21:58,622 - DEBUG - [MainThread] cura.OAuth2.AuthorizationService._parseJWT [100]: There was no auth data or access token
    2020-11-22 13:21:58,629 - DEBUG - [MainThread] cura.OAuth2.AuthorizationService._parseJWT [100]: There was no auth data or access token
    2020-11-22 13:21:59,605 - DEBUG - [MainThread] UM.Controller.setActiveStage [180]: Setting active stage to PrepareStage
    2020-11-22 13:21:59,775 - DEBUG - [MainThread] cura.Machines.Models.NozzleModel._update [28]: Updating NozzleModel.
    2020-11-22 13:21:59,785 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [406]: file:///C:/Program Files/Ultimaker Cura 4.8.0/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:143: TypeError: Cannot read property 'hasRemoteConnection' of null
    2020-11-22 13:21:59,838 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [406]: file:///C:/Program Files/Ultimaker Cura 4.8.0/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:234: TypeError: Cannot read property 'activeStack' of undefined
    2020-11-22 13:21:59,844 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [406]: file:///C:/Program Files/Ultimaker Cura 4.8.0/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:233: TypeError: Cannot read property 'isEnabled' of null
    2020-11-22 13:21:59,928 - DEBUG - [MainThread] UM.Controller.setActiveView [108]: Setting active view to SolidView
    2020-11-22 13:21:59,982 - DEBUG - [MainThread] ModelChecker.ModelChecker._createView [117]: Creating model checker view.
    2020-11-22 13:21:59,997 - DEBUG - [MainThread] ModelChecker.ModelChecker._createView [126]: Model checker view created.
    2020-11-22 13:21:59,998 - DEBUG - [MainThread] SliceInfoPlugin.SliceInfo._createDialog [76]: Creating dialog [MoreInfoWindow.qml]
    2020-11-22 13:22:00,100 - DEBUG - [MainThread] Toolbox.src.Toolbox._makeRequestByType [544]: Requesting [updates] metadata from server.
    2020-11-22 13:22:00,107 - DEBUG - [MainThread] cura.OAuth2.AuthorizationService.getAccessToken [124]: No auth data to retrieve the access_token from
    2020-11-22 13:22:00,113 - WARNING - [MainThread] UM.Logger.warning [128]: Cannot add authorization to Cloud Api request
    2020-11-22 13:22:00,129 - DEBUG - [MainThread] cura.CuraApplication.run [833]: Booting Cura took 10.57846736907959 seconds
    2020-11-22 13:22:00,129 - DEBUG - [Thread-2] cura.Machines.ContainerTree.run [174]: Started background loading of MachineNodes
    2020-11-22 13:22:00,137 - DEBUG - [Thread-2] cura.Machines.ContainerTree.run [185]: All MachineNode loading completed
    2020-11-22 13:22:01,354 - DEBUG - [MainThread] cura.Machines.Models.CustomQualityProfilesDropDownMenuModel._update [33]: Updating CustomQualityProfilesDropDownMenuModel.
    2020-11-22 13:22:01,361 - DEBUG - [MainThread] cura.Machines.Models.CustomQualityProfilesDropDownMenuModel._update [38]: No active GlobalStack, set CustomQualityProfilesDropDownMenuModel as empty.
    2020-11-22 13:22:01,367 - DEBUG - [MainThread] cura.Machines.Models.QualityProfilesDropDownMenuModel._update [62]: Updating QualityProfilesDropDownMenuModel.
    2020-11-22 13:22:01,371 - DEBUG - [MainThread] cura.Machines.Models.QualityProfilesDropDownMenuModel._update [74]: No active GlobalStack, set quality profile model as empty.
    2020-11-22 13:22:01,893 - DEBUG - [MainThread] UM.Qt.QtRenderer._initialize [210]: Support for Vertex Array Objects: True
    2020-11-22 13:22:01,910 - DEBUG - [MainThread] UM.View.GL.OpenGL.__init__ [112]: Initialized OpenGL subsystems.
    2020-11-22 13:22:01,917 - DEBUG - [MainThread] UM.View.GL.OpenGL.__init__ [113]: OpenGL Version:  4.1.0 - Build 27.20.100.8681
    2020-11-22 13:22:01,924 - DEBUG - [MainThread] UM.View.GL.OpenGL.__init__ [114]: OpenGL Vendor:   Intel
    2020-11-22 13:22:01,930 - DEBUG - [MainThread] UM.View.GL.OpenGL.__init__ [115]: OpenGL Renderer: Intel(R) UHD Graphics 605
    2020-11-22 13:22:01,935 - DEBUG - [MainThread] UM.View.GL.OpenGL.__init__ [116]: GLSL Version:    4.10.0
    2020-11-22 13:22:01,942 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [58]: Loading shader file [C:\Program Files\Ultimaker Cura 4.8.0\resources\shaders\default.shader]...
    2020-11-22 13:22:01,972 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [58]: Loading shader file [C:\Program Files\Ultimaker Cura 4.8.0\resources\shaders\selection.shader]...
    2020-11-22 13:22:01,997 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [58]: Loading shader file [C:\Program Files\Ultimaker Cura 4.8.0\resources\shaders\select_face.shader]...
    2020-11-22 13:22:02,022 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [58]: Loading shader file [C:\Program Files\Ultimaker Cura 4.8.0\resources\shaders\default.shader]...
    2020-11-22 13:22:02,048 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [58]: Loading shader file [C:\Program Files\Ultimaker Cura 4.8.0\resources\shaders\composite.shader]...
    2020-11-22 13:22:02,090 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [58]: Loading shader file [C:\Program Files\Ultimaker Cura 4.8.0\resources\shaders\overhang.shader]...
    2020-11-22 13:22:02,131 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [58]: Loading shader file [C:\Program Files\Ultimaker Cura 4.8.0\resources\shaders\striped.shader]...
    2020-11-22 13:22:02,169 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [58]: Loading shader file [C:\Program Files\Ultimaker Cura 4.8.0\resources\shaders\transparent_object.shader]...
    2020-11-22 13:22:02,199 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [58]: Loading shader file [C:\Program Files\Ultimaker Cura 4.8.0\resources\shaders\striped.shader]...
    2020-11-22 13:22:02,239 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [58]: Loading shader file [C:\Program Files\Ultimaker Cura 4.8.0\resources\shaders\xray.shader]...
    2020-11-22 13:22:02,262 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [58]: Loading shader file [C:\Program Files\Ultimaker Cura 4.8.0\resources\shaders\xray_composite.shader]...
    2020-11-22 13:22:02,317 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [58]: Loading shader file [C:\Program Files\Ultimaker Cura 4.8.0\resources\shaders\platform.shader]...
    2020-11-22 13:22:02,352 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [58]: Loading shader file [C:\Program Files\Ultimaker Cura 4.8.0\resources\shaders\xray.shader]...
    2020-11-22 13:22:06,694 - INFO - [MainThread] cura.CuraApplication.writeToLog [596]: User accepted the User-Agreement.
    2020-11-22 13:22:14,859 - INFO - [MainThread] cura.Settings.MachineManager.addMachine [397]: Trying to add a machine with the definition id [SecKit_SKGo2]
    2020-11-22 13:22:15,427 - DEBUG - [MainThread] cura.Machines.ContainerTree.__getitem__ [120]: Adding container tree for SecKit_SKGo2 took 0.02141261100769043 seconds.
    2020-11-22 13:22:15,547 - WARNING - [MainThread] cura.Settings.CuraStackBuilder.createExtruderStackWithDefaultSetup [115]: Could not find preferred nozzle . Falling back to empty.
    2020-11-22 13:22:15,559 - WARNING - [MainThread] cura.Machines.MaterialNode.preferredQuality [57]: Could not find preferred quality type normal for material generic_pla_175 and variant empty_variant, falling back to empty_quality.
    2020-11-22 13:22:15,573 - INFO - [MainThread] cura.Settings.GlobalStack.addExtruder [194]: Extruder[SecKit_SKGo2_extruder #2] added to [SecKit_SKGo2 #2] at position [0]
    2020-11-22 13:22:15,580 - INFO - [MainThread] cura.UI.MachineActionManager.addDefaultMachineActions [74]: Default machine actions added for machine definition [SecKit_SKGo2]
    2020-11-22 13:22:15,588 - WARNING - [MainThread] cura.Settings.GlobalStack.addExtruder [189]: Extruder [SecKit_SKGo2_extruder #2] has already been added to this stack [SecKit_SKGo2 #2]
    2020-11-22 13:22:15,597 - INFO - [MainThread] UM.Logger.info [122]: Initializing Active Machine...
    2020-11-22 13:22:15,634 - DEBUG - [MainThread] cura.Machines.Models.NozzleModel._update [28]: Updating NozzleModel.
    2020-11-22 13:22:15,663 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [406]: file:///C:/Program Files/Ultimaker Cura 4.8.0/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:233: TypeError: Cannot read property 'isEnabled' of null
    2020-11-22 13:22:15,675 - DEBUG - [MainThread] cura.Machines.Models.NozzleModel._update [28]: Updating NozzleModel.
    2020-11-22 13:22:15,681 - DEBUG - [MainThread] cura.Machines.Models.NozzleModel._update [28]: Updating NozzleModel.
    2020-11-22 13:22:15,689 - INFO - [Thread-3] STLReader.STLReader.load_file [52]: Using NumPy-STL to load STL data.
    2020-11-22 13:22:15,711 - DEBUG - [MainThread] cura.UI.WelcomePagesModel.goToNextPage [134]: Page [machine_actions] should not be displayed, look for the next page.
    2020-11-22 13:22:15,727 - INFO - [MainThread] FirmwareUpdateChecker.FirmwareUpdateChecker.checkFirmwareVersion [79]: No machine with name SecKit_SKGo2 in list of firmware to check.
    2020-11-22 13:22:15,746 - DEBUG - [Thread-3] UM.Mesh.MeshData.calculateNormalsFromVertices [556]: Calculating normals took 0.021430253982543945 seconds
    2020-11-22 13:22:15,753 - DEBUG - [Thread-3] STLReader.STLReader._read [104]: Loaded a mesh with 270042 vertices
    2020-11-22 13:22:15,798 - DEBUG - [MainThread] cura.Machines.MachineErrorChecker._rescheduleCheck [155]: New error check scheduled.
    2020-11-22 13:22:15,993 - DEBUG - [MainThread] cura.Machines.Models.QualityProfilesDropDownMenuModel._update [62]: Updating QualityProfilesDropDownMenuModel.
    2020-11-22 13:22:16,004 - DEBUG - [MainThread] cura.Machines.Models.CustomQualityProfilesDropDownMenuModel._update [33]: Updating CustomQualityProfilesDropDownMenuModel.
    2020-11-22 13:22:16,061 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [58]: Loading shader file [C:\Program Files\Ultimaker Cura 4.8.0\resources\shaders\default.shader]...
    2020-11-22 13:22:16,086 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [58]: Loading shader file [C:\Program Files\Ultimaker Cura 4.8.0\resources\shaders\grid.shader]...
    2020-11-22 13:22:16,217 - DEBUG - [MainThread] cura.Machines.Models.QualityProfilesDropDownMenuModel._update [62]: Updating QualityProfilesDropDownMenuModel.
    2020-11-22 13:22:16,231 - DEBUG - [MainThread] cura.Machines.Models.CustomQualityProfilesDropDownMenuModel._update [33]: Updating CustomQualityProfilesDropDownMenuModel.
    2020-11-22 13:22:17,064 - INFO - [MainThread] cura.Machines.MachineErrorChecker._setResult [214]: Error check finished, result = False, time = 1.3s
    2020-11-22 13:22:29,976 - DEBUG - [MainThread] cura.AutoSave._onTimeout [59]: Autosaving preferences, instances and profiles

     

     

     

     

    ss1.jpg

  3. Trying to do a profile for my new printer I copied everything from another one and customized it but the only thing I can't figure is how to center the platform mesh... I tried both with stl and 3mf.. 

    Bed is 300x300 so I make the stl 300x300 .. 

    Any idea ? (I know it look ugly but I'm just trying to understand at this point... artwork will come after..

    2020-10-11 14_57_31-Ultimaker Cura.png

  4. Dunno if anyone can help me but here is my problem:
    Flat printed surfaces show nozzle lines but only starting at layer 2. Walls top are ok, Layer 1 also.
    If I lower my bed, I start having adhesion issues.
    Extruder e-steps are calibrated as shown in picture (100steps = 10cm)

    IMG_1079.thumb.jpg.710b4f15689d1ea1a07fde7d8006533a.jpg

     

    The only way I am able to have flat surfaces without any nozzle lines is by lowering the Flow in Cura down to below 70.
    I was wondering if this is normal or if there was any other settings I should look for ...

    IMG_1082.thumb.jpg.8651df0707b202645509d79b4e008a2d.jpg

    Using Cura 4.6.1 with an Ender3 Pro, PLA 1.75. (See print details below)

     

     

    GCode header :

    ;FLAVOR:Marlin
    ;TIME:911

     0.195721m
    ;Layer height: 0.08
    ;MINX:102.7
    ;MINY:102.7
    ;MINZ:0.2
    ;MAXX:132.3
    ;MAXY:132.3
    ;MAXZ:0.52
    ;Generated with Cura_SteamEngine 4.6.1
    M140 S60
    M105
    M190 S60
    M104 S190
    M105
    M109 S190
    M82 ;absolute extrusion mode
    ; Ender 3 Custom Start G-code
    G92 E0 ; Reset Extruder
    G28 ; Home all axes
    G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed
    G1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position
    G1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line
    G1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little
    G1 X0.4 Y30 Z0.3 F1500.0 E30 ; Draw the second line
    G92 E0 ; Reset Extruder
    G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed
    G1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish
    G92 E0
    G92 E0
    G1 F2700 E-5
    ;LAYER_COUNT:5

     

     

    ;****Current settings used*****

    ;Machine
    ; Machine Type: Creality Ender-3
    ; Show Machine Variants: False
    ; Material GUID: 0ff92885-617b-4144-a03c-9989872454bc
    ; Wait for Build Plate Heatup: True
    ; Wait for Nozzle Heatup: True
    ; Include Material Temperatures: True
    ; Include Build Plate Temperature: True
    ; Machine Width: 235
    ; Machine Depth: 235
    ; Build Plate Shape: rectangular
    ; Build Plate Material: glass
    ; Machine Height: 250
    ; Has Heated Build Plate: True
    ; Is Center Origin: False
    ; Number of Extruders: 1
    ; Number of Extruders that are enabled: 1
    ; Outer nozzle diameter: 1
    ; Nozzle length: 3
    ; Nozzle angle: 45
    ; Heat zone length: 16
    ; Filament Park Distance: {machine_filament_park_distance}
    ; Enable Nozzle Temperature Control: True
    ; Heat up speed: 2.0
    ; Cool down speed: 2.0
    ; Minimal Time Standby Temperature: 50.0
    ; G-code flavour: RepRap (Marlin/Sprinter)
    ; Firmware Retraction: False
    ; Disallowed areas: [[[-117.5, 117.5], [-117.5, 108], [117.5, 108], [117.5, 117.5]], [[-117.5, -108], [-117.5, -117.5], [117.5, -117.5], [117.5, -108]]]
    ; Nozzle Disallowed Areas: []
    ; Machine head polygon: {machine_head_polygon}
    ; Machine head & Fan polygon: [[-26, 34], [-26, -32], [32, -32], [32, 34]]
    ; Gantry height: 25
    ; Nozzle ID: unknown
    ; Nozzle Diameter: 0.4
    ; Offset With Extruder: True
    ; Extruder Prime Z Position: 0
    ; Absolute Extruder Prime Position: False
    ; Maximum Speed X: 500
    ; Maximum Speed Y: 500
    ; Maximum Speed Z: 10
    ; Maximum Feedrate: 50
    ; Maximum Acceleration X: 500
    ; Maximum Acceleration Y: 500
    ; Maximum Acceleration Z: 100
    ; Maximum Filament Acceleration: 5000
    ; Default Acceleration: 500
    ; Default X-Y Jerk: 10
    ; Default Z Jerk: 0.4
    ; Default Filament Jerk: 5
    ; Steps per Millimeter (X): 50
    ; Steps per Millimeter (Y): 50
    ; Steps per Millimeter (Z): 50
    ; Steps per Millimeter (E): 1600
    ; X Endstop in Positive Direction: False
    ; Y Endstop in Positive Direction: False
    ; Z Endstop in Positive Direction: True
    ; Minimum Feedrate: 0.0
    ; Feeder Wheel Diameter: 10.0

    ;Quality
    ; Layer Height: 0.08
    ; Initial Layer Height: 0.2
    ; Line Width: 0.4
    ;  Wall Line Width: 0.4
    ;   Outer Wall Line Width: 0.4
    ;   Inner Wall(s) Line Width: 0.4
    ;  Top/Bottom Line Width: 0.4
    ;  Infill Line Width: 0.4
    ;  Skirt/Brim Line Width: 0.2
    ;  Support Line Width: 0.4
    ;  Support Interface Line Width: 0.4
    ;   Support Roof Line Width: 0.4
    ;   Support Floor Line Width: 0.4
    ;  Prime Tower Line Width: 0.4
    ;  Initial Layer Line Width: 150

    ;Shell
    ; Wall Extruder: -1
    ;  Outer Wall Extruder: -1
    ;  Inner Wall Extruder: -1
    ; Wall Thickness: 1.2000000000000002
    ;  Wall Line Count: 3
    ; Outer Wall Wipe Distance: 0.0
    ; Top Surface Skin Extruder: -1
    ; Top Surface Skin Layers: 0
    ; Top/Bottom Extruder: -1
    ; Top/Bottom Thickness: 0.6799999999999999
    ;  Top Thickness: 0.6799999999999999
    ;   Top Layers: 9
    ;  Bottom Thickness: 0.6799999999999999
    ;   Bottom Layers: 9
    ; Top/Bottom Pattern: lines
    ; Bottom Pattern Initial Layer: lines
    ; Top/Bottom Line Directions: [ ]
    ; Outer Wall Inset: 0
    ; Optimize Wall Printing Order: True
    ; Outer Before Inner Walls: False
    ; Alternate Extra Wall: False
    ; Compensate Wall Overlaps: True
    ;  Compensate Outer Wall Overlaps: False
    ;  Compensate Inner Wall Overlaps: True
    ; Fill Gaps Between Walls: everywhere
    ; Filter Out Tiny Gaps: False
    ; Print Thin Walls: False
    ; Horizontal Expansion: 0
    ; Initial Layer Horizontal Expansion: 0
    ; Z Seam Alignment: back
    ; Z Seam X: 117.5
    ; Z Seam Y: 235
    ; Seam Corner Preference: z_seam_corner_weighted
    ; Z Seam Relative: False
    ; Ignore Small Z Gaps: False
    ; Extra Skin Wall Count: 1
    ; Enable Ironing: False
    ; Iron Only Highest Layer: False
    ; Ironing Pattern: zigzag
    ; Ironing Line Spacing: 0.1
    ; Ironing Flow: 10.0
    ; Ironing Inset: 0.2
    ; Ironing Speed: 13.333333333333334
    ; Ironing Acceleration: 500
    ; Ironing Jerk: 8

    ;Infill
    ; Infill Extruder: -1
    ; Infill Density: 20
    ;  Infill Line Distance: 6.0
    ; Infill Pattern: cubic
    ; Connect Infill Lines: False
    ; Infill Line Directions: [ ]
    ; Infill X Offset: 0
    ; Infill Y Offset: 0
    ; Cubic Subdivision Shell: 0.4
    ; Infill Overlap Percentage: 30.0
    ;  Infill Overlap: 0.12
    ; Skin Overlap Percentage: 10.0
    ;  Skin Overlap: 0.04
    ; Infill Wipe Distance: 0.0
    ; Infill Layer Thickness: 0.08
    ; Gradual Infill Steps: 0
    ; Gradual Infill Step Height: 1.5
    ; Infill Before Walls: False
    ; Minimum Infill Area: 0
    ; Skin Removal Width: 1.2000000000000002
    ;  Top Skin Removal Width: 1.2000000000000002
    ;  Bottom Skin Removal Width: 1.2000000000000002
    ; Skin Expand Distance: 1.2000000000000002
    ;  Top Skin Expand Distance: 1.2000000000000002
    ;  Bottom Skin Expand Distance: 1.2000000000000002
    ; Maximum Skin Angle for Expansion: 90
    ;  Minimum Skin Width for Expansion: 4.408728476930471e-17

    ;Material
    ; Default Printing Temperature: 200
    ; Printing Temperature: 190
    ; Printing Temperature Initial Layer: 190
    ; Initial Printing Temperature: 190
    ; Final Printing Temperature: 190
    ; Extrusion Cool Down Speed Modifier: 0.7
    ; Default Build Plate Temperature: 50
    ; Build Plate Temperature: 50
    ; Build Plate Temperature Initial Layer: 60
    ; Diameter: 1.75
    ; Adhesion Tendency: 0
    ; Surface Energy: 100
    ; Shrinkage Ratio: 0
    ; Flow: 100
    ; Initial Layer Flow: 100
    ; Enable Retraction: True
    ; Retract at Layer Change: False
    ; Retraction Distance: 5
    ; Retraction Speed: 45
    ;  Retraction Retract Speed: 45
    ;  Retraction Prime Speed: 45
    ; Retraction Extra Prime Amount: 0
    ; Retraction Minimum Travel: 1.5
    ; Maximum Retraction Count: 100
    ; Minimum Extrusion Distance Window: 10
    ; Standby Temperature: 180
    ; Nozzle Switch Retraction Distance: 16
    ; Nozzle Switch Retraction Speed: 20
    ;  Nozzle Switch Retract Speed: 20
    ;  Nozzle Switch Prime Speed: 20

    ;Speed
    ; Print Speed: 40.0
    ;  Infill Speed: 40.0
    ;  Wall Speed: 20.0
    ;   Outer Wall Speed: 20.0
    ;   Inner Wall Speed: 20.0
    ;  Top Surface Skin Speed: 20.0
    ;  Top/Bottom Speed: 20.0
    ;  Support Speed: 20.0
    ;   Support Infill Speed: 20.0
    ;   Support Interface Speed: 20.0
    ;    Support Roof Speed: 20.0
    ;    Support Floor Speed: 20.0
    ;  Prime Tower Speed: 20.0
    ; Travel Speed: 100.0
    ; Initial Layer Speed: 5.0
    ;  Initial Layer Print Speed: 5.0
    ;  Initial Layer Travel Speed: 5
    ; Skirt/Brim Speed: 5.0
    ; Maximum Z Speed: {max_feedrate_z_override}
    ; Number of Slower Layers: 2
    ; Equalize Filament Flow: False
    ; Maximum Speed for Flow Equalization: 150
    ; Enable Acceleration Control: False
    ; Print Acceleration: 500
    ;  Infill Acceleration: 500
    ;  Wall Acceleration: 500
    ;   Outer Wall Acceleration: 500
    ;   Inner Wall Acceleration: 500
    ;  Top Surface Skin Acceleration: 500
    ;  Top/Bottom Acceleration: 500
    ;  Support Acceleration: 500
    ;   Support Infill Acceleration: 500
    ;   Support Interface Acceleration: 500
    ;    Support Roof Acceleration: 500
    ;    Support Floor Acceleration: 500
    ;  Prime Tower Acceleration: 500
    ; Travel Acceleration: 500
    ; Initial Layer Acceleration: 500
    ;  Initial Layer Print Acceleration: 500
    ;  Initial Layer Travel Acceleration: 500
    ; Skirt/Brim Acceleration: 500
    ; Enable Jerk Control: False
    ; Print Jerk: 8
    ;  Infill Jerk: 8
    ;  Wall Jerk: 8
    ;   Outer Wall Jerk: 8
    ;   Inner Wall Jerk: 8
    ;  Top Surface Skin Jerk: 8
    ;  Top/Bottom Jerk: 8
    ;  Support Jerk: 8
    ;   Support Infill Jerk: 8
    ;   Support Interface Jerk: 8
    ;    Support Roof Jerk: 8
    ;    Support Floor Jerk: 8
    ;  Prime Tower Jerk: 8
    ; Travel Jerk: 8
    ; Initial Layer Jerk: 8
    ;  Initial Layer Print Jerk: 8
    ;  Initial Layer Travel Jerk: 8
    ; Skirt/Brim Jerk: 8

    ;Travel
    ; Combing Mode: noskin
    ; Retract Before Outer Wall: True
    ; Avoid Printed Parts When Traveling: True
    ; Travel Avoid Distance: 0.625
    ; Start Layers with the Same Part: {start_layers_at_same_position}
    ; Layer Start X: 0.0
    ; Layer Start Y: 0.0
    ; Z Hop When Retracted: False
    ; Z Hop Only Over Printed Parts: False
    ; Z Hop Height: 0.2
    ; Z Hop After Extruder Switch: True

    ;Cooling
    ; Enable Print Cooling: True
    ; Fan Speed: 100
    ;  Regular Fan Speed: 100
    ;  Maximum Fan Speed: 100
    ; Regular/Maximum Fan Speed Threshold: 10
    ; Initial Fan Speed: 0
    ; Regular Fan Speed at Height: 0.36
    ;  Regular Fan Speed at Layer: 3
    ; Minimum Layer Time: 10
    ; Minimum Speed: 10
    ; Lift Head: False

    ;Support
    ; Generate Support: False
    ; Support Extruder: 0
    ;  Support Infill Extruder: 0
    ;  First Layer Support Extruder: 0
    ;  Support Interface Extruder: 0
    ;   Support Roof Extruder: 0
    ;   Support Floor Extruder: 0
    ; Support Placement: everywhere
    ; Support Overhang Angle: 68
    ; Support Pattern: zigzag
    ; Connect Support Lines: False
    ; Connect Support ZigZags: True
    ; Support Density: 20
    ;  Support Line Distance: 2.0
    ; Support Z Distance: 0.16
    ;  Support Top Distance: 0.16
    ;  Support Bottom Distance: 0.16
    ; Support X/Y Distance: 0.8
    ; Support Distance Priority: xy_overrides_z
    ; Minimum Support X/Y Distance: 0.4
    ; Support Stair Step Height: 0.3
    ; Support Stair Step Maximum Width: 5.0
    ; Support Join Distance: 2.0
    ; Support Horizontal Expansion: 0
    ; Support Infill Layer Thickness: 0.08
    ; Gradual Support Infill Steps: 0
    ; Gradual Support Infill Step Height: 1
    ; Enable Support Interface: True
    ;  Enable Support Roof: True
    ;  Enable Support Floor: True
    ; Support Interface Thickness: 0.64
    ;  Support Roof Thickness: 0.64
    ;  Support Floor Thickness: 0.64
    ; Support Interface Resolution: 0.2
    ; Support Interface Density: 33.333
    ;  Support Roof Density: 33.333
    ;   Support Roof Line Distance: 2.4000240002400024
    ;  Support Floor Density: 33.333
    ;   Support Floor Line Distance: 2.4000240002400024
    ; Support Interface Pattern: grid
    ;  Support Roof Pattern: grid
    ;  Support Floor Pattern: grid
    ; Use Towers: False
    ; Tower Diameter: 3.0
    ; Minimum Diameter: {support_minimal_diameter}
    ; Tower Roof Angle: 65
    ; Drop Down Support Mesh: True

    ;Build Plate Adhesion
    ; Enable Prime Blob: False
    ; Extruder Prime X Position: 0
    ; Extruder Prime Y Position: 0
    ; Build Plate Adhesion Type: none
    ; Build Plate Adhesion Extruder: 0
    ; Skirt Line Count: 3
    ; Skirt Distance: 10.0
    ; Skirt/Brim Minimum Length: 250
    ; Brim Width: 8.0
    ;  Brim Line Count: 4
    ; Brim Only on Outside: False
    ; Raft Extra Margin: 15
    ; Raft Smoothing: 5
    ; Raft Air Gap: 0.3
    ; Initial Layer Z Overlap: 0.15
    ; Raft Top Layers: 2
    ; Raft Top Layer Thickness: 0.08
    ; Raft Top Line Width: 0.4
    ; Raft Top Spacing: 0.4
    ; Raft Middle Thickness: 0.12
    ; Raft Middle Line Width: 0.8
    ; Raft Middle Spacing: 1.0
    ; Raft Base Thickness: 0.24
    ; Raft Base Line Width: 0.8
    ; Raft Line Spacing: 1.6
    ; Raft Print Speed: 20.0
    ;  Raft Top Print Speed: 20.0
    ;  Raft Middle Print Speed: 15.0
    ;  Raft Base Print Speed: 15.0
    ; Raft Print Acceleration: 500
    ;  Raft Top Print Acceleration: 500
    ;  Raft Middle Print Acceleration: 500
    ;  Raft Base Print Acceleration: 500
    ; Raft Print Jerk: 8
    ;  Raft Top Print Jerk: 8
    ;  Raft Middle Print Jerk: 8
    ;  Raft Base Print Jerk: 8
    ; Raft Fan Speed: 0
    ;  Raft Top Fan Speed: 0
    ;  Raft Middle Fan Speed: 0
    ;  Raft Base Fan Speed: 0

    ;Dual Extrusion
    ; Enable Prime Tower: False
    ; Circular Prime Tower: {prime_tower_circular}
    ; Prime Tower Size: 20
    ; Prime Tower Minimum Volume: 6
    ;  Prime Tower Thickness: {prime_tower_wall_thickness}
    ; Prime Tower X Position: 233.075
    ; Prime Tower Y Position: 213.075
    ; Prime Tower Flow: 100
    ; Wipe Inactive Nozzle on Prime Tower: True
    ; Wipe Nozzle After Switch: {dual_pre_wipe}
    ; Prime Tower Purge Volume: {prime_tower_purge_volume}
    ; Enable Ooze Shield: False
    ; Ooze Shield Angle: 60
    ; Ooze Shield Distance: 2

    ;Mesh Fixes
    ; Union Overlapping Volumes: True
    ; Remove All Holes: False
    ; Extensive Stitching: False
    ; Keep Disconnected Faces: False
    ; Merged Meshes Overlap: 0.15
    ; Remove Mesh Intersection: False
    ; Alternate Mesh Removal: True
    ; Remove Empty First Layers: True

    ;Special Modes
    ; Print Sequence: all_at_once
    ; Infill Mesh: False
    ; Infill Mesh Order: 0
    ; Cutting Mesh: False
    ; Mold: False
    ; Minimal Mold Width: 5
    ; Mold Roof Height: 0.5
    ; Mold Angle: 40
    ; Support Mesh: False
    ; Anti Overhang Mesh: False
    ; Surface Mode: normal
    ; Spiralize Outer Contour: False
    ; Smooth Spiralized Contours: True
    ; Relative Extrusion: False

    ;Experimental
    ; Tree Support: False
    ; Tree Support Branch Angle: 40
    ; Tree Support Branch Distance: 1
    ; Tree Support Branch Diameter: 2
    ; Tree Support Branch Diameter Angle: 5
    ; Tree Support Collision Resolution: 0.2
    ; Tree Support Wall Thickness: {support_tree_wall_thickness}
    ;  Tree Support Wall Line Count: {support_tree_wall_count}
    ; Slicing Tolerance: middle
    ; Top Surface Skin Line Width: 0.4
    ; Top Surface Skin Pattern: lines
    ; Top Surface Skin Line Directions: [ ]
    ; Infill Travel Optimization: False
    ; Auto Temperature: False
    ; Flow Temperature Graph: [[3.5,200],[7.0,240]]
    ; Maximum Resolution: 0.05
    ; Break Up Support In Chunks: False
    ; Support Chunk Size: 20
    ;  Support Chunk Line Count: 10
    ; Enable Draft Shield: False
    ; Draft Shield X/Y Distance: 10
    ; Draft Shield Limitation: full
    ; Draft Shield Height: 10
    ; Make Overhang Printable: False
    ; Maximum Model Angle: 50
    ; Enable Coasting: False
    ; Coasting Volume: 0.064
    ; Minimum Volume Before Coasting: 0.8
    ; Coasting Speed: 90
    ; Alternate Skin Rotation: {skin_alternate_rotation}
    ; Cross 3D Pocket Size: 6.0
    ; Alternate Cross 3D Pockets: {cross_infill_apply_pockets_alternatingly}
    ; Spaghetti Infill: False
    ; Spaghetti Infill Stepping: True
    ; Spaghetti Maximum Infill Angle: 10
    ; Spaghetti Infill Maximum Height: 2.0
    ; Spaghetti Inset: 0.2
    ; Spaghetti Flow: 20
    ; Spaghetti Infill Extra Volume: 0
    ; Enable Conical Support: False
    ; Conical Support Angle: 30
    ; Conical Support Minimum Width: 5.0
    ; Hollow Out Objects: {infill_hollow}
    ; Fuzzy Skin: False
    ; Fuzzy Skin Thickness: 0.3
    ; Fuzzy Skin Density: 1.25
    ;  Fuzzy Skin Point Distance: 0.8
    ; Flow rate compensation max extrusion offset: 0
    ; Flow rate compensation factor: 100
    ; Wire Printing: False
    ; WP Connection Height: 3
    ; WP Roof Inset Distance: 3
    ; WP Speed: 5
    ;  WP Bottom Printing Speed: 5
    ;  WP Upward Printing Speed: 5
    ;  WP Downward Printing Speed: 5
    ;  WP Horizontal Printing Speed: 5
    ; WP Flow: 100
    ;  WP Connection Flow: 100
    ;  WP Flat Flow: 100
    ; WP Top Delay: 0
    ; WP Bottom Delay: 0
    ; WP Flat Delay: 0.1
    ; WP Ease Upward: 0.3
    ; WP Knot Size: 0.6
    ; WP Fall Down: 0.5
    ; WP Drag Along: 0.6
    ; WP Strategy: compensate
    ; WP Straighten Downward Lines: 20
    ; WP Roof Fall Down: 2
    ; WP Roof Drag Along: 0.8
    ; WP Roof Outer Delay: 0.2
    ; WP Nozzle Clearance: 1
    ; Use adaptive layers: False
    ; Adaptive layers maximum variation: 0.04
    ; Adaptive layers variation step size: 0.04
    ; Adaptive layers threshold: 0.2
    ; Enable Bridge Settings: False
    ; Minimum Bridge Wall Length: 5
    ; Bridge Skin Support Threshold: 50
    ; Bridge Wall Max Overhang: {bridge_wall_max_overhang}
    ; Bridge Wall Coasting: 100
    ; Bridge Wall Speed: 10
    ; Bridge Wall Flow: 50
    ; Bridge Skin Speed: 10
    ; Bridge Skin Flow: 60
    ; Bridge Skin Density: 100
    ; Bridge Fan Speed: 100
    ; Bridge Has Multiple Layers: True
    ; Bridge Second Skin Speed: 10
    ; Bridge Second Skin Flow: 100
    ; Bridge Second Skin Density: 75
    ; Bridge Second Skin Fan Speed: 0
    ; Bridge Third Skin Speed: 10
    ; Bridge Third Skin Flow: 110
    ; Bridge Third Skin Density: 80
    ; Bridge Third Skin Fan Speed: 0
    ; Try Multiple Line Thicknesses: {wall_try_line_thickness}

    ;Command Line Settings: 0
    ; Center object: False
    ; Mesh position x: 0
    ; Mesh position y: 0
    ; Mesh position z: 0
    ; Mesh Rotation Matrix: [[1,0,0], [0,1,0], [0,0,1]]

    ;******End of current settings*****
    M82 ;absolute extrusion mode
    M104 S0
    ;End of Gcode
    ;SETTING_3 {"global_quality": "[general]\\nversion = 4\\nname = 1 - Super Qualit
    ;SETTING_3 y Profile 2\\ndefinition = creality_ender3\\n\\n[metadata]\\ntype = q
    ;SETTING_3 uality_changes\\nquality_type = super\\nsetting_version = 13\\n\\n[va
    ;SETTING_3 lues]\\nadhesion_type = none\\nlayer_height = 0.08\\nlayer_height_0 =
    ;SETTING_3  0.2\\nmaterial_bed_temperature_layer_0 = 60\\nsupport_type = everywh
    ;SETTING_3 ere\\n\\n", "extruder_quality": ["[general]\\nversion = 4\\nname = 1 
    ;SETTING_3 - Super Quality Profile 2\\ndefinition = creality_ender3\\n\\n[metada
    ;SETTING_3 ta]\\ntype = quality_changes\\nquality_type = super\\nsetting_version
    ;SETTING_3  = 13\\nintent_category = default\\nposition = 0\\n\\n[values]\\nbrim
    ;SETTING_3 _line_count = 4\\nbrim_outside_only = False\\ninitial_layer_line_widt
    ;SETTING_3 h_factor = 150\\nmaterial_print_temperature = 190\\nskirt_brim_line_w
    ;SETTING_3 idth = 0.2\\nskirt_brim_material_flow = 110\\nspeed_layer_0 = 5.0\\ns
    ;SETTING_3 peed_print = 40.0\\nspeed_travel = 100.0\\nspeed_travel_layer_0 = 5\\
    ;SETTING_3 n\\n"]}

     

     

     

     

     

  5.  

    So basically my printed jobs look pretty ok since I changed my print profile based on what was recommanded at all3dp in order to make first layers look better:
    https://all3dp.com/2/3d-printing-first-layer-problems-how-to-make-it-perfect/ 

    But the thing is since I changed that, I was not able to adjust Cura anyhow in order to have the brim lines to touch each other anymore.
    I tried tweeking the following settings without any success (see attached picture - it shows only the brim since I cancelled the job right after it)

     


    Initial Layer Line Width : tried between 100 - 200%
    Skirt/Brim Line Width : 0.8 - 1.5

    Since my understanding of brim is that these lines should touch each other in order to give a better adhesion to the bed, does anyone knknow how I could fix that ?

    Here is the complete settings for the last test I did with the following settings :
    Initial Layer Line Width : tried between 200%
    Skirt/Brim Line Width : 1.5

    Complete settings:

    ;Quality 
    ; Layer Height: 0.12
    ; Initial Layer Height: 0.2
    ; Line Width: 0.4
    ;  Wall Line Width: 0.4
    ;   Outer Wall Line Width: 0.4
    ;   Inner Wall(s) Line Width: 0.4
    ;  Top/Bottom Line Width: 0.4
    ;  Infill Line Width: 0.4
    ;  Skirt/Brim Line Width: 1.5
    ;  Support Line Width: 0.4
    ;  Support Interface Line Width: 0.4
    ;   Support Roof Line Width: 0.4
    ;   Support Floor Line Width: 0.4
    ;  Prime Tower Line Width: 0.4
    ;  Initial Layer Line Width: 200

    ;Shell  
    ; Wall Extruder: -1
    ;  Outer Wall Extruder: -1
    ;  Inner Wall Extruder: -1
    ; Wall Thickness: 1.2000000000000002
    ;  Wall Line Count: 3
    ; Outer Wall Wipe Distance: 0.0
    ; Top Surface Skin Extruder: -1
    ; Top Surface Skin Layers: 0
    ; Top/Bottom Extruder: -1
    ; Top/Bottom Thickness: 0.9199999999999999
    ;  Top Thickness: 0.9199999999999999
    ;   Top Layers: 8
    ;  Bottom Thickness: 0.9199999999999999
    ;   Bottom Layers: 8
    ; Top/Bottom Pattern: lines
    ; Bottom Pattern Initial Layer: lines
    ; Top/Bottom Line Directions: [ ]
    ; Outer Wall Inset: 0
    ; Optimize Wall Printing Order: True
    ; Outer Before Inner Walls: False
    ; Alternate Extra Wall: False
    ; Compensate Wall Overlaps: True
    ;  Compensate Outer Wall Overlaps: False
    ;  Compensate Inner Wall Overlaps: True
    ; Fill Gaps Between Walls: everywhere
    ; Filter Out Tiny Gaps: False
    ; Print Thin Walls: False
    ; Horizontal Expansion: 0
    ; Initial Layer Horizontal Expansion: 0
    ; Z Seam Alignment: back
    ; Z Seam X: 117.5
    ; Z Seam Y: 235
    ; Seam Corner Preference: z_seam_corner_weighted
    ; Z Seam Relative: False
    ; Ignore Small Z Gaps: False
    ; Extra Skin Wall Count: 1
    ; Enable Ironing: False
    ; Iron Only Highest Layer: False
    ; Ironing Pattern: zigzag
    ; Ironing Line Spacing: 0.1
    ; Ironing Flow: 10.0
    ; Ironing Inset: 0.2
    ; Ironing Speed: 10.0
    ; Ironing Acceleration: 500
    ; Ironing Jerk: 8

    ;Infill 
    ; Infill Extruder: -1
    ; Infill Density: 20
    ;  Infill Line Distance: 6.0
    ; Infill Pattern: cubic
    ; Connect Infill Lines: False
    ; Infill Line Directions: [ ]
    ; Infill X Offset: 0
    ; Infill Y Offset: 0
    ; Cubic Subdivision Shell: 0.4
    ; Infill Overlap Percentage: 30.0
    ;  Infill Overlap: 0.12
    ; Skin Overlap Percentage: 10.0
    ;  Skin Overlap: 0.04
    ; Infill Wipe Distance: 0.0
    ; Infill Layer Thickness: 0.12
    ; Gradual Infill Steps: 0
    ; Gradual Infill Step Height: 1.5
    ; Infill Before Walls: False
    ; Minimum Infill Area: 0
    ; Skin Removal Width: 1.2000000000000002
    ;  Top Skin Removal Width: 1.2000000000000002
    ;  Bottom Skin Removal Width: 1.2000000000000002
    ; Skin Expand Distance: 1.2000000000000002
    ;  Top Skin Expand Distance: 1.2000000000000002
    ;  Bottom Skin Expand Distance: 1.2000000000000002
    ; Maximum Skin Angle for Expansion: 90
    ;  Minimum Skin Width for Expansion: 5.878304635907295e-17

    ;Material  
    ; Default Printing Temperature: 200
    ; Printing Temperature: 210
    ; Printing Temperature Initial Layer: 210
    ; Initial Printing Temperature: 210
    ; Final Printing Temperature: 210
    ; Extrusion Cool Down Speed Modifier: 0.7
    ; Default Build Plate Temperature: 50
    ; Build Plate Temperature: 55
    ; Build Plate Temperature Initial Layer: 60
    ; Diameter: 1.75
    ; Adhesion Tendency: 0
    ; Surface Energy: 100
    ; Shrinkage Ratio: 0
    ; Flow: 100
    ; Initial Layer Flow: 100
    ; Enable Retraction: True
    ; Retract at Layer Change: False
    ; Retraction Distance: 5
    ; Retraction Speed: 45
    ;  Retraction Retract Speed: 45
    ;  Retraction Prime Speed: 45
    ; Retraction Extra Prime Amount: 0
    ; Retraction Minimum Travel: 1.5
    ; Maximum Retraction Count: 100
    ; Minimum Extrusion Distance Window: 10
    ; Standby Temperature: 180
    ; Nozzle Switch Retraction Distance: 16
    ; Nozzle Switch Retraction Speed: 20
    ;  Nozzle Switch Retract Speed: 20
    ;  Nozzle Switch Prime Speed: 20

    ;Speed  
    ; Print Speed: 30.0
    ;  Infill Speed: 30.0
    ;  Wall Speed: 15.0
    ;   Outer Wall Speed: 15.0
    ;   Inner Wall Speed: 15.0
    ;  Top Surface Skin Speed: 15.0
    ;  Top/Bottom Speed: 15.0
    ;  Support Speed: 15.0
    ;   Support Infill Speed: 15.0
    ;   Support Interface Speed: 15.0
    ;    Support Roof Speed: 15.0
    ;    Support Floor Speed: 15.0
    ;  Prime Tower Speed: 15.0
    ; Travel Speed: 100.0
    ; Initial Layer Speed: 5.0
    ;  Initial Layer Print Speed: 5.0
    ;  Initial Layer Travel Speed: 5
    ; Skirt/Brim Speed: 5.0
    ; Maximum Z Speed: {max_feedrate_z_override}
    ; Number of Slower Layers: 2
    ; Equalize Filament Flow: False
    ; Maximum Speed for Flow Equalization: 150
    ; Enable Acceleration Control: False
    ; Print Acceleration: 500
    ;  Infill Acceleration: 500
    ;  Wall Acceleration: 500
    ;   Outer Wall Acceleration: 500
    ;   Inner Wall Acceleration: 500
    ;  Top Surface Skin Acceleration: 500
    ;  Top/Bottom Acceleration: 500
    ;  Support Acceleration: 500
    ;   Support Infill Acceleration: 500
    ;   Support Interface Acceleration: 500
    ;    Support Roof Acceleration: 500
    ;    Support Floor Acceleration: 500
    ;  Prime Tower Acceleration: 500
    ; Travel Acceleration: 500
    ; Initial Layer Acceleration: 500
    ;  Initial Layer Print Acceleration: 500
    ;  Initial Layer Travel Acceleration: 500
    ; Skirt/Brim Acceleration: 500
    ; Enable Jerk Control: False
    ; Print Jerk: 8
    ;  Infill Jerk: 8
    ;  Wall Jerk: 8
    ;   Outer Wall Jerk: 8
    ;   Inner Wall Jerk: 8
    ;  Top Surface Skin Jerk: 8
    ;  Top/Bottom Jerk: 8
    ;  Support Jerk: 8
    ;   Support Infill Jerk: 8
    ;   Support Interface Jerk: 8
    ;    Support Roof Jerk: 8
    ;    Support Floor Jerk: 8
    ;  Prime Tower Jerk: 8
    ; Travel Jerk: 8
    ; Initial Layer Jerk: 8
    ;  Initial Layer Print Jerk: 8
    ;  Initial Layer Travel Jerk: 8
    ; Skirt/Brim Jerk: 8

    ;Travel 
    ; Combing Mode: noskin
    ; Retract Before Outer Wall: True
    ; Avoid Printed Parts When Traveling: True
    ; Travel Avoid Distance: 0.625
    ; Start Layers with the Same Part: {start_layers_at_same_position}
    ; Layer Start X: 0.0
    ; Layer Start Y: 0.0
    ; Z Hop When Retracted: False
    ; Z Hop Only Over Printed Parts: False
    ; Z Hop Height: 0.2
    ; Z Hop After Extruder Switch: True

    ;Cooling 
    ; Enable Print Cooling: True
    ; Fan Speed: 100
    ;  Regular Fan Speed: 100
    ;  Maximum Fan Speed: 100
    ; Regular/Maximum Fan Speed Threshold: 10
    ; Initial Fan Speed: 0
    ; Regular Fan Speed at Height: 0.44
    ;  Regular Fan Speed at Layer: 4
    ; Minimum Layer Time: 10
    ; Minimum Speed: 10
    ; Lift Head: False

    ;Support 
    ; Generate Support: True
    ; Support Extruder: 0
    ;  Support Infill Extruder: 0
    ;  First Layer Support Extruder: 0
    ;  Support Interface Extruder: 0
    ;   Support Roof Extruder: 0
    ;   Support Floor Extruder: 0
    ; Support Placement: buildplate
    ; Support Overhang Angle: 20
    ; Support Pattern: zigzag
    ; Connect Support Lines: False
    ; Connect Support ZigZags: True
    ; Support Density: 0
    ;  Support Line Distance: 0
    ; Support Z Distance: 0.24
    ;  Support Top Distance: 0.24
    ;  Support Bottom Distance: 0
    ; Support X/Y Distance: 0.8
    ; Support Distance Priority: xy_overrides_z
    ; Minimum Support X/Y Distance: 0.4
    ; Support Stair Step Height: 0.3
    ; Support Stair Step Maximum Width: 5.0
    ; Support Join Distance: 2.0
    ; Support Horizontal Expansion: 0
    ; Support Infill Layer Thickness: 0.12
    ; Gradual Support Infill Steps: 0
    ; Gradual Support Infill Step Height: 1
    ; Enable Support Interface: True
    ;  Enable Support Roof: True
    ;  Enable Support Floor: True
    ; Support Interface Thickness: 0.96
    ;  Support Roof Thickness: 0.96
    ;  Support Floor Thickness: 0.96
    ; Support Interface Resolution: 0.2
    ; Support Interface Density: 33.333
    ;  Support Roof Density: 33.333
    ;   Support Roof Line Distance: 2.4000240002400024
    ;  Support Floor Density: 33.333
    ;   Support Floor Line Distance: 2.4000240002400024
    ; Support Interface Pattern: grid
    ;  Support Roof Pattern: grid
    ;  Support Floor Pattern: grid
    ; Use Towers: False
    ; Tower Diameter: 3.0
    ; Minimum Diameter: {support_minimal_diameter}
    ; Tower Roof Angle: 65
    ; Drop Down Support Mesh: True

    ;Build Plate Adhesion 
    ; Enable Prime Blob: False
    ; Extruder Prime X Position: 0
    ; Extruder Prime Y Position: 0
    ; Build Plate Adhesion Type: brim
    ; Build Plate Adhesion Extruder: 0
    ; Skirt Line Count: 3
    ; Skirt Distance: 10.0
    ; Skirt/Brim Minimum Length: 250
    ; Brim Width: 8.0
    ;  Brim Line Count: 3
    ; Brim Only on Outside: True
    ; Raft Extra Margin: 15
    ; Raft Smoothing: 5
    ; Raft Air Gap: 0.3
    ; Initial Layer Z Overlap: 0.15
    ; Raft Top Layers: 2
    ; Raft Top Layer Thickness: 0.12
    ; Raft Top Line Width: 0.4
    ; Raft Top Spacing: 0.4
    ; Raft Middle Thickness: 0.18
    ; Raft Middle Line Width: 0.8
    ; Raft Middle Spacing: 1.0
    ; Raft Base Thickness: 0.24
    ; Raft Base Line Width: 0.8
    ; Raft Line Spacing: 1.6
    ; Raft Print Speed: 15.0
    ;  Raft Top Print Speed: 15.0
    ;  Raft Middle Print Speed: 11.25
    ;  Raft Base Print Speed: 11.25
    ; Raft Print Acceleration: 500
    ;  Raft Top Print Acceleration: 500
    ;  Raft Middle Print Acceleration: 500
    ;  Raft Base Print Acceleration: 500
    ; Raft Print Jerk: 8
    ;  Raft Top Print Jerk: 8
    ;  Raft Middle Print Jerk: 8
    ;  Raft Base Print Jerk: 8
    ; Raft Fan Speed: 0
    ;  Raft Top Fan Speed: 0
    ;  Raft Middle Fan Speed: 0
    ;  Raft Base Fan Speed: 0

    ;Dual Extrusion  
    ; Enable Prime Tower: False
    ; Circular Prime Tower: {prime_tower_circular}
    ; Prime Tower Size: 20
    ; Prime Tower Minimum Volume: 6
    ;  Prime Tower Thickness: {prime_tower_wall_thickness}
    ; Prime Tower X Position: 215.0
    ; Prime Tower Y Position: 195.0
    ; Prime Tower Flow: 100
    ; Wipe Inactive Nozzle on Prime Tower: True
    ; Wipe Nozzle After Switch: {dual_pre_wipe}
    ; Prime Tower Purge Volume: {prime_tower_purge_volume}
    ; Enable Ooze Shield: False
    ; Ooze Shield Angle: 60
    ; Ooze Shield Distance: 2

    ;Mesh Fixes 
    ; Union Overlapping Volumes: True
    ; Remove All Holes: False
    ; Extensive Stitching: False
    ; Keep Disconnected Faces: False
    ; Merged Meshes Overlap: 0.15
    ; Remove Mesh Intersection: False
    ; Alternate Mesh Removal: True
    ; Remove Empty First Layers: True

    ;Special Modes 
    ; Print Sequence: all_at_once
    ; Infill Mesh: False
    ; Infill Mesh Order: 0
    ; Cutting Mesh: False
    ; Mold: False
    ; Minimal Mold Width: 5
    ; Mold Roof Height: 0.5
    ; Mold Angle: 40
    ; Support Mesh: False
    ; Anti Overhang Mesh: False
    ; Surface Mode: normal
    ; Spiralize Outer Contour: False
    ; Smooth Spiralized Contours: True
    ; Relative Extrusion: False

    ;Experimental 
    ; Tree Support: True
    ; Tree Support Branch Angle: 40
    ; Tree Support Branch Distance: 1
    ; Tree Support Branch Diameter: 2
    ; Tree Support Branch Diameter Angle: 5
    ; Tree Support Collision Resolution: 0.2
    ; Tree Support Wall Thickness: {support_tree_wall_thickness}
    ;  Tree Support Wall Line Count: {support_tree_wall_count}
    ; Slicing Tolerance: middle
    ; Top Surface Skin Line Width: 0.4
    ; Top Surface Skin Pattern: lines
    ; Top Surface Skin Line Directions: [ ]
    ; Infill Travel Optimization: False
    ; Auto Temperature: False
    ; Flow Temperature Graph: [[3.5,200],[7.0,240]]
    ; Maximum Resolution: 0.05
    ; Break Up Support In Chunks: False
    ; Support Chunk Size: 20
    ;  Support Chunk Line Count: 0
    ; Enable Draft Shield: False
    ; Draft Shield X/Y Distance: 10
    ; Draft Shield Limitation: full
    ; Draft Shield Height: 10
    ; Make Overhang Printable: False
    ; Maximum Model Angle: 50
    ; Enable Coasting: False
    ; Coasting Volume: 0.064
    ; Minimum Volume Before Coasting: 0.8
    ; Coasting Speed: 90
    ; Alternate Skin Rotation: {skin_alternate_rotation}
    ; Cross 3D Pocket Size: 6.0
    ; Alternate Cross 3D Pockets: {cross_infill_apply_pockets_alternatingly}
    ; Spaghetti Infill: False
    ; Spaghetti Infill Stepping: True
    ; Spaghetti Maximum Infill Angle: 10
    ; Spaghetti Infill Maximum Height: 2.0
    ; Spaghetti Inset: 0.2
    ; Spaghetti Flow: 20
    ; Spaghetti Infill Extra Volume: 0
    ; Enable Conical Support: False
    ; Conical Support Angle: 30
    ; Conical Support Minimum Width: 5.0
    ; Hollow Out Objects: {infill_hollow}
    ; Fuzzy Skin: False
    ; Fuzzy Skin Thickness: 0.3
    ; Fuzzy Skin Density: 1.25
    ;  Fuzzy Skin Point Distance: 0.8
    ; Flow rate compensation max extrusion offset: 0
    ; Flow rate compensation factor: 100
    ; Wire Printing: False
    ; WP Connection Height: 3
    ; WP Roof Inset Distance: 3
    ; WP Speed: 5
    ;  WP Bottom Printing Speed: 5
    ;  WP Upward Printing Speed: 5
    ;  WP Downward Printing Speed: 5
    ;  WP Horizontal Printing Speed: 5
    ; WP Flow: 100
    ;  WP Connection Flow: 100
    ;  WP Flat Flow: 100
    ; WP Top Delay: 0
    ; WP Bottom Delay: 0
    ; WP Flat Delay: 0.1
    ; WP Ease Upward: 0.3
    ; WP Knot Size: 0.6
    ; WP Fall Down: 0.5
    ; WP Drag Along: 0.6
    ; WP Strategy: compensate
    ; WP Straighten Downward Lines: 20
    ; WP Roof Fall Down: 2
    ; WP Roof Drag Along: 0.8
    ; WP Roof Outer Delay: 0.2
    ; WP Nozzle Clearance: 1
    ; Use adaptive layers: False
    ; Adaptive layers maximum variation: 0.04
    ; Adaptive layers variation step size: 0.04
    ; Adaptive layers threshold: 0.2
    ; Enable Bridge Settings: False
    ; Minimum Bridge Wall Length: 5
    ; Bridge Skin Support Threshold: 50
    ; Bridge Wall Max Overhang: {bridge_wall_max_overhang}
    ; Bridge Wall Coasting: 100
    ; Bridge Wall Speed: 10
    ; Bridge Wall Flow: 50
    ; Bridge Skin Speed: 10
    ; Bridge Skin Flow: 60
    ; Bridge Skin Density: 100
    ; Bridge Fan Speed: 100
    ; Bridge Has Multiple Layers: True
    ; Bridge Second Skin Speed: 10
    ; Bridge Second Skin Flow: 100
    ; Bridge Second Skin Density: 75
    ; Bridge Second Skin Fan Speed: 0
    ; Bridge Third Skin Speed: 10
    ; Bridge Third Skin Flow: 110
    ; Bridge Third Skin Density: 80
    ; Bridge Third Skin Fan Speed: 0
    ; Try Multiple Line Thicknesses: {wall_try_line_thickness}

    ;Command Line Settings: 0
    ; Center object: False
    ; Mesh position x: 0
    ; Mesh position y: 0
    ; Mesh position z: 0
    ; Mesh Rotation Matrix: [[1,0,0], [0,1,0], [0,0,1]]

    ;******End of current settings*****

    IMG_0004.jpg

×
×
  • Create New...