Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

Commit

Permalink
Raise max temps
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewlloyd committed Nov 13, 2021
1 parent 80d52b8 commit 5ef890c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ One of Prusa's llamas escaped from HQ (:llama::running_man:) and decided to make
own version of the firmware for the Prusa Mini. He's added quite
a few goodies:

* **Configurable E-steps**: Adds a menu option to configure e-steps, with presets for the
Bondtech extruder (with and without reversed wires).
* **Hotend fan speed**: Adds a menu option to unlock the hotend fan speed
and increase it from the Prusa Firmware's default 38% to anywhere from 50-100%.
* **Skew compensation**: Turns on skew compensation in Marlin and allows it
Expand All @@ -21,6 +19,8 @@ a few goodies:
* **Sound**: Adds support for `M300` (play a sound).
* **PID tuning**: Automatically writes PID settings to EEPROM after `M303 U1` (autotune),
`M301` (set hotend PID), and `M304` (set bed PID).
* **Max Temps**: Raises the maximum bed temperature from 100C to 110C
and nozzle temperature from 290C to 300C (use with caution!).

All settings are automatically saved to EEPROM and loaded on boot.

Expand Down Expand Up @@ -100,6 +100,11 @@ Llogical!

### Configuring E-steps

New in v1.0.7: This can now be done using Prusa's own "Experimental Settings" menu,
which is shown by default as a menu item next to "Llama Settings" in this firmware.

#### For Llama versions v1.0.6 and below

Select "Extruder" and click to select one of:

- **Prusa**. Stock e-steps for the stock extruder.
Expand Down
4 changes: 2 additions & 2 deletions include/marlin/Configuration_A3ides_2209_MINI.h
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@
// Above this temperature the heater will be switched off.
// This can protect components from overheating, but NOT from shorts and failures.
// (Use MINTEMP for thermistor short/failure protection.)
#define HEATER_0_MAXTEMP 290 + 15
#define HEATER_0_MAXTEMP 300 + 15
#define HEATER_1_MAXTEMP 275
#define HEATER_2_MAXTEMP 275
#define HEATER_3_MAXTEMP 275
Expand All @@ -402,7 +402,7 @@
// Thus all usage in the UI must be lowered by 10C to offer a valid temperature limit.
// Those 10C are a safety margin used throughout the whole Marlin code
// (without a proper #define though :( )
#define BED_MAXTEMP 110
#define BED_MAXTEMP 120
#define BED_MAXTEMP_SAFETY_MARGIN 10
#define BOARD_MAXTEMP 120
#define CHAMBER_MAXTEMP 100
Expand Down

0 comments on commit 5ef890c

Please sign in to comment.