ajokela / tinycomputers.io

Repository for Adding Comments to TinyComputers.io
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Marlin Firmware - Modified Ender 3 Pro | TinyComputers.io #4

Open utterances-bot opened 11 months ago

utterances-bot commented 11 months ago

Marlin Firmware - Modified Ender 3 Pro | TinyComputers.io

Marlin Firmware for a modified Creality Ender 3 Pro

https://tinycomputers.io/posts/marlin-firmware-modified-ender-3-pro.html

naty6458 commented 11 months ago

hii thank you ! you forget the E steps. DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 400, 424.9}

ajokela commented 11 months ago

@naty6458 -- where did I forget the E-steps?

naty6458 commented 11 months ago

https://youtu.be/B4RbAFf_kAc?t=159

ajokela commented 11 months ago

@naty6458 were you able to get this firmware working with your printer?

naty6458 commented 11 months ago

I used CONFIG of Ender-3/CrealityV427. Marlin V1.2.1.2.

  1. The compiler made an error about the temperature. I returned back to 275.

Later I will prepare a GCODE and try to change the value of MAX TEMP.

  1. The settings ROTATE_PROGRESS_DISPLAY, LCD_SET_PROGRESS_MANUALLY, USE_M73_REMAINING_TIME were probably not found in Marlin V1.2.1.2
Anscronious commented 11 months ago

I have been having the same issue with the temperature the temp sensor type need to be changed

Analog Thermistors - 4.7kΩ pullup - Normal

define TEMP_SENSOR_0 61

define TEMP_SENSOR_1 0

define TEMP_SENSOR_2 0

define TEMP_SENSOR_3 0

define TEMP_SENSOR_4 0

define TEMP_SENSOR_5 0

define TEMP_SENSOR_6 0

define TEMP_SENSOR_7 0

define TEMP_SENSOR_BED 1

define TEMP_SENSOR_PROBE 0

define TEMP_SENSOR_CHAMBER 0

define TEMP_SENSOR_COOLER 0

define TEMP_SENSOR_BOARD 0

define TEMP_SENSOR_SOC 0

define TEMP_SENSOR_REDUNDANT 0

naty6458 commented 10 months ago

Thanks!

christophjodexnus commented 2 months ago

Hello, I am using your Marlin firmware, I also have the Ender 3 Pro with Sprite Extruder and 4.2.7 board. However, there is a problem that has already cost me a few heating blocks. Without me doing anything, the extruder feeds filament at regular intervals (hotend heated). As a result, I have already had a lump of filament on the hotend twice during a night print that I could not remove without damaging the cable of the temperature sensor.

Is this something that can be set in the firmware?

Greetings and thanks Christoph

Translated with DeepL.com (free version)

ajokela commented 2 months ago

Christoph-

In Configuration_adv.h, there is a setting that controls this behavior:

`// Extruder runout prevention. // If the machine is idle and the temperature over MINTEMP // then extrude some filament every couple of SECONDS.

define EXTRUDER_RUNOUT_PREVENT

if ENABLED(EXTRUDER_RUNOUT_PREVENT)

define EXTRUDER_RUNOUT_MINTEMP 195

define EXTRUDER_RUNOUT_SECONDS 30

define EXTRUDER_RUNOUT_SPEED 1500 // (mm/min)

define EXTRUDER_RUNOUT_EXTRUDE 5 // (mm)

endif`

Comment it out and recompile the firmware.

ajokela commented 2 months ago

Hey Everyone:

I commented out EXTRUDER_RUNOUT_PREVENT and recompiled. You can download it here: https://cdn.tinycomputers.io/creality-ender-3-pro/firmware-20240423-170646.bin

christophjodexnus commented 2 months ago

thank you :)

whats the function of this?

ajokela commented 2 months ago

thank you :)

whats the function of this?

It supposed to be a feature that helps prevent filament burning in the nozzle by keeping melted filament moving. But, I too have run into the same issue you were seeing with filament build-up on the nozzle.

naty6458 commented 2 months ago

I have the same problem... (if it matters I usually use PETG). I think it's something physical and not software. Just now I broke the thermostat due to a failed cleaning. I ordered a slightly different heating element. I will update what the result is.

https://www.aliexpress.com/item/1005006120501974.html?spm=a2g0o.order_list.order_list_main.15.6d8d1802biDFEF

In addition to that I found just now , this discussion online, they say it is a factory defect and that there is a crack in the tube of the heating block.

https://www.reddit.com/r/Ender3S1/comments/z19f6s/ender_3_s1_pro_leaking_from_top_of_heating_element/

I also checked what the default ENDER S1 settings are in FW.

image

This reinforces the assessment that it is hardware and not software.

ajokela commented 2 months ago

I must have misunderstood the description of the problem. If melted filament is coming out of the top, it is definitely not related to EXTRUDER_RUNOUT_PREVENT