Merge branch 'MK3' into MK3_Translations
This commit is contained in:
parent
795b1d1cf7
commit
ae839aee31
@ -16,8 +16,8 @@ extern uint16_t nPrinterType;
|
||||
extern PGM_P sPrinterName;
|
||||
|
||||
// Firmware version
|
||||
#define FW_VERSION "3.8.0-RC2"
|
||||
#define FW_COMMIT_NR 2639
|
||||
#define FW_VERSION "3.8.0"
|
||||
#define FW_COMMIT_NR 2684
|
||||
// FW_VERSION_UNKNOWN means this is an unofficial build.
|
||||
// The firmware should only be checked into github with this symbol.
|
||||
#define FW_DEV_VERSION FW_VERSION_UNKNOWN
|
||||
@ -113,11 +113,6 @@ extern PGM_P sPrinterName;
|
||||
// #define PS_DEFAULT_OFF
|
||||
|
||||
|
||||
|
||||
// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
|
||||
//#define TEMP_SENSOR_1_AS_REDUNDANT
|
||||
#define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
|
||||
|
||||
// Actual temperature must be close to target for this long before M109 returns success
|
||||
#define TEMP_RESIDENCY_TIME 3 // (seconds)
|
||||
#define TEMP_HYSTERESIS 5 // (degC) range of +/- temperatures considered "close" to the target one
|
||||
@ -291,6 +286,8 @@ your extruder heater takes 2 minutes to hit the target on heating.
|
||||
|
||||
#define Z_HEIGHT_HIDE_LIVE_ADJUST_MENU 2.0f
|
||||
|
||||
#define HOME_Z_SEARCH_THRESHOLD 0.15f // Threshold of the Z height in calibration
|
||||
|
||||
//============================= Bed Auto Leveling ===========================
|
||||
|
||||
//#define ENABLE_AUTO_BED_LEVELING // Delete the comment to enable (remove // at the start of the line)
|
||||
|
@ -10,14 +10,6 @@
|
||||
#endif
|
||||
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
||||
|
||||
//// Heating sanity check:
|
||||
// This waits for the watch period in milliseconds whenever an M104 or M109 increases the target temperatureLCD_PROGRESS_BAR
|
||||
// If the temperature has not increased at the end of that period, the target temperature is set to zero.
|
||||
// It can be reset with another M104/M109. This check is also only triggered if the target temperature and the current temperature
|
||||
// differ by at least 2x WATCH_TEMP_INCREASE
|
||||
//#define WATCH_TEMP_PERIOD 40000 //40 seconds
|
||||
//#define WATCH_TEMP_INCREASE 10 //Heat up at least 10 degree in 20 seconds
|
||||
|
||||
#ifdef PIDTEMP
|
||||
// this adds an experimental additional term to the heating power, proportional to the extrusion speed.
|
||||
// if Kc is chosen well, the additional required power due to increased melting should be compensated.
|
||||
@ -400,10 +392,6 @@ const unsigned int dropsegments=5; //everything with less than this number of st
|
||||
//============================= Define Defines ============================
|
||||
//===========================================================================
|
||||
|
||||
#if EXTRUDERS > 1 && defined TEMP_SENSOR_1_AS_REDUNDANT
|
||||
#error "You cannot use TEMP_SENSOR_1_AS_REDUNDANT if EXTRUDERS > 1"
|
||||
#endif
|
||||
|
||||
#if EXTRUDERS > 1 && defined HEATERS_PARALLEL
|
||||
#error "You cannot use HEATERS_PARALLEL if EXTRUDERS > 1"
|
||||
#endif
|
||||
|
@ -2860,7 +2860,8 @@ bool gcode_M45(bool onlyZ, int8_t verbosity_level)
|
||||
#endif //TMC2130
|
||||
enable_endstops(endstops_enabled);
|
||||
|
||||
if (st_get_position_mm(Z_AXIS) == MESH_HOME_Z_SEARCH)
|
||||
if ((st_get_position_mm(Z_AXIS) <= (MESH_HOME_Z_SEARCH + HOME_Z_SEARCH_THRESHOLD)) &&
|
||||
(st_get_position_mm(Z_AXIS) >= (MESH_HOME_Z_SEARCH - HOME_Z_SEARCH_THRESHOLD)))
|
||||
{
|
||||
if (onlyZ)
|
||||
{
|
||||
@ -3261,7 +3262,7 @@ static void gcode_PRUSA_SN()
|
||||
//! May be that's why the bad RAMBo's still produce some fan RPM reading, but not corresponding to reality
|
||||
static void gcode_PRUSA_BadRAMBoFanTest(){
|
||||
//printf_P(PSTR("Enter fan pin test\n"));
|
||||
#if !defined(DEBUG_DISABLE_FANCHECK) && defined(FANCHECK) && defined(TACH_1) && TACH_1 >-1 && defined(IR_SENSOR)
|
||||
#if !defined(DEBUG_DISABLE_FANCHECK) && defined(FANCHECK) && defined(TACH_1) && TACH_1 >-1
|
||||
fan_measuring = false; // prevent EXTINT7 breaking into the measurement
|
||||
unsigned long tach1max = 0;
|
||||
uint8_t tach1cntr = 0;
|
||||
@ -5891,7 +5892,6 @@ Sigma_Exit:
|
||||
{
|
||||
setTargetHotendSafe(code_value(), extruder);
|
||||
}
|
||||
setWatch();
|
||||
break;
|
||||
}
|
||||
|
||||
@ -6036,7 +6036,6 @@ Sigma_Exit:
|
||||
}
|
||||
#endif
|
||||
|
||||
setWatch();
|
||||
codenum = _millis();
|
||||
|
||||
/* See if we are heating up or cooling down */
|
||||
@ -10207,7 +10206,7 @@ void restore_print_from_ram_and_continue(float e_move)
|
||||
else {
|
||||
//not sd printing nor usb printing
|
||||
}
|
||||
printf_P(PSTR("ok\n")); //dummy response because of octoprint is waiting for this
|
||||
SERIAL_PROTOCOLLNRPGM(MSG_OK); //dummy response because of octoprint is waiting for this
|
||||
lcd_setstatuspgm(_T(WELCOME_MSG));
|
||||
saved_printing = false;
|
||||
}
|
||||
|
@ -49,7 +49,7 @@
|
||||
//#define LANG_MODE 0 // primary language only
|
||||
#define LANG_MODE 1 // sec. language support
|
||||
|
||||
#define LANG_SIZE_RESERVED 0x2800 // reserved space for secondary language (10240 bytes)
|
||||
#define LANG_SIZE_RESERVED 0x3000 // reserved space for secondary language (12288 bytes)
|
||||
|
||||
|
||||
#endif //_CONFIG_H
|
||||
|
@ -97,14 +97,66 @@ void eeprom_init()
|
||||
|
||||
//! @brief Get default sheet name for index
|
||||
//!
|
||||
//! | index | sheetName |
|
||||
//! | ----- | --------- |
|
||||
//! | 0 | Smooth1 |
|
||||
//! | 1 | Smooth2 |
|
||||
//! | 2 | Textur1 |
|
||||
//! | 3 | Textur2 |
|
||||
//! | 4 | Custom1 |
|
||||
//! | 5 | Custom2 |
|
||||
//! | 6 | Custom3 |
|
||||
//! | 7 | Custom4 |
|
||||
//!
|
||||
//! @param[in] index
|
||||
//! @param[out] sheetName
|
||||
void eeprom_default_sheet_name(uint8_t index, SheetName &sheetName)
|
||||
{
|
||||
static_assert(8 == sizeof(SheetName),"Default sheet name needs to be adjusted.");
|
||||
sprintf_P(sheetName.c, PSTR("%-6.6S"), _T(MSG_SHEET));
|
||||
|
||||
sheetName.c[6] = '1' + index;
|
||||
if (index < 2)
|
||||
{
|
||||
strcpy_P(sheetName.c, PSTR("Smooth"));
|
||||
}
|
||||
else if (index < 4)
|
||||
{
|
||||
strcpy_P(sheetName.c, PSTR("Textur"));
|
||||
}
|
||||
else
|
||||
{
|
||||
strcpy_P(sheetName.c, PSTR("Custom"));
|
||||
}
|
||||
|
||||
switch (index)
|
||||
{
|
||||
case 0:
|
||||
sheetName.c[6] = '1';
|
||||
break;
|
||||
case 1:
|
||||
sheetName.c[6] = '2';
|
||||
break;
|
||||
case 2:
|
||||
sheetName.c[6] = '1';
|
||||
break;
|
||||
case 3:
|
||||
sheetName.c[6] = '2';
|
||||
break;
|
||||
case 4:
|
||||
sheetName.c[6] = '1';
|
||||
break;
|
||||
case 5:
|
||||
sheetName.c[6] = '2';
|
||||
break;
|
||||
case 6:
|
||||
sheetName.c[6] = '3';
|
||||
break;
|
||||
case 7:
|
||||
sheetName.c[6] = '4';
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
sheetName.c[7] = '\0';
|
||||
}
|
||||
|
||||
|
@ -189,9 +189,10 @@ static void lcd_begin(uint8_t clear)
|
||||
#endif
|
||||
}
|
||||
|
||||
static void lcd_putchar(char c, FILE *)
|
||||
static int lcd_putchar(char c, FILE *)
|
||||
{
|
||||
lcd_write(c);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void lcd_init(void)
|
||||
|
@ -11,7 +11,6 @@
|
||||
extern FILE _lcdout;
|
||||
|
||||
#define lcdout (&_lcdout)
|
||||
extern void lcd_putchar(char c, FILE *stream);
|
||||
|
||||
extern void lcd_init(void);
|
||||
|
||||
|
@ -457,7 +457,8 @@ void menu_draw_P<uint8_t*>(char chr, const char* str, int16_t val)
|
||||
float factor = 1.0f + static_cast<float>(val) / 1000.0f;
|
||||
if (val <= _md->minEditValue)
|
||||
{
|
||||
lcd_printf_P(menu_fmt_float13off, chr, str, " [off]");
|
||||
// lcd_printf_P(menu_fmt_float13off, chr, str, " [off]");
|
||||
menu_draw_toggle_puts_P(str, _T(MSG_OFF), true);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -1562,7 +1562,8 @@ void EEPROM_read_st(int pos, uint8_t* value, uint8_t size)
|
||||
|
||||
void st_current_init() //Initialize Digipot Motor Current
|
||||
{
|
||||
uint8_t SilentMode = eeprom_read_byte((uint8_t*)EEPROM_SILENT);
|
||||
uint8_t SilentMode = eeprom_read_byte((uint8_t*)EEPROM_SILENT);
|
||||
if (SilentMode == 0xff) SilentMode = 0; //set power to High Power (MK2.5) or Normal Power (MK3, unused)
|
||||
SilentModeMenu = SilentMode;
|
||||
#ifdef MOTOR_CURRENT_PWM_XY_PIN
|
||||
pinMode(MOTOR_CURRENT_PWM_XY_PIN, OUTPUT);
|
||||
|
@ -73,10 +73,6 @@ int current_voltage_raw_bed = 0;
|
||||
|
||||
int current_temperature_bed_raw = 0;
|
||||
float current_temperature_bed = 0.0;
|
||||
#ifdef TEMP_SENSOR_1_AS_REDUNDANT
|
||||
int redundant_temperature_raw = 0;
|
||||
float redundant_temperature = 0.0;
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef PIDTEMP
|
||||
@ -175,13 +171,8 @@ static int bed_minttemp_raw = HEATER_BED_RAW_LO_TEMP;
|
||||
static int bed_maxttemp_raw = HEATER_BED_RAW_HI_TEMP;
|
||||
#endif
|
||||
|
||||
#ifdef TEMP_SENSOR_1_AS_REDUNDANT
|
||||
static void *heater_ttbl_map[2] = {(void *)HEATER_0_TEMPTABLE, (void *)HEATER_1_TEMPTABLE };
|
||||
static uint8_t heater_ttbllen_map[2] = { HEATER_0_TEMPTABLE_LEN, HEATER_1_TEMPTABLE_LEN };
|
||||
#else
|
||||
static void *heater_ttbl_map[EXTRUDERS] = ARRAY_BY_EXTRUDERS( (void *)HEATER_0_TEMPTABLE, (void *)HEATER_1_TEMPTABLE, (void *)HEATER_2_TEMPTABLE );
|
||||
static uint8_t heater_ttbllen_map[EXTRUDERS] = ARRAY_BY_EXTRUDERS( HEATER_0_TEMPTABLE_LEN, HEATER_1_TEMPTABLE_LEN, HEATER_2_TEMPTABLE_LEN );
|
||||
#endif
|
||||
static void *heater_ttbl_map[EXTRUDERS] = ARRAY_BY_EXTRUDERS( (void *)HEATER_0_TEMPTABLE, (void *)HEATER_1_TEMPTABLE, (void *)HEATER_2_TEMPTABLE );
|
||||
static uint8_t heater_ttbllen_map[EXTRUDERS] = ARRAY_BY_EXTRUDERS( HEATER_0_TEMPTABLE_LEN, HEATER_1_TEMPTABLE_LEN, HEATER_2_TEMPTABLE_LEN );
|
||||
|
||||
static float analog2temp(int raw, uint8_t e);
|
||||
static float analog2tempBed(int raw);
|
||||
@ -195,11 +186,6 @@ enum TempRunawayStates
|
||||
TempRunaway_ACTIVE = 2,
|
||||
};
|
||||
|
||||
#ifdef WATCH_TEMP_PERIOD
|
||||
int watch_start_temp[EXTRUDERS] = ARRAY_BY_EXTRUDERS(0,0,0);
|
||||
unsigned long watchmillis[EXTRUDERS] = ARRAY_BY_EXTRUDERS(0,0,0);
|
||||
#endif //WATCH_TEMP_PERIOD
|
||||
|
||||
#ifndef SOFT_PWM_SCALE
|
||||
#define SOFT_PWM_SCALE 0
|
||||
#endif
|
||||
@ -728,34 +714,6 @@ void manage_heater()
|
||||
{
|
||||
soft_pwm[e] = 0;
|
||||
}
|
||||
|
||||
#ifdef WATCH_TEMP_PERIOD
|
||||
if(watchmillis[e] && _millis() - watchmillis[e] > WATCH_TEMP_PERIOD)
|
||||
{
|
||||
if(degHotend(e) < watch_start_temp[e] + WATCH_TEMP_INCREASE)
|
||||
{
|
||||
setTargetHotend(0, e);
|
||||
LCD_MESSAGEPGM("Heating failed");
|
||||
SERIAL_ECHO_START;
|
||||
SERIAL_ECHOLN("Heating failed");
|
||||
}else{
|
||||
watchmillis[e] = 0;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
#ifdef TEMP_SENSOR_1_AS_REDUNDANT
|
||||
if(fabs(current_temperature[0] - redundant_temperature) > MAX_REDUNDANT_TEMP_SENSOR_DIFF) {
|
||||
disable_heater();
|
||||
if(IsStopped() == false) {
|
||||
SERIAL_ERROR_START;
|
||||
SERIAL_ERRORLNPGM("Extruder switched off. Temperature difference between temp sensors is too high !");
|
||||
LCD_ALERTMESSAGEPGM("Err: REDUNDANT TEMP ERROR");
|
||||
}
|
||||
#ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
|
||||
Stop();
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
} // End extruder for loop
|
||||
|
||||
#define FAN_CHECK_PERIOD 5000 //5s
|
||||
@ -907,11 +865,7 @@ void manage_heater()
|
||||
// Derived from RepRap FiveD extruder::getTemperature()
|
||||
// For hot end temperature measurement.
|
||||
static float analog2temp(int raw, uint8_t e) {
|
||||
#ifdef TEMP_SENSOR_1_AS_REDUNDANT
|
||||
if(e > EXTRUDERS)
|
||||
#else
|
||||
if(e >= EXTRUDERS)
|
||||
#endif
|
||||
{
|
||||
SERIAL_ERROR_START;
|
||||
SERIAL_ERROR((int)e);
|
||||
@ -1054,10 +1008,6 @@ static void updateTemperaturesFromRawValues()
|
||||
current_temperature_bed = analog2tempBed(current_temperature_bed_raw);
|
||||
#endif //DEBUG_HEATER_BED_SIM
|
||||
|
||||
#ifdef TEMP_SENSOR_1_AS_REDUNDANT
|
||||
redundant_temperature = analog2temp(redundant_temperature_raw, 1);
|
||||
#endif
|
||||
|
||||
CRITICAL_SECTION_START;
|
||||
temp_meas_ready = false;
|
||||
CRITICAL_SECTION_END;
|
||||
@ -1221,20 +1171,6 @@ void tp_init()
|
||||
#endif //BED_MAXTEMP
|
||||
}
|
||||
|
||||
void setWatch()
|
||||
{
|
||||
#ifdef WATCH_TEMP_PERIOD
|
||||
for (int e = 0; e < EXTRUDERS; e++)
|
||||
{
|
||||
if(degHotend(e) < degTargetHotend(e) - (WATCH_TEMP_INCREASE * 2))
|
||||
{
|
||||
watch_start_temp[e] = degHotend(e);
|
||||
watchmillis[e] = _millis();
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if (defined (TEMP_RUNAWAY_BED_HYSTERESIS) && TEMP_RUNAWAY_BED_TIMEOUT > 0) || (defined (TEMP_RUNAWAY_EXTRUDER_HYSTERESIS) && TEMP_RUNAWAY_EXTRUDER_TIMEOUT > 0)
|
||||
void temp_runaway_check(int _heater_id, float _target_temperature, float _current_temperature, float _output, bool _isbed)
|
||||
{
|
||||
|
@ -74,9 +74,6 @@ extern int current_voltage_raw_pwr;
|
||||
extern int current_voltage_raw_bed;
|
||||
#endif
|
||||
|
||||
#ifdef TEMP_SENSOR_1_AS_REDUNDANT
|
||||
extern float redundant_temperature;
|
||||
#endif
|
||||
|
||||
#if defined(CONTROLLERFAN_PIN) && CONTROLLERFAN_PIN > -1
|
||||
extern unsigned char soft_pwm_bed;
|
||||
@ -220,7 +217,6 @@ FORCE_INLINE bool isCoolingBed() {
|
||||
|
||||
int getHeaterPower(int heater);
|
||||
void disable_heater();
|
||||
void setWatch();
|
||||
void updatePID();
|
||||
|
||||
|
||||
|
@ -1661,100 +1661,12 @@ static void lcd_move_menu_axis();
|
||||
|
||||
/* Menu implementation */
|
||||
|
||||
static void lcd_preheat_farm()
|
||||
{
|
||||
setTargetHotend0(FARM_PREHEAT_HOTEND_TEMP);
|
||||
setTargetBed(FARM_PREHEAT_HPB_TEMP);
|
||||
fanSpeed = 0;
|
||||
lcd_return_to_status();
|
||||
setWatch(); // heater sanity check timer
|
||||
}
|
||||
|
||||
static void lcd_preheat_farm_nozzle()
|
||||
{
|
||||
setTargetHotend0(FARM_PREHEAT_HOTEND_TEMP);
|
||||
setTargetBed(0);
|
||||
fanSpeed = 0;
|
||||
lcd_return_to_status();
|
||||
setWatch(); // heater sanity check timer
|
||||
}
|
||||
|
||||
static void lcd_preheat_pla()
|
||||
{
|
||||
setTargetHotend0(PLA_PREHEAT_HOTEND_TEMP);
|
||||
if (!wizard_active) setTargetBed(PLA_PREHEAT_HPB_TEMP);
|
||||
fanSpeed = PLA_PREHEAT_FAN_SPEED;
|
||||
lcd_return_to_status();
|
||||
setWatch(); // heater sanity check timer
|
||||
if (wizard_active) lcd_wizard(WizState::Unload);
|
||||
}
|
||||
|
||||
static void lcd_preheat_asa()
|
||||
{
|
||||
setTargetHotend0(ASA_PREHEAT_HOTEND_TEMP);
|
||||
if (!wizard_active) setTargetBed(ASA_PREHEAT_HPB_TEMP);
|
||||
fanSpeed = ASA_PREHEAT_FAN_SPEED;
|
||||
lcd_return_to_status();
|
||||
setWatch(); // heater sanity check timer
|
||||
if (wizard_active) lcd_wizard(WizState::Unload);
|
||||
}
|
||||
|
||||
static void lcd_preheat_abs()
|
||||
{
|
||||
setTargetHotend0(ABS_PREHEAT_HOTEND_TEMP);
|
||||
if (!wizard_active) setTargetBed(ABS_PREHEAT_HPB_TEMP);
|
||||
fanSpeed = ABS_PREHEAT_FAN_SPEED;
|
||||
lcd_return_to_status();
|
||||
setWatch(); // heater sanity check timer
|
||||
if (wizard_active) lcd_wizard(WizState::Unload);
|
||||
}
|
||||
|
||||
static void lcd_preheat_pp()
|
||||
{
|
||||
setTargetHotend0(PP_PREHEAT_HOTEND_TEMP);
|
||||
if (!wizard_active) setTargetBed(PP_PREHEAT_HPB_TEMP);
|
||||
fanSpeed = PP_PREHEAT_FAN_SPEED;
|
||||
lcd_return_to_status();
|
||||
setWatch(); // heater sanity check timer
|
||||
if (wizard_active) lcd_wizard(WizState::Unload);
|
||||
}
|
||||
|
||||
static void lcd_preheat_pet()
|
||||
{
|
||||
setTargetHotend0(PET_PREHEAT_HOTEND_TEMP);
|
||||
if (!wizard_active) setTargetBed(PET_PREHEAT_HPB_TEMP);
|
||||
fanSpeed = PET_PREHEAT_FAN_SPEED;
|
||||
lcd_return_to_status();
|
||||
setWatch(); // heater sanity check timer
|
||||
if (wizard_active) lcd_wizard(WizState::Unload);
|
||||
}
|
||||
|
||||
static void lcd_preheat_hips()
|
||||
{
|
||||
setTargetHotend0(HIPS_PREHEAT_HOTEND_TEMP);
|
||||
if (!wizard_active) setTargetBed(HIPS_PREHEAT_HPB_TEMP);
|
||||
fanSpeed = HIPS_PREHEAT_FAN_SPEED;
|
||||
lcd_return_to_status();
|
||||
setWatch(); // heater sanity check timer
|
||||
if (wizard_active) lcd_wizard(WizState::Unload);
|
||||
}
|
||||
|
||||
static void lcd_preheat_flex()
|
||||
{
|
||||
setTargetHotend0(FLEX_PREHEAT_HOTEND_TEMP);
|
||||
if (!wizard_active) setTargetBed(FLEX_PREHEAT_HPB_TEMP);
|
||||
fanSpeed = FLEX_PREHEAT_FAN_SPEED;
|
||||
lcd_return_to_status();
|
||||
setWatch(); // heater sanity check timer
|
||||
if (wizard_active) lcd_wizard(WizState::Unload);
|
||||
}
|
||||
|
||||
|
||||
static void lcd_cooldown()
|
||||
{
|
||||
setAllTargetHotends(0);
|
||||
setTargetBed(0);
|
||||
fanSpeed = 0;
|
||||
eFilamentAction = FilamentAction::None;
|
||||
lcd_return_to_status();
|
||||
}
|
||||
|
||||
@ -2021,27 +1933,8 @@ static void lcd_menu_test_restore()
|
||||
|
||||
static void lcd_preheat_menu()
|
||||
{
|
||||
MENU_BEGIN();
|
||||
|
||||
if (!wizard_active) MENU_ITEM_BACK_P(_T(MSG_MAIN));
|
||||
|
||||
if (farm_mode) {
|
||||
MENU_ITEM_FUNCTION_P(PSTR("farm - " STRINGIFY(FARM_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(FARM_PREHEAT_HPB_TEMP)), lcd_preheat_farm);
|
||||
MENU_ITEM_FUNCTION_P(PSTR("nozzle - " STRINGIFY(FARM_PREHEAT_HOTEND_TEMP) "/0"), lcd_preheat_farm_nozzle);
|
||||
MENU_ITEM_FUNCTION_P(_T(MSG_COOLDOWN), lcd_cooldown);
|
||||
} else {
|
||||
MENU_ITEM_FUNCTION_P(PSTR("PLA - " STRINGIFY(PLA_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(PLA_PREHEAT_HPB_TEMP)), lcd_preheat_pla);
|
||||
MENU_ITEM_FUNCTION_P(PSTR("PET - " STRINGIFY(PET_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(PET_PREHEAT_HPB_TEMP)), lcd_preheat_pet);
|
||||
MENU_ITEM_FUNCTION_P(PSTR("ASA - " STRINGIFY(ASA_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(ASA_PREHEAT_HPB_TEMP)), lcd_preheat_asa);
|
||||
MENU_ITEM_FUNCTION_P(PSTR("ABS - " STRINGIFY(ABS_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(ABS_PREHEAT_HPB_TEMP)), lcd_preheat_abs);
|
||||
MENU_ITEM_FUNCTION_P(PSTR("HIPS - " STRINGIFY(HIPS_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(HIPS_PREHEAT_HPB_TEMP)), lcd_preheat_hips);
|
||||
MENU_ITEM_FUNCTION_P(PSTR("PP - " STRINGIFY(PP_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(PP_PREHEAT_HPB_TEMP)), lcd_preheat_pp);
|
||||
MENU_ITEM_FUNCTION_P(PSTR("FLEX - " STRINGIFY(FLEX_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(FLEX_PREHEAT_HPB_TEMP)), lcd_preheat_flex);
|
||||
if (!wizard_active) MENU_ITEM_FUNCTION_P(_T(MSG_COOLDOWN), lcd_cooldown);
|
||||
}
|
||||
|
||||
|
||||
MENU_END();
|
||||
eFilamentAction = FilamentAction::Preheat;
|
||||
mFilamentMenu();
|
||||
}
|
||||
|
||||
static void lcd_support_menu()
|
||||
@ -2194,7 +2087,7 @@ FilamentAction eFilamentAction=FilamentAction::None; // must be initialized as '
|
||||
bool bFilamentFirstRun;
|
||||
bool bFilamentPreheatState;
|
||||
bool bFilamentAction=false;
|
||||
bool bFilamentWaitingFlag=false;
|
||||
static bool bFilamentWaitingFlag=false;
|
||||
|
||||
static void mFilamentPrompt()
|
||||
{
|
||||
@ -2219,6 +2112,7 @@ switch(eFilamentAction)
|
||||
case FilamentAction::MmuEject:
|
||||
case FilamentAction::MmuCut:
|
||||
case FilamentAction::None:
|
||||
case FilamentAction::Preheat:
|
||||
break;
|
||||
}
|
||||
if(lcd_clicked())
|
||||
@ -2247,290 +2141,220 @@ if(lcd_clicked())
|
||||
case FilamentAction::MmuEject:
|
||||
case FilamentAction::MmuCut:
|
||||
case FilamentAction::None:
|
||||
case FilamentAction::Preheat:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
void _mFilamentItem(uint16_t nTemp,uint16_t nTempBed)
|
||||
void mFilamentItem(uint16_t nTemp, uint16_t nTempBed)
|
||||
{
|
||||
static int nTargetOld,nTargetBedOld;
|
||||
uint8_t nLevel;
|
||||
static bool bBeep=false;
|
||||
static int nTargetOld;
|
||||
static int nTargetBedOld;
|
||||
uint8_t nLevel;
|
||||
|
||||
//if(bPreheatState) // not necessary
|
||||
nTargetOld=target_temperature[0];
|
||||
nTargetBedOld=target_temperature_bed;
|
||||
setTargetHotend0((float)nTemp);
|
||||
setTargetBed((float)nTempBed);
|
||||
lcd_timeoutToStatus.stop();
|
||||
lcd_set_cursor(0,0);
|
||||
lcdui_print_temp(LCD_STR_THERMOMETER[0],(int)degHotend(0),(int)degTargetHotend(0));
|
||||
lcd_set_cursor(0,1);
|
||||
switch(eFilamentAction)
|
||||
{
|
||||
case eFILAMENT_ACTION::load:
|
||||
case eFILAMENT_ACTION::autoLoad:
|
||||
case eFILAMENT_ACTION::mmuLoad:
|
||||
lcd_puts_P(_i("Preheating to load")); ////MSG_ c=20 r=1
|
||||
break;
|
||||
case eFILAMENT_ACTION::unLoad:
|
||||
case eFILAMENT_ACTION::mmuUnLoad:
|
||||
lcd_puts_P(_i("Preheating to unload")); ////MSG_ c=20 r=1
|
||||
break;
|
||||
case eFILAMENT_ACTION::mmuEject:
|
||||
lcd_puts_P(_i("Preheating to eject")); ////MSG_ c=20 r=1
|
||||
break;
|
||||
case eFILAMENT_ACTION::mmuCut:
|
||||
lcd_puts_P(_i("Preheating to cut")); ////MSG_ c=20 r=1
|
||||
break;
|
||||
}
|
||||
lcd_set_cursor(0,3);
|
||||
lcd_puts_P(_i(">Cancel")); ////MSG_ c=20 r=1
|
||||
if(lcd_clicked())
|
||||
{
|
||||
if(!bFilamentPreheatState)
|
||||
{
|
||||
setTargetHotend0(0.0);
|
||||
setTargetBed(0.0);
|
||||
menu_back();
|
||||
}
|
||||
else {
|
||||
setTargetHotend0((float)nTargetOld);
|
||||
setTargetBed((float)nTargetBedOld);
|
||||
}
|
||||
menu_back();
|
||||
if(eFilamentAction==eFILAMENT_ACTION::autoLoad)
|
||||
eFilamentAction=eFILAMENT_ACTION::none; // i.e. non-autoLoad
|
||||
}
|
||||
else {
|
||||
if(current_temperature[0]>(target_temperature[0]*0.95))
|
||||
{
|
||||
switch(eFilamentAction)
|
||||
{
|
||||
case eFILAMENT_ACTION::load:
|
||||
case eFILAMENT_ACTION::autoLoad:
|
||||
case eFILAMENT_ACTION::unLoad:
|
||||
menu_submenu(mFilamentPrompt);
|
||||
break;
|
||||
case eFILAMENT_ACTION::mmuLoad:
|
||||
nLevel=1;
|
||||
if(!bFilamentPreheatState)
|
||||
nLevel++;
|
||||
bFilamentAction=true;
|
||||
menu_back(nLevel);
|
||||
menu_submenu(mmu_load_to_nozzle_menu);
|
||||
break;
|
||||
case eFILAMENT_ACTION::mmuUnLoad:
|
||||
nLevel=1;
|
||||
if(!bFilamentPreheatState)
|
||||
nLevel++;
|
||||
bFilamentAction=true;
|
||||
menu_back(nLevel);
|
||||
extr_unload();
|
||||
break;
|
||||
case eFILAMENT_ACTION::mmuEject:
|
||||
nLevel=1;
|
||||
if(!bFilamentPreheatState)
|
||||
nLevel++;
|
||||
bFilamentAction=true;
|
||||
menu_back(nLevel);
|
||||
menu_submenu(mmu_fil_eject_menu);
|
||||
break;
|
||||
case eFILAMENT_ACTION::mmuCut:
|
||||
nLevel=1;
|
||||
if(!bFilamentPreheatState)
|
||||
nLevel++;
|
||||
bFilamentAction=true;
|
||||
menu_back(nLevel);
|
||||
menu_submenu(mmu_cut_filament_menu);
|
||||
break;
|
||||
}
|
||||
if(bBeep)
|
||||
Sound_MakeSound(e_SOUND_TYPE_StandardPrompt);
|
||||
bBeep=false;
|
||||
}
|
||||
else bBeep=true;
|
||||
}
|
||||
}
|
||||
*/
|
||||
nTargetOld = target_temperature[0];
|
||||
nTargetBedOld = target_temperature_bed;
|
||||
setTargetHotend0((float )nTemp);
|
||||
if (!wizard_active) setTargetBed((float) nTempBed);
|
||||
|
||||
void mFilamentItem(uint16_t nTemp,uint16_t nTempBed)
|
||||
{
|
||||
static int nTargetOld,nTargetBedOld;
|
||||
uint8_t nLevel;
|
||||
if (eFilamentAction == FilamentAction::Preheat)
|
||||
{
|
||||
eFilamentAction = FilamentAction::None;
|
||||
lcd_return_to_status();
|
||||
if (wizard_active) lcd_wizard(WizState::Unload);
|
||||
return;
|
||||
}
|
||||
|
||||
//if(bPreheatState) // not necessary
|
||||
nTargetOld=target_temperature[0];
|
||||
nTargetBedOld=target_temperature_bed;
|
||||
setTargetHotend0((float)nTemp);
|
||||
setTargetBed((float)nTempBed);
|
||||
lcd_timeoutToStatus.stop();
|
||||
if(current_temperature[0]>(target_temperature[0]*0.95))
|
||||
{
|
||||
switch(eFilamentAction)
|
||||
{
|
||||
case FilamentAction::Load:
|
||||
case FilamentAction::AutoLoad:
|
||||
case FilamentAction::UnLoad:
|
||||
if(bFilamentWaitingFlag)
|
||||
menu_submenu(mFilamentPrompt);
|
||||
else {
|
||||
nLevel=bFilamentPreheatState?1:2;
|
||||
menu_back(nLevel);
|
||||
if((eFilamentAction==FilamentAction::Load)||(eFilamentAction==FilamentAction::AutoLoad))
|
||||
{
|
||||
loading_flag=true;
|
||||
enquecommand_P(PSTR("M701")); // load filament
|
||||
if(eFilamentAction==FilamentAction::AutoLoad)
|
||||
eFilamentAction=FilamentAction::None; // i.e. non-autoLoad
|
||||
}
|
||||
if(eFilamentAction==FilamentAction::UnLoad)
|
||||
enquecommand_P(PSTR("M702")); // unload filament
|
||||
}
|
||||
break;
|
||||
case FilamentAction::MmuLoad:
|
||||
nLevel=bFilamentPreheatState?1:2;
|
||||
bFilamentAction=true;
|
||||
menu_back(nLevel);
|
||||
menu_submenu(mmu_load_to_nozzle_menu);
|
||||
break;
|
||||
case FilamentAction::MmuUnLoad:
|
||||
nLevel=bFilamentPreheatState?1:2;
|
||||
bFilamentAction=true;
|
||||
menu_back(nLevel);
|
||||
extr_unload();
|
||||
break;
|
||||
case FilamentAction::MmuEject:
|
||||
nLevel=bFilamentPreheatState?1:2;
|
||||
bFilamentAction=true;
|
||||
menu_back(nLevel);
|
||||
menu_submenu(mmu_fil_eject_menu);
|
||||
break;
|
||||
case FilamentAction::MmuCut:
|
||||
lcd_timeoutToStatus.stop();
|
||||
|
||||
if (current_temperature[0] > (target_temperature[0] * 0.95))
|
||||
{
|
||||
switch (eFilamentAction)
|
||||
{
|
||||
case FilamentAction::Load:
|
||||
case FilamentAction::AutoLoad:
|
||||
case FilamentAction::UnLoad:
|
||||
if (bFilamentWaitingFlag) menu_submenu(mFilamentPrompt);
|
||||
else
|
||||
{
|
||||
nLevel = bFilamentPreheatState ? 1 : 2;
|
||||
menu_back(nLevel);
|
||||
if ((eFilamentAction == FilamentAction::Load) || (eFilamentAction == FilamentAction::AutoLoad))
|
||||
{
|
||||
loading_flag = true;
|
||||
enquecommand_P(PSTR("M701")); // load filament
|
||||
if (eFilamentAction == FilamentAction::AutoLoad) eFilamentAction = FilamentAction::None; // i.e. non-autoLoad
|
||||
}
|
||||
if (eFilamentAction == FilamentAction::UnLoad)
|
||||
enquecommand_P(PSTR("M702")); // unload filament
|
||||
}
|
||||
break;
|
||||
case FilamentAction::MmuLoad:
|
||||
nLevel = bFilamentPreheatState ? 1 : 2;
|
||||
bFilamentAction = true;
|
||||
menu_back(nLevel);
|
||||
menu_submenu(mmu_load_to_nozzle_menu);
|
||||
break;
|
||||
case FilamentAction::MmuUnLoad:
|
||||
nLevel = bFilamentPreheatState ? 1 : 2;
|
||||
bFilamentAction = true;
|
||||
menu_back(nLevel);
|
||||
extr_unload();
|
||||
break;
|
||||
case FilamentAction::MmuEject:
|
||||
nLevel = bFilamentPreheatState ? 1 : 2;
|
||||
bFilamentAction = true;
|
||||
menu_back(nLevel);
|
||||
menu_submenu(mmu_fil_eject_menu);
|
||||
break;
|
||||
case FilamentAction::MmuCut:
|
||||
#ifdef MMU_HAS_CUTTER
|
||||
nLevel=bFilamentPreheatState?1:2;
|
||||
bFilamentAction=true;
|
||||
menu_back(nLevel);
|
||||
menu_submenu(mmu_cut_filament_menu);
|
||||
nLevel=bFilamentPreheatState?1:2;
|
||||
bFilamentAction=true;
|
||||
menu_back(nLevel);
|
||||
menu_submenu(mmu_cut_filament_menu);
|
||||
#endif //MMU_HAS_CUTTER
|
||||
break;
|
||||
case FilamentAction::None:
|
||||
break;
|
||||
}
|
||||
if(bFilamentWaitingFlag)
|
||||
Sound_MakeSound(e_SOUND_TYPE_StandardPrompt);
|
||||
bFilamentWaitingFlag=false;
|
||||
}
|
||||
else {
|
||||
bFilamentWaitingFlag=true;
|
||||
lcd_set_cursor(0,0);
|
||||
lcdui_print_temp(LCD_STR_THERMOMETER[0],(int)degHotend(0),(int)degTargetHotend(0));
|
||||
lcd_set_cursor(0,1);
|
||||
switch(eFilamentAction)
|
||||
{
|
||||
case FilamentAction::Load:
|
||||
case FilamentAction::AutoLoad:
|
||||
case FilamentAction::MmuLoad:
|
||||
lcd_puts_P(_i("Preheating to load")); ////MSG_ c=20 r=1
|
||||
break;
|
||||
case FilamentAction::UnLoad:
|
||||
case FilamentAction::MmuUnLoad:
|
||||
lcd_puts_P(_i("Preheating to unload")); ////MSG_ c=20 r=1
|
||||
break;
|
||||
case FilamentAction::MmuEject:
|
||||
lcd_puts_P(_i("Preheating to eject")); ////MSG_ c=20 r=1
|
||||
break;
|
||||
case FilamentAction::MmuCut:
|
||||
lcd_puts_P(_i("Preheating to cut")); ////MSG_ c=20 r=1
|
||||
break;
|
||||
case FilamentAction::None:
|
||||
break;
|
||||
}
|
||||
lcd_set_cursor(0,3);
|
||||
lcd_puts_P(_i(">Cancel")); ////MSG_ c=20 r=1
|
||||
if(lcd_clicked())
|
||||
{
|
||||
bFilamentWaitingFlag=false;
|
||||
if(!bFilamentPreheatState)
|
||||
{
|
||||
setTargetHotend0(0.0);
|
||||
setTargetBed(0.0);
|
||||
menu_back();
|
||||
}
|
||||
else {
|
||||
setTargetHotend0((float)nTargetOld);
|
||||
setTargetBed((float)nTargetBedOld);
|
||||
}
|
||||
menu_back();
|
||||
if(eFilamentAction==FilamentAction::AutoLoad)
|
||||
eFilamentAction=FilamentAction::None; // i.e. non-autoLoad
|
||||
}
|
||||
}
|
||||
break;
|
||||
case FilamentAction::None:
|
||||
case FilamentAction::Preheat:
|
||||
break;
|
||||
}
|
||||
if (bFilamentWaitingFlag) Sound_MakeSound(e_SOUND_TYPE_StandardPrompt);
|
||||
bFilamentWaitingFlag = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
bFilamentWaitingFlag = true;
|
||||
lcd_set_cursor(0, 0);
|
||||
lcdui_print_temp(LCD_STR_THERMOMETER[0], (int) degHotend(0), (int) degTargetHotend(0));
|
||||
lcd_set_cursor(0, 1);
|
||||
switch (eFilamentAction)
|
||||
{
|
||||
case FilamentAction::Load:
|
||||
case FilamentAction::AutoLoad:
|
||||
case FilamentAction::MmuLoad:
|
||||
lcd_puts_P(_i("Preheating to load")); ////MSG_ c=20 r=1
|
||||
break;
|
||||
case FilamentAction::UnLoad:
|
||||
case FilamentAction::MmuUnLoad:
|
||||
lcd_puts_P(_i("Preheating to unload")); ////MSG_ c=20 r=1
|
||||
break;
|
||||
case FilamentAction::MmuEject:
|
||||
lcd_puts_P(_i("Preheating to eject")); ////MSG_ c=20 r=1
|
||||
break;
|
||||
case FilamentAction::MmuCut:
|
||||
lcd_puts_P(_i("Preheating to cut")); ////MSG_ c=20 r=1
|
||||
break;
|
||||
case FilamentAction::None:
|
||||
case FilamentAction::Preheat:
|
||||
break;
|
||||
}
|
||||
lcd_set_cursor(0, 3);
|
||||
lcd_puts_P(_i(">Cancel")); ////MSG_ c=20 r=1
|
||||
if (lcd_clicked())
|
||||
{
|
||||
bFilamentWaitingFlag = false;
|
||||
if (!bFilamentPreheatState)
|
||||
{
|
||||
setTargetHotend0(0.0);
|
||||
setTargetBed(0.0);
|
||||
menu_back();
|
||||
}
|
||||
else
|
||||
{
|
||||
setTargetHotend0((float )nTargetOld);
|
||||
setTargetBed((float) nTargetBedOld);
|
||||
}
|
||||
menu_back();
|
||||
if (eFilamentAction == FilamentAction::AutoLoad) eFilamentAction = FilamentAction::None; // i.e. non-autoLoad
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void mFilamentItem_farm()
|
||||
{
|
||||
bFilamentPreheatState = false;
|
||||
mFilamentItem(FARM_PREHEAT_HOTEND_TEMP, FARM_PREHEAT_HPB_TEMP);
|
||||
}
|
||||
static void mFilamentItem_farm_nozzle()
|
||||
{
|
||||
bFilamentPreheatState = false;
|
||||
mFilamentItem(FARM_PREHEAT_HOTEND_TEMP, 0);
|
||||
}
|
||||
|
||||
static void mFilamentItem_PLA()
|
||||
{
|
||||
bFilamentPreheatState=false;
|
||||
mFilamentItem(PLA_PREHEAT_HOTEND_TEMP,PLA_PREHEAT_HPB_TEMP);
|
||||
bFilamentPreheatState = false;
|
||||
mFilamentItem(PLA_PREHEAT_HOTEND_TEMP, PLA_PREHEAT_HPB_TEMP);
|
||||
}
|
||||
|
||||
static void mFilamentItem_PET()
|
||||
{
|
||||
bFilamentPreheatState=false;
|
||||
mFilamentItem(PET_PREHEAT_HOTEND_TEMP,PET_PREHEAT_HPB_TEMP);
|
||||
bFilamentPreheatState = false;
|
||||
mFilamentItem(PET_PREHEAT_HOTEND_TEMP, PET_PREHEAT_HPB_TEMP);
|
||||
}
|
||||
|
||||
static void mFilamentItem_ASA()
|
||||
{
|
||||
bFilamentPreheatState=false;
|
||||
mFilamentItem(ASA_PREHEAT_HOTEND_TEMP,ASA_PREHEAT_HPB_TEMP);
|
||||
bFilamentPreheatState = false;
|
||||
mFilamentItem(ASA_PREHEAT_HOTEND_TEMP, ASA_PREHEAT_HPB_TEMP);
|
||||
}
|
||||
|
||||
static void mFilamentItem_ABS()
|
||||
{
|
||||
bFilamentPreheatState=false;
|
||||
mFilamentItem(ABS_PREHEAT_HOTEND_TEMP,ABS_PREHEAT_HPB_TEMP);
|
||||
bFilamentPreheatState = false;
|
||||
mFilamentItem(ABS_PREHEAT_HOTEND_TEMP, ABS_PREHEAT_HPB_TEMP);
|
||||
}
|
||||
|
||||
static void mFilamentItem_HIPS()
|
||||
{
|
||||
bFilamentPreheatState=false;
|
||||
mFilamentItem(HIPS_PREHEAT_HOTEND_TEMP,HIPS_PREHEAT_HPB_TEMP);
|
||||
bFilamentPreheatState = false;
|
||||
mFilamentItem(HIPS_PREHEAT_HOTEND_TEMP, HIPS_PREHEAT_HPB_TEMP);
|
||||
}
|
||||
|
||||
static void mFilamentItem_PP()
|
||||
{
|
||||
bFilamentPreheatState=false;
|
||||
mFilamentItem(PP_PREHEAT_HOTEND_TEMP,PP_PREHEAT_HPB_TEMP);
|
||||
bFilamentPreheatState = false;
|
||||
mFilamentItem(PP_PREHEAT_HOTEND_TEMP, PP_PREHEAT_HPB_TEMP);
|
||||
}
|
||||
|
||||
static void mFilamentItem_FLEX()
|
||||
{
|
||||
bFilamentPreheatState=false;
|
||||
mFilamentItem(FLEX_PREHEAT_HOTEND_TEMP,FLEX_PREHEAT_HPB_TEMP);
|
||||
bFilamentPreheatState = false;
|
||||
mFilamentItem(FLEX_PREHEAT_HOTEND_TEMP, FLEX_PREHEAT_HPB_TEMP);
|
||||
}
|
||||
|
||||
|
||||
void mFilamentBack()
|
||||
{
|
||||
menu_back();
|
||||
if(eFilamentAction==FilamentAction::AutoLoad)
|
||||
eFilamentAction=FilamentAction::None; // i.e. non-autoLoad
|
||||
menu_back();
|
||||
if (eFilamentAction == FilamentAction::AutoLoad ||
|
||||
eFilamentAction == FilamentAction::Preheat)
|
||||
{
|
||||
eFilamentAction = FilamentAction::None; // i.e. non-autoLoad
|
||||
}
|
||||
}
|
||||
|
||||
void mFilamentMenu()
|
||||
{
|
||||
MENU_BEGIN();
|
||||
MENU_ITEM_FUNCTION_P(_T(MSG_MAIN),mFilamentBack);
|
||||
MENU_ITEM_SUBMENU_P(PSTR("PLA - " STRINGIFY(PLA_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(PLA_PREHEAT_HPB_TEMP)),mFilamentItem_PLA);
|
||||
MENU_ITEM_SUBMENU_P(PSTR("PET - " STRINGIFY(PET_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(PET_PREHEAT_HPB_TEMP)),mFilamentItem_PET);
|
||||
MENU_ITEM_SUBMENU_P(PSTR("ASA - " STRINGIFY(ASA_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(ASA_PREHEAT_HPB_TEMP)),mFilamentItem_ASA);
|
||||
MENU_ITEM_SUBMENU_P(PSTR("ABS - " STRINGIFY(ABS_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(ABS_PREHEAT_HPB_TEMP)),mFilamentItem_ABS);
|
||||
MENU_ITEM_SUBMENU_P(PSTR("HIPS - " STRINGIFY(HIPS_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(HIPS_PREHEAT_HPB_TEMP)),mFilamentItem_HIPS);
|
||||
MENU_ITEM_SUBMENU_P(PSTR("PP - " STRINGIFY(PP_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(PP_PREHEAT_HPB_TEMP)),mFilamentItem_PP);
|
||||
MENU_ITEM_SUBMENU_P(PSTR("FLEX - " STRINGIFY(FLEX_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(FLEX_PREHEAT_HPB_TEMP)),mFilamentItem_FLEX);
|
||||
if (!wizard_active) MENU_ITEM_FUNCTION_P(_T(MSG_MAIN),mFilamentBack);
|
||||
if (farm_mode)
|
||||
{
|
||||
MENU_ITEM_FUNCTION_P(PSTR("farm - " STRINGIFY(FARM_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(FARM_PREHEAT_HPB_TEMP)), mFilamentItem_farm);
|
||||
MENU_ITEM_FUNCTION_P(PSTR("nozzle - " STRINGIFY(FARM_PREHEAT_HOTEND_TEMP) "/0"), mFilamentItem_farm_nozzle);
|
||||
}
|
||||
else
|
||||
{
|
||||
MENU_ITEM_SUBMENU_P(PSTR("PLA - " STRINGIFY(PLA_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(PLA_PREHEAT_HPB_TEMP)),mFilamentItem_PLA);
|
||||
MENU_ITEM_SUBMENU_P(PSTR("PET - " STRINGIFY(PET_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(PET_PREHEAT_HPB_TEMP)),mFilamentItem_PET);
|
||||
MENU_ITEM_SUBMENU_P(PSTR("ASA - " STRINGIFY(ASA_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(ASA_PREHEAT_HPB_TEMP)),mFilamentItem_ASA);
|
||||
MENU_ITEM_SUBMENU_P(PSTR("ABS - " STRINGIFY(ABS_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(ABS_PREHEAT_HPB_TEMP)),mFilamentItem_ABS);
|
||||
MENU_ITEM_SUBMENU_P(PSTR("HIPS - " STRINGIFY(HIPS_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(HIPS_PREHEAT_HPB_TEMP)),mFilamentItem_HIPS);
|
||||
MENU_ITEM_SUBMENU_P(PSTR("PP - " STRINGIFY(PP_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(PP_PREHEAT_HPB_TEMP)),mFilamentItem_PP);
|
||||
MENU_ITEM_SUBMENU_P(PSTR("FLEX - " STRINGIFY(FLEX_PREHEAT_HOTEND_TEMP) "/" STRINGIFY(FLEX_PREHEAT_HPB_TEMP)),mFilamentItem_FLEX);
|
||||
}
|
||||
if (!wizard_active && eFilamentAction == FilamentAction::Preheat) MENU_ITEM_FUNCTION_P(_T(MSG_COOLDOWN), lcd_cooldown);
|
||||
MENU_END();
|
||||
}
|
||||
|
||||
@ -8489,8 +8313,23 @@ uint8_t get_message_level()
|
||||
|
||||
void menu_lcd_longpress_func(void)
|
||||
{
|
||||
move_menu_scale = 1.0;
|
||||
menu_submenu(lcd_move_z);
|
||||
if (homing_flag || mesh_bed_leveling_flag || menu_menu == lcd_babystep_z || menu_menu == lcd_move_z)
|
||||
{
|
||||
// disable longpress during re-entry, while homing or calibration
|
||||
lcd_quick_feedback();
|
||||
return;
|
||||
}
|
||||
|
||||
if (current_position[Z_AXIS] < Z_HEIGHT_HIDE_LIVE_ADJUST_MENU && (moves_planned() || IS_SD_PRINTING || is_usb_printing ))
|
||||
{
|
||||
lcd_clear();
|
||||
menu_submenu(lcd_babystep_z);
|
||||
}
|
||||
else
|
||||
{
|
||||
move_menu_scale = 1.0;
|
||||
menu_submenu(lcd_move_z);
|
||||
}
|
||||
}
|
||||
|
||||
void menu_lcd_charsetup_func(void)
|
||||
|
@ -167,6 +167,7 @@ enum class FilamentAction : uint_least8_t
|
||||
MmuUnLoad,
|
||||
MmuEject,
|
||||
MmuCut,
|
||||
Preheat,
|
||||
};
|
||||
|
||||
extern FilamentAction eFilamentAction;
|
||||
|
@ -257,7 +257,7 @@ BED SETTINGS
|
||||
#define BED_ADJUSTMENT_UM_MAX 100
|
||||
|
||||
#define MESH_HOME_Z_CALIB 0.2
|
||||
#define MESH_HOME_Z_SEARCH 5 //Z lift for homing, mesh bed leveling etc.
|
||||
#define MESH_HOME_Z_SEARCH 5.0f // Z lift for homing, mesh bed leveling etc.
|
||||
|
||||
#define X_PROBE_OFFSET_FROM_EXTRUDER 23 // Z probe to nozzle X offset: -left +right
|
||||
#define Y_PROBE_OFFSET_FROM_EXTRUDER 9 // Z probe to nozzle Y offset: -front +behind
|
||||
|
@ -256,7 +256,7 @@ BED SETTINGS
|
||||
#define BED_ADJUSTMENT_UM_MAX 100
|
||||
|
||||
#define MESH_HOME_Z_CALIB 0.2
|
||||
#define MESH_HOME_Z_SEARCH 5 //Z lift for homing, mesh bed leveling etc.
|
||||
#define MESH_HOME_Z_SEARCH 5.0f // Z lift for homing, mesh bed leveling etc.
|
||||
|
||||
#define X_PROBE_OFFSET_FROM_EXTRUDER 23 // Z probe to nozzle X offset: -left +right
|
||||
#define Y_PROBE_OFFSET_FROM_EXTRUDER 9 // Z probe to nozzle Y offset: -front +behind
|
||||
@ -319,35 +319,27 @@ PREHEAT SETTINGS
|
||||
|
||||
#define FARM_PREHEAT_HOTEND_TEMP 250
|
||||
#define FARM_PREHEAT_HPB_TEMP 80
|
||||
#define FARM_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PLA_PREHEAT_HOTEND_TEMP 215
|
||||
#define PLA_PREHEAT_HPB_TEMP 55
|
||||
#define PLA_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define ASA_PREHEAT_HOTEND_TEMP 260
|
||||
#define ASA_PREHEAT_HPB_TEMP 105
|
||||
#define ASA_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define ABS_PREHEAT_HOTEND_TEMP 255
|
||||
#define ABS_PREHEAT_HPB_TEMP 100
|
||||
#define ABS_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define HIPS_PREHEAT_HOTEND_TEMP 220
|
||||
#define HIPS_PREHEAT_HPB_TEMP 100
|
||||
#define HIPS_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PP_PREHEAT_HOTEND_TEMP 254
|
||||
#define PP_PREHEAT_HPB_TEMP 100
|
||||
#define PP_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PET_PREHEAT_HOTEND_TEMP 240
|
||||
#define PET_PREHEAT_HPB_TEMP 90
|
||||
#define PET_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define FLEX_PREHEAT_HOTEND_TEMP 230
|
||||
#define FLEX_PREHEAT_HPB_TEMP 50
|
||||
#define FLEX_PREHEAT_FAN_SPEED 0
|
||||
|
||||
/*------------------------------------
|
||||
THERMISTORS SETTINGS
|
||||
|
@ -314,7 +314,7 @@
|
||||
#define BED_ADJUSTMENT_UM_MAX 100
|
||||
|
||||
#define MESH_HOME_Z_CALIB 0.2
|
||||
#define MESH_HOME_Z_SEARCH 5 //Z lift for homing, mesh bed leveling etc.
|
||||
#define MESH_HOME_Z_SEARCH 5.0f // Z lift for homing, mesh bed leveling etc.
|
||||
|
||||
#define X_PROBE_OFFSET_FROM_EXTRUDER 23 // Z probe to nozzle X offset: -left +right
|
||||
#define Y_PROBE_OFFSET_FROM_EXTRUDER 5 // Z probe to nozzle Y offset: -front +behind
|
||||
@ -377,35 +377,27 @@
|
||||
|
||||
#define FARM_PREHEAT_HOTEND_TEMP 250
|
||||
#define FARM_PREHEAT_HPB_TEMP 80
|
||||
#define FARM_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PLA_PREHEAT_HOTEND_TEMP 215
|
||||
#define PLA_PREHEAT_HPB_TEMP 60
|
||||
#define PLA_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define ASA_PREHEAT_HOTEND_TEMP 260
|
||||
#define ASA_PREHEAT_HPB_TEMP 105
|
||||
#define ASA_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define ABS_PREHEAT_HOTEND_TEMP 255
|
||||
#define ABS_PREHEAT_HPB_TEMP 100
|
||||
#define ABS_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define HIPS_PREHEAT_HOTEND_TEMP 220
|
||||
#define HIPS_PREHEAT_HPB_TEMP 100
|
||||
#define HIPS_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PP_PREHEAT_HOTEND_TEMP 254
|
||||
#define PP_PREHEAT_HPB_TEMP 100
|
||||
#define PP_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PET_PREHEAT_HOTEND_TEMP 230
|
||||
#define PET_PREHEAT_HPB_TEMP 85
|
||||
#define PET_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define FLEX_PREHEAT_HOTEND_TEMP 240
|
||||
#define FLEX_PREHEAT_HPB_TEMP 50
|
||||
#define FLEX_PREHEAT_FAN_SPEED 0
|
||||
|
||||
/*------------------------------------
|
||||
THERMISTORS SETTINGS
|
||||
|
@ -315,7 +315,7 @@
|
||||
#define BED_ADJUSTMENT_UM_MAX 100
|
||||
|
||||
#define MESH_HOME_Z_CALIB 0.2
|
||||
#define MESH_HOME_Z_SEARCH 5 //Z lift for homing, mesh bed leveling etc.
|
||||
#define MESH_HOME_Z_SEARCH 5.0f // Z lift for homing, mesh bed leveling etc.
|
||||
|
||||
#define X_PROBE_OFFSET_FROM_EXTRUDER 23 // Z probe to nozzle X offset: -left +right
|
||||
#define Y_PROBE_OFFSET_FROM_EXTRUDER 5 // Z probe to nozzle Y offset: -front +behind
|
||||
@ -378,35 +378,27 @@
|
||||
|
||||
#define FARM_PREHEAT_HOTEND_TEMP 250
|
||||
#define FARM_PREHEAT_HPB_TEMP 80
|
||||
#define FARM_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PLA_PREHEAT_HOTEND_TEMP 215
|
||||
#define PLA_PREHEAT_HPB_TEMP 60
|
||||
#define PLA_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define ASA_PREHEAT_HOTEND_TEMP 260
|
||||
#define ASA_PREHEAT_HPB_TEMP 105
|
||||
#define ASA_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define ABS_PREHEAT_HOTEND_TEMP 255
|
||||
#define ABS_PREHEAT_HPB_TEMP 100
|
||||
#define ABS_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define HIPS_PREHEAT_HOTEND_TEMP 220
|
||||
#define HIPS_PREHEAT_HPB_TEMP 100
|
||||
#define HIPS_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PP_PREHEAT_HOTEND_TEMP 254
|
||||
#define PP_PREHEAT_HPB_TEMP 100
|
||||
#define PP_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PET_PREHEAT_HOTEND_TEMP 230
|
||||
#define PET_PREHEAT_HPB_TEMP 85
|
||||
#define PET_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define FLEX_PREHEAT_HOTEND_TEMP 240
|
||||
#define FLEX_PREHEAT_HPB_TEMP 50
|
||||
#define FLEX_PREHEAT_FAN_SPEED 0
|
||||
|
||||
/*------------------------------------
|
||||
THERMISTORS SETTINGS
|
||||
|
@ -314,7 +314,7 @@
|
||||
#define BED_ADJUSTMENT_UM_MAX 100
|
||||
|
||||
#define MESH_HOME_Z_CALIB 0.2
|
||||
#define MESH_HOME_Z_SEARCH 5 //Z lift for homing, mesh bed leveling etc.
|
||||
#define MESH_HOME_Z_SEARCH 5.0f // Z lift for homing, mesh bed leveling etc.
|
||||
|
||||
#define X_PROBE_OFFSET_FROM_EXTRUDER 23 // Z probe to nozzle X offset: -left +right
|
||||
#define Y_PROBE_OFFSET_FROM_EXTRUDER 5 // Z probe to nozzle Y offset: -front +behind
|
||||
@ -377,35 +377,27 @@
|
||||
|
||||
#define FARM_PREHEAT_HOTEND_TEMP 250
|
||||
#define FARM_PREHEAT_HPB_TEMP 80
|
||||
#define FARM_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PLA_PREHEAT_HOTEND_TEMP 215
|
||||
#define PLA_PREHEAT_HPB_TEMP 60
|
||||
#define PLA_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define ASA_PREHEAT_HOTEND_TEMP 260
|
||||
#define ASA_PREHEAT_HPB_TEMP 105
|
||||
#define ASA_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define ABS_PREHEAT_HOTEND_TEMP 255
|
||||
#define ABS_PREHEAT_HPB_TEMP 100
|
||||
#define ABS_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define HIPS_PREHEAT_HOTEND_TEMP 220
|
||||
#define HIPS_PREHEAT_HPB_TEMP 100
|
||||
#define HIPS_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PP_PREHEAT_HOTEND_TEMP 254
|
||||
#define PP_PREHEAT_HPB_TEMP 100
|
||||
#define PP_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PET_PREHEAT_HOTEND_TEMP 230
|
||||
#define PET_PREHEAT_HPB_TEMP 85
|
||||
#define PET_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define FLEX_PREHEAT_HOTEND_TEMP 240
|
||||
#define FLEX_PREHEAT_HPB_TEMP 50
|
||||
#define FLEX_PREHEAT_FAN_SPEED 0
|
||||
|
||||
/*------------------------------------
|
||||
THERMISTORS SETTINGS
|
||||
|
@ -315,7 +315,7 @@
|
||||
#define BED_ADJUSTMENT_UM_MAX 100
|
||||
|
||||
#define MESH_HOME_Z_CALIB 0.2
|
||||
#define MESH_HOME_Z_SEARCH 5 //Z lift for homing, mesh bed leveling etc.
|
||||
#define MESH_HOME_Z_SEARCH 5.0f // Z lift for homing, mesh bed leveling etc.
|
||||
|
||||
#define X_PROBE_OFFSET_FROM_EXTRUDER 23 // Z probe to nozzle X offset: -left +right
|
||||
#define Y_PROBE_OFFSET_FROM_EXTRUDER 5 // Z probe to nozzle Y offset: -front +behind
|
||||
@ -378,35 +378,27 @@
|
||||
|
||||
#define FARM_PREHEAT_HOTEND_TEMP 250
|
||||
#define FARM_PREHEAT_HPB_TEMP 80
|
||||
#define FARM_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PLA_PREHEAT_HOTEND_TEMP 215
|
||||
#define PLA_PREHEAT_HPB_TEMP 60
|
||||
#define PLA_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define ASA_PREHEAT_HOTEND_TEMP 260
|
||||
#define ASA_PREHEAT_HPB_TEMP 105
|
||||
#define ASA_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define ABS_PREHEAT_HOTEND_TEMP 255
|
||||
#define ABS_PREHEAT_HPB_TEMP 100
|
||||
#define ABS_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define HIPS_PREHEAT_HOTEND_TEMP 220
|
||||
#define HIPS_PREHEAT_HPB_TEMP 100
|
||||
#define HIPS_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PP_PREHEAT_HOTEND_TEMP 254
|
||||
#define PP_PREHEAT_HPB_TEMP 100
|
||||
#define PP_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PET_PREHEAT_HOTEND_TEMP 230
|
||||
#define PET_PREHEAT_HPB_TEMP 85
|
||||
#define PET_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define FLEX_PREHEAT_HOTEND_TEMP 240
|
||||
#define FLEX_PREHEAT_HPB_TEMP 50
|
||||
#define FLEX_PREHEAT_FAN_SPEED 0
|
||||
|
||||
/*------------------------------------
|
||||
THERMISTORS SETTINGS
|
||||
|
@ -422,7 +422,7 @@
|
||||
#define BED_ADJUSTMENT_UM_MAX 100
|
||||
|
||||
#define MESH_HOME_Z_CALIB 0.2
|
||||
#define MESH_HOME_Z_SEARCH 5 //Z lift for homing, mesh bed leveling etc.
|
||||
#define MESH_HOME_Z_SEARCH 5.0f // Z lift for homing, mesh bed leveling etc.
|
||||
|
||||
#define X_PROBE_OFFSET_FROM_EXTRUDER 23 // Z probe to nozzle X offset: -left +right
|
||||
#define Y_PROBE_OFFSET_FROM_EXTRUDER 5 // Z probe to nozzle Y offset: -front +behind
|
||||
@ -487,35 +487,27 @@
|
||||
|
||||
#define FARM_PREHEAT_HOTEND_TEMP 250
|
||||
#define FARM_PREHEAT_HPB_TEMP 80
|
||||
#define FARM_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PLA_PREHEAT_HOTEND_TEMP 215
|
||||
#define PLA_PREHEAT_HPB_TEMP 60
|
||||
#define PLA_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define ASA_PREHEAT_HOTEND_TEMP 260
|
||||
#define ASA_PREHEAT_HPB_TEMP 105
|
||||
#define ASA_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define ABS_PREHEAT_HOTEND_TEMP 255
|
||||
#define ABS_PREHEAT_HPB_TEMP 100
|
||||
#define ABS_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define HIPS_PREHEAT_HOTEND_TEMP 220
|
||||
#define HIPS_PREHEAT_HPB_TEMP 100
|
||||
#define HIPS_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PP_PREHEAT_HOTEND_TEMP 254
|
||||
#define PP_PREHEAT_HPB_TEMP 100
|
||||
#define PP_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PET_PREHEAT_HOTEND_TEMP 230
|
||||
#define PET_PREHEAT_HPB_TEMP 85
|
||||
#define PET_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define FLEX_PREHEAT_HOTEND_TEMP 240
|
||||
#define FLEX_PREHEAT_HPB_TEMP 50
|
||||
#define FLEX_PREHEAT_FAN_SPEED 0
|
||||
|
||||
/*------------------------------------
|
||||
THERMISTORS SETTINGS
|
||||
|
@ -424,7 +424,7 @@
|
||||
#define BED_ADJUSTMENT_UM_MAX 100
|
||||
|
||||
#define MESH_HOME_Z_CALIB 0.2
|
||||
#define MESH_HOME_Z_SEARCH 5 //Z lift for homing, mesh bed leveling etc.
|
||||
#define MESH_HOME_Z_SEARCH 5.0f // Z lift for homing, mesh bed leveling etc.
|
||||
|
||||
#define X_PROBE_OFFSET_FROM_EXTRUDER 23 // Z probe to nozzle X offset: -left +right
|
||||
#define Y_PROBE_OFFSET_FROM_EXTRUDER 5 // Z probe to nozzle Y offset: -front +behind
|
||||
@ -489,35 +489,27 @@
|
||||
|
||||
#define FARM_PREHEAT_HOTEND_TEMP 250
|
||||
#define FARM_PREHEAT_HPB_TEMP 80
|
||||
#define FARM_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PLA_PREHEAT_HOTEND_TEMP 215
|
||||
#define PLA_PREHEAT_HPB_TEMP 60
|
||||
#define PLA_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define ASA_PREHEAT_HOTEND_TEMP 260
|
||||
#define ASA_PREHEAT_HPB_TEMP 105
|
||||
#define ASA_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define ABS_PREHEAT_HOTEND_TEMP 255
|
||||
#define ABS_PREHEAT_HPB_TEMP 100
|
||||
#define ABS_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define HIPS_PREHEAT_HOTEND_TEMP 220
|
||||
#define HIPS_PREHEAT_HPB_TEMP 100
|
||||
#define HIPS_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PP_PREHEAT_HOTEND_TEMP 254
|
||||
#define PP_PREHEAT_HPB_TEMP 100
|
||||
#define PP_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define PET_PREHEAT_HOTEND_TEMP 230
|
||||
#define PET_PREHEAT_HPB_TEMP 85
|
||||
#define PET_PREHEAT_FAN_SPEED 0
|
||||
|
||||
#define FLEX_PREHEAT_HOTEND_TEMP 240
|
||||
#define FLEX_PREHEAT_HPB_TEMP 50
|
||||
#define FLEX_PREHEAT_FAN_SPEED 0
|
||||
|
||||
/*------------------------------------
|
||||
THERMISTORS SETTINGS
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
#
|
||||
# lang-export.sh - multi-language support script
|
||||
# for generating lang_xx.po
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
#
|
||||
# lang-import.sh - multi-language support script
|
||||
# for importing translated xx.po
|
||||
|
144
lang/lang_en.txt
144
lang/lang_en.txt
@ -906,3 +906,147 @@
|
||||
|
||||
#MSG_ON
|
||||
"On"
|
||||
|
||||
#
|
||||
"Back"
|
||||
|
||||
#
|
||||
"Checks"
|
||||
|
||||
#
|
||||
"False triggering"
|
||||
|
||||
#
|
||||
"FINDA:"
|
||||
|
||||
#
|
||||
"Firmware [none]"
|
||||
|
||||
#
|
||||
"Firmware [strict]"
|
||||
|
||||
#
|
||||
"Firmware [warn]"
|
||||
|
||||
#
|
||||
"HW Setup"
|
||||
|
||||
#
|
||||
"IR:"
|
||||
|
||||
#
|
||||
"Magnets comp.[N/A]"
|
||||
|
||||
#
|
||||
"Magnets comp.[Off]"
|
||||
|
||||
#
|
||||
"Magnets comp. [On]"
|
||||
|
||||
#
|
||||
"Mesh [3x3]"
|
||||
|
||||
#
|
||||
"Mesh [7x7]"
|
||||
|
||||
#
|
||||
"Mesh bed leveling"
|
||||
|
||||
#
|
||||
"MK3S firmware detected on MK3 printer"
|
||||
|
||||
#
|
||||
"MMU Mode [Normal]"
|
||||
|
||||
#
|
||||
"MMU Mode[Stealth]"
|
||||
|
||||
#
|
||||
"Mode change in progress ..."
|
||||
|
||||
#
|
||||
"Model [none]"
|
||||
|
||||
#
|
||||
"Model [strict]"
|
||||
|
||||
#
|
||||
"Model [warn]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.25]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.40]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.60]"
|
||||
|
||||
#
|
||||
"Nozzle [none]"
|
||||
|
||||
#
|
||||
"Nozzle [strict]"
|
||||
|
||||
#
|
||||
"Nozzle [warn]"
|
||||
|
||||
#
|
||||
"G-code sliced for a different level. Continue?"
|
||||
|
||||
#
|
||||
"G-code sliced for a different level. Please re-slice the model again. Print cancelled."
|
||||
|
||||
#
|
||||
"G-code sliced for a different printer type. Continue?"
|
||||
|
||||
#
|
||||
"G-code sliced for a different printer type. Please re-slice the model again. Print cancelled."
|
||||
|
||||
#
|
||||
"G-code sliced for a newer firmware. Continue?"
|
||||
|
||||
#
|
||||
"G-code sliced for a newer firmware. Please update the firmware. Print cancelled."
|
||||
|
||||
#
|
||||
"PINDA:"
|
||||
|
||||
#
|
||||
"Preheating to cut"
|
||||
|
||||
#
|
||||
"Preheating to eject"
|
||||
|
||||
#
|
||||
"Printer nozzle diameter differs from the G-code. Continue?"
|
||||
|
||||
#
|
||||
"Printer nozzle diameter differs from the G-code. Please check the value in settings. Print cancelled."
|
||||
|
||||
#
|
||||
"Rename"
|
||||
|
||||
#
|
||||
"Select"
|
||||
|
||||
#
|
||||
"Sensor info"
|
||||
|
||||
#
|
||||
"Sheet"
|
||||
|
||||
#
|
||||
"Sound [assist]"
|
||||
|
||||
#
|
||||
"Steel sheets"
|
||||
|
||||
#
|
||||
"Z-correct:"
|
||||
|
||||
#
|
||||
"Z-probe nr. [1]"
|
||||
|
||||
#
|
||||
"Z-probe nr. [3]"
|
||||
|
@ -24,7 +24,7 @@
|
||||
|
||||
#MSG_BABYSTEPPING_Z c=15
|
||||
"Adjusting Z:"
|
||||
"Dostavovani Z:"
|
||||
"Doladeni Z:"
|
||||
|
||||
#MSG_SELFTEST_CHECK_ALLCORRECT c=20
|
||||
"All correct "
|
||||
@ -280,7 +280,7 @@
|
||||
|
||||
#
|
||||
"Filam. runouts"
|
||||
"Vypadky filamentu"
|
||||
"Vypadky filam."
|
||||
|
||||
#MSG_FILAMENT_CLEAN c=20 r=2
|
||||
"Filament extruding & with correct color?"
|
||||
@ -656,7 +656,7 @@
|
||||
|
||||
#
|
||||
"Nozzle FAN"
|
||||
"Trysk. vent."
|
||||
"Tryska V."
|
||||
|
||||
#MSG_PAUSE_PRINT
|
||||
"Pause print"
|
||||
@ -760,7 +760,7 @@
|
||||
|
||||
#MSG_WIZARD_HEATING c=20 r=3
|
||||
"Preheating nozzle. Please wait."
|
||||
"Predehrivam trysku. Prosim cekejte."
|
||||
"Predehrev trysky. Prosim cekejte."
|
||||
|
||||
#
|
||||
"Please upgrade."
|
||||
@ -780,15 +780,15 @@
|
||||
|
||||
#
|
||||
"Preheating to load"
|
||||
"Predehrivam k zavedeni"
|
||||
"Predehrev k zavedeni"
|
||||
|
||||
#
|
||||
"Preheating to unload"
|
||||
"Predehrivam k vyjmuti"
|
||||
"Predehrev k vyjmuti"
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
"Print fan:"
|
||||
"Tiskovy vent.:"
|
||||
"Tiskovy v:"
|
||||
|
||||
#MSG_CARD_MENU
|
||||
"Print from SD"
|
||||
@ -796,7 +796,7 @@
|
||||
|
||||
#
|
||||
"Press the knob"
|
||||
"Stisknete tlacitko"
|
||||
"Stisknete hl. tlacitko"
|
||||
|
||||
#MSG_PRINT_PAUSED c=20 r=1
|
||||
"Print paused"
|
||||
@ -812,7 +812,7 @@
|
||||
|
||||
#
|
||||
"Print FAN"
|
||||
"Tiskovy vent."
|
||||
"Tiskovy v"
|
||||
|
||||
#MSG_PRUSA3D
|
||||
"prusa3d.com"
|
||||
@ -1206,6 +1206,198 @@
|
||||
"Off"
|
||||
"Vyp"
|
||||
|
||||
#
|
||||
"Back"
|
||||
"Zpet"
|
||||
|
||||
#
|
||||
"Checks"
|
||||
"Kontrola"
|
||||
|
||||
#
|
||||
"False triggering"
|
||||
"Falesne spusteni"
|
||||
|
||||
#
|
||||
"FINDA:"
|
||||
"\x00"
|
||||
|
||||
#MSG_ON
|
||||
"On"
|
||||
"Zap"
|
||||
|
||||
#
|
||||
"Firmware [none]"
|
||||
"Firmware [Zadne]"
|
||||
|
||||
#
|
||||
"Firmware [strict]"
|
||||
"Firmware [Prisne]"
|
||||
|
||||
#
|
||||
"Firmware [warn]"
|
||||
"Firmware[Varovat]"
|
||||
|
||||
#
|
||||
"HW Setup"
|
||||
"HW nastaveni"
|
||||
|
||||
#
|
||||
"IR:"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"Magnets comp.[N/A]"
|
||||
"Komp. magnetu[N/A]"
|
||||
|
||||
#
|
||||
"Magnets comp.[Off]"
|
||||
"Komp. magnetu[Vyp]"
|
||||
|
||||
#
|
||||
"Magnets comp. [On]"
|
||||
"Komp. magnetu[Zap]"
|
||||
|
||||
#
|
||||
"Mesh [3x3]"
|
||||
"Mesh [3x3]"
|
||||
|
||||
#
|
||||
"Mesh [7x7]"
|
||||
"Mesh [7x7]"
|
||||
|
||||
#
|
||||
"Mesh bed leveling"
|
||||
"Mesh Bed Leveling"
|
||||
|
||||
#
|
||||
"MK3S firmware detected on MK3 printer"
|
||||
"MK3S firmware detekovan na tiskarne MK3"
|
||||
|
||||
#
|
||||
"MMU Mode [Normal]"
|
||||
"MMU mod [Normal]"
|
||||
|
||||
#
|
||||
"MMU Mode[Stealth]"
|
||||
"MMU Mod [Tichy]"
|
||||
|
||||
#
|
||||
"Mode change in progress ..."
|
||||
"Probiha zmena modu..."
|
||||
|
||||
#
|
||||
"Model [none]"
|
||||
"Model [Zadne]"
|
||||
|
||||
#
|
||||
"Model [strict]"
|
||||
"Model [Prisne]"
|
||||
|
||||
#
|
||||
"Model [warn]"
|
||||
"Model [Varovat]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.25]"
|
||||
"Tryska [0.25]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.40]"
|
||||
"Tryska [0.40]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.60]"
|
||||
"Tryska [0.60]"
|
||||
|
||||
#
|
||||
"Nozzle [none]"
|
||||
"Tryska [Zadne]"
|
||||
|
||||
#
|
||||
"Nozzle [strict]"
|
||||
"Tryska [Prisne]"
|
||||
|
||||
#
|
||||
"Nozzle [warn]"
|
||||
"Tryska [Varovat]"
|
||||
|
||||
#
|
||||
"G-code sliced for a different level. Continue?"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"G-code sliced for a different level. Please re-slice the model again. Print cancelled."
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"G-code sliced for a different printer type. Continue?"
|
||||
"G-code je pripraven pro jiny typ tiskarny. Pokracovat?"
|
||||
|
||||
#
|
||||
"G-code sliced for a different printer type. Please re-slice the model again. Print cancelled."
|
||||
"G-code je pripraven pro jiny typ tiskarny. Prosim preslicujte model znovu. Tisk zrusen."
|
||||
|
||||
#
|
||||
"G-code sliced for a newer firmware. Continue?"
|
||||
"G-code je pripraven pro novejsi firmware. Pokracovat?"
|
||||
|
||||
#
|
||||
"G-code sliced for a newer firmware. Please update the firmware. Print cancelled."
|
||||
"G-code je pripraven pro novejsi firmware. Prosim aktualizujte firmware. Tisk zrusen."
|
||||
|
||||
#
|
||||
"PINDA:"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"Preheating to cut"
|
||||
"Predehrev k ustrizeni"
|
||||
|
||||
#
|
||||
"Preheating to eject"
|
||||
"Predehrev k vysunuti"
|
||||
|
||||
#
|
||||
"Printer nozzle diameter differs from the G-code. Continue?"
|
||||
"Prumer trysky tiskarny se lisi od G-code. Pokracovat?"
|
||||
|
||||
#
|
||||
"Printer nozzle diameter differs from the G-code. Please check the value in settings. Print cancelled."
|
||||
"Prumer trysky tiskarny se lisi od G-code. Prosim zkontrolujte nastaveni. Tisk zrusen."
|
||||
|
||||
#
|
||||
"Rename"
|
||||
"Prejmenovat"
|
||||
|
||||
#
|
||||
"Select"
|
||||
"Vybrat"
|
||||
|
||||
#
|
||||
"Sensor info"
|
||||
"Senzor info"
|
||||
|
||||
#
|
||||
"Sheet"
|
||||
"Plat"
|
||||
|
||||
#
|
||||
"Sound [assist]"
|
||||
"Zvuk [Asist.]"
|
||||
|
||||
#
|
||||
"Steel sheets"
|
||||
"Tiskove platy"
|
||||
|
||||
#
|
||||
"Z-correct:"
|
||||
"Korekce Z:"
|
||||
|
||||
#
|
||||
"Z-probe nr. [1]"
|
||||
"Pocet mereni Z [1]"
|
||||
|
||||
#
|
||||
"Z-probe nr. [3]"
|
||||
"Pocet mereni Z [3]"
|
||||
|
@ -24,11 +24,11 @@
|
||||
|
||||
#MSG_BABYSTEPPING_Z c=15
|
||||
"Adjusting Z:"
|
||||
"Z Einstellung:"
|
||||
"Z Anpassen:"
|
||||
|
||||
#MSG_SELFTEST_CHECK_ALLCORRECT c=20
|
||||
"All correct "
|
||||
"Alles richtig "
|
||||
"Alles richtig "
|
||||
|
||||
#MSG_WIZARD_DONE c=20 r=8
|
||||
"All is done. Happy printing!"
|
||||
@ -656,7 +656,7 @@
|
||||
|
||||
#
|
||||
"Nozzle FAN"
|
||||
"Duesen Luefter"
|
||||
"Duesevent."
|
||||
|
||||
#MSG_PAUSE_PRINT
|
||||
"Pause print"
|
||||
@ -812,7 +812,7 @@
|
||||
|
||||
#
|
||||
"Print FAN"
|
||||
"Druckluefter"
|
||||
"Druckvent"
|
||||
|
||||
#MSG_PRUSA3D
|
||||
"prusa3d.com"
|
||||
@ -852,7 +852,7 @@
|
||||
|
||||
#MSG_BED_CORRECTION_RIGHT c=14 r=1
|
||||
"Right side[um]"
|
||||
"Rechts [um]"
|
||||
"Rechts [um]"
|
||||
|
||||
#MSG_RPI_PORT
|
||||
"RPi port"
|
||||
@ -892,7 +892,7 @@
|
||||
|
||||
#MSG_SELFTEST
|
||||
"Selftest "
|
||||
"Selbsttest "
|
||||
"Selbsttest "
|
||||
|
||||
#MSG_SELFTEST_ERROR
|
||||
"Selftest error !"
|
||||
@ -940,7 +940,7 @@
|
||||
|
||||
#MSG_NONE
|
||||
"None"
|
||||
"Keine"
|
||||
"Ohne"
|
||||
|
||||
#MSG_SORT_TIME
|
||||
"Time"
|
||||
@ -948,7 +948,7 @@
|
||||
|
||||
#
|
||||
"Severe skew"
|
||||
"Schwerer Schraeglauf"
|
||||
"Schwer.Schr"
|
||||
|
||||
#MSG_SORT_ALPHA
|
||||
"Alphabet"
|
||||
@ -964,7 +964,7 @@
|
||||
|
||||
#
|
||||
"Slight skew"
|
||||
"Leichter Schraeglauf"
|
||||
"Leicht.Schr"
|
||||
|
||||
#MSG_SOUND
|
||||
"Sound"
|
||||
@ -1000,7 +1000,7 @@
|
||||
|
||||
#MSG_STOPPED
|
||||
"STOPPED. "
|
||||
"GESTOPPT. "
|
||||
"GESTOPPT."
|
||||
|
||||
#MSG_SUPPORT
|
||||
"Support"
|
||||
@ -1012,15 +1012,15 @@
|
||||
|
||||
#MSG_TEMP_CALIBRATION c=20 r=1
|
||||
"Temp. cal. "
|
||||
"Temp Kalib. "
|
||||
"Temp Kalib. "
|
||||
|
||||
#MSG_TEMP_CALIBRATION_ON c=20 r=1
|
||||
"Temp. cal. [on]"
|
||||
"Temp. Kal. [AN]"
|
||||
"Temp. Kal. [an]"
|
||||
|
||||
#MSG_TEMP_CALIBRATION_OFF c=20 r=1
|
||||
"Temp. cal. [off]"
|
||||
"Temp. Kal. [AUS]"
|
||||
"Temp. Kal. [aus]"
|
||||
|
||||
#MSG_CALIBRATION_PINDA_MENU c=17 r=1
|
||||
"Temp. calibration"
|
||||
@ -1207,6 +1207,198 @@
|
||||
"Off"
|
||||
"Aus"
|
||||
|
||||
#
|
||||
"Back"
|
||||
"Zurueck"
|
||||
|
||||
#
|
||||
"Checks"
|
||||
"\x00"
|
||||
|
||||
#MSG_ON
|
||||
"On"
|
||||
"An"
|
||||
|
||||
#
|
||||
"False triggering"
|
||||
"Falschtriggerung"
|
||||
|
||||
#
|
||||
"FINDA:"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"Firmware [none]"
|
||||
"Firmware [ohne]"
|
||||
|
||||
#
|
||||
"Firmware [strict]"
|
||||
"Firmware [streng]"
|
||||
|
||||
#
|
||||
"Firmware [warn]"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"HW Setup"
|
||||
"HW Einstellungen"
|
||||
|
||||
#
|
||||
"IR:"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"Magnets comp.[N/A]"
|
||||
"Magnet Komp. [nv]"
|
||||
|
||||
#
|
||||
"Magnets comp.[Off]"
|
||||
"Magnet Komp. [Aus]"
|
||||
|
||||
#
|
||||
"Magnets comp. [On]"
|
||||
"Magnet Komp. [An]"
|
||||
|
||||
#
|
||||
"Mesh [3x3]"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"Mesh [7x7]"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"Mesh bed leveling"
|
||||
"Mesh Bett Ausgleich"
|
||||
|
||||
#
|
||||
"MK3S firmware detected on MK3 printer"
|
||||
"MK3S-Firmware auf MK3-Drucker erkannt"
|
||||
|
||||
#
|
||||
"MMU Mode [Normal]"
|
||||
"MMU Modus[Normal]"
|
||||
|
||||
#
|
||||
"MMU Mode[Stealth]"
|
||||
"MMU Mod.[Stealth]"
|
||||
|
||||
#
|
||||
"Mode change in progress ..."
|
||||
"Moduswechsel erfolgt..."
|
||||
|
||||
#
|
||||
"Model [none]"
|
||||
"Modell [ohne]"
|
||||
|
||||
#
|
||||
"Model [strict]"
|
||||
"Modell [streng]"
|
||||
|
||||
#
|
||||
"Model [warn]"
|
||||
"Modell [warn]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.25]"
|
||||
"Duese D. [0.25]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.40]"
|
||||
"Duese D. [0.40]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.60]"
|
||||
"Duese D. [0.60]"
|
||||
|
||||
#
|
||||
"Nozzle [none]"
|
||||
"Duese [ohne]"
|
||||
|
||||
#
|
||||
"Nozzle [strict]"
|
||||
"Duese [streng]"
|
||||
|
||||
#
|
||||
"Nozzle [warn]"
|
||||
"Duese [warn]"
|
||||
|
||||
#
|
||||
"G-code sliced for a different level. Continue?"
|
||||
"G-Code ist fuer einen anderen Level geslict. Fortfahren?"
|
||||
|
||||
#
|
||||
"G-code sliced for a different level. Please re-slice the model again. Print cancelled."
|
||||
"G-Code ist fuer einen anderen Level geslict. Bitte slicen Sie das Modell erneut. Druck abgebrochen."
|
||||
|
||||
#
|
||||
"G-code sliced for a different printer type. Continue?"
|
||||
"G-Code ist fuer einen anderen Drucker geslict. Fortfahren?"
|
||||
|
||||
#
|
||||
"G-code sliced for a different printer type. Please re-slice the model again. Print cancelled."
|
||||
"G-Code ist fuer einen anderen Drucker geslict. Bitte slicen Sie das Modell erneut. Druck abgebrochen."
|
||||
|
||||
#
|
||||
"G-code sliced for a newer firmware. Continue?"
|
||||
"G-Code ist fuer eine neuere Firmware geslict. Fortfahren?"
|
||||
|
||||
#
|
||||
"G-code sliced for a newer firmware. Please update the firmware. Print cancelled."
|
||||
"G-Code ist fuer eine neuere Firmware geslict. Bitte die Firmware updaten. Druck abgebrochen."
|
||||
|
||||
#
|
||||
"PINDA:"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"Preheating to cut"
|
||||
"Heizen zum Schnitt"
|
||||
|
||||
#
|
||||
"Preheating to eject"
|
||||
"Heizen zum Auswurf"
|
||||
|
||||
#
|
||||
"Printer nozzle diameter differs from the G-code. Continue?"
|
||||
"Der Durchmesser der Druckerduese weicht vom G-Code ab. Fortfahren?"
|
||||
|
||||
#
|
||||
"Printer nozzle diameter differs from the G-code. Please check the value in settings. Print cancelled."
|
||||
"Der Durchmesser der Druckerduese weicht vom G-Code ab. Bitte ueberpruefen Sie den Wert in den Einstellungen. Druck abgebrochen."
|
||||
|
||||
#
|
||||
"Rename"
|
||||
"Umbenennen"
|
||||
|
||||
#
|
||||
"Select"
|
||||
"Auswahl"
|
||||
|
||||
#
|
||||
"Sensor info"
|
||||
"Sensor Info"
|
||||
|
||||
#
|
||||
"Sheet"
|
||||
"Blech"
|
||||
|
||||
#
|
||||
"Sound [assist]"
|
||||
"Sound [Assist]"
|
||||
|
||||
#
|
||||
"Steel sheets"
|
||||
"Stahlbleche"
|
||||
|
||||
#
|
||||
"Z-correct:"
|
||||
"Z-Korrektur:"
|
||||
|
||||
#
|
||||
"Z-probe nr. [1]"
|
||||
"Z-Probe Nr. [1]"
|
||||
|
||||
#
|
||||
"Z-probe nr. [3]"
|
||||
"Z-Probe Nr. [3]"
|
||||
|
@ -24,7 +24,7 @@
|
||||
|
||||
#MSG_BABYSTEPPING_Z c=15
|
||||
"Adjusting Z:"
|
||||
"Ajustar Z:"
|
||||
"Ajustando Z:"
|
||||
|
||||
#MSG_SELFTEST_CHECK_ALLCORRECT c=20
|
||||
"All correct "
|
||||
@ -96,7 +96,7 @@
|
||||
|
||||
#MSG_BED
|
||||
"Bed"
|
||||
"Base calefactable "
|
||||
"Base"
|
||||
|
||||
#MSG_MENU_BELT_STATUS c=15 r=1
|
||||
"Belt status"
|
||||
@ -200,7 +200,7 @@
|
||||
|
||||
#MSG_EXTRUDER_CORRECTION c=10
|
||||
"E-correct:"
|
||||
"E-correcion:"
|
||||
"Correccion-E:"
|
||||
|
||||
#MSG_EJECT_FILAMENT c=17 r=1
|
||||
"Eject filament"
|
||||
@ -240,7 +240,7 @@
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
"Extruder fan:"
|
||||
"Ventilador del extrusor:"
|
||||
"Vent.extrusor:"
|
||||
|
||||
#MSG_INFO_EXTRUDER c=15 r=1
|
||||
"Extruder info"
|
||||
@ -532,7 +532,7 @@
|
||||
|
||||
#
|
||||
"Measured skew"
|
||||
"Desviacion medida:"
|
||||
"Desviacion med:"
|
||||
|
||||
#
|
||||
"MMU fails"
|
||||
@ -616,7 +616,7 @@
|
||||
|
||||
#MSG_NA
|
||||
"N/A"
|
||||
"N/D"
|
||||
"N/A"
|
||||
|
||||
#MSG_NO
|
||||
"No"
|
||||
@ -640,7 +640,7 @@
|
||||
|
||||
#MSG_WIZARD_WILL_PREHEAT c=20 r=4
|
||||
"Now I will preheat nozzle for PLA."
|
||||
"Voy a precalentar la boquilla para PLA ahora."
|
||||
"Ahora precalentare la boquilla para PLA."
|
||||
|
||||
#MSG_NOZZLE
|
||||
"Nozzle"
|
||||
@ -656,7 +656,7 @@
|
||||
|
||||
#
|
||||
"Nozzle FAN"
|
||||
"Ventilador de capa"
|
||||
"Vent. capa"
|
||||
|
||||
#MSG_PAUSE_PRINT
|
||||
"Pause print"
|
||||
@ -788,7 +788,7 @@
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
"Print fan:"
|
||||
"Ventilador del fusor:"
|
||||
"Vent.fusor:"
|
||||
|
||||
#MSG_CARD_MENU
|
||||
"Print from SD"
|
||||
@ -812,7 +812,7 @@
|
||||
|
||||
#
|
||||
"Print FAN"
|
||||
"Ventilador del extrusor"
|
||||
"Vent.extr"
|
||||
|
||||
#MSG_PRUSA3D
|
||||
"prusa3d.com"
|
||||
@ -848,7 +848,7 @@
|
||||
|
||||
#MSG_RESUMING_PRINT c=20 r=1
|
||||
"Resuming print"
|
||||
"Resumiendo impresion"
|
||||
"Continuando impresion"
|
||||
|
||||
#MSG_BED_CORRECTION_RIGHT c=14 r=1
|
||||
"Right side[um]"
|
||||
@ -940,15 +940,15 @@
|
||||
|
||||
#MSG_NONE
|
||||
"None"
|
||||
"Nada"
|
||||
"Ninguno"
|
||||
|
||||
#MSG_SORT_TIME
|
||||
"Time"
|
||||
"Fecha"
|
||||
"Tiempo"
|
||||
|
||||
#
|
||||
"Severe skew"
|
||||
"Inclinacion severa"
|
||||
"Incl.severa"
|
||||
|
||||
#MSG_SORT_ALPHA
|
||||
"Alphabet"
|
||||
@ -964,7 +964,7 @@
|
||||
|
||||
#
|
||||
"Slight skew"
|
||||
"Ligeramente inclinado"
|
||||
"Liger.incl."
|
||||
|
||||
#MSG_SOUND
|
||||
"Sound"
|
||||
@ -1016,11 +1016,11 @@
|
||||
|
||||
#MSG_TEMP_CALIBRATION_ON c=20 r=1
|
||||
"Temp. cal. [on]"
|
||||
"Cal. temp. [ON]"
|
||||
"Cal. temp. [on]"
|
||||
|
||||
#MSG_TEMP_CALIBRATION_OFF c=20 r=1
|
||||
"Temp. cal. [off]"
|
||||
"Cal. temp. [OFF]"
|
||||
"Cal. temp. [off]"
|
||||
|
||||
#MSG_CALIBRATION_PINDA_MENU c=17 r=1
|
||||
"Temp. calibration"
|
||||
@ -1164,7 +1164,7 @@
|
||||
|
||||
#
|
||||
"X-correct:"
|
||||
"X-correcion:"
|
||||
"Correccion-X:"
|
||||
|
||||
#MSG_BED_SKEW_OFFSET_DETECTION_PERFECT c=20 r=8
|
||||
"XYZ calibration ok. X/Y axes are perpendicular. Congratulations!"
|
||||
@ -1200,12 +1200,204 @@
|
||||
|
||||
#
|
||||
"Y-correct:"
|
||||
"Y-correcion:"
|
||||
"Correccion-Y:"
|
||||
|
||||
#MSG_OFF
|
||||
"Off"
|
||||
"Ina"
|
||||
|
||||
#
|
||||
"Back"
|
||||
"atras"
|
||||
|
||||
#
|
||||
"Checks"
|
||||
"Comprobaciones"
|
||||
|
||||
#
|
||||
"False triggering"
|
||||
"Falsa activacion"
|
||||
|
||||
#
|
||||
"FINDA:"
|
||||
"FINDA:"
|
||||
|
||||
#
|
||||
"Firmware [none]"
|
||||
"Firmware[ninguno]"
|
||||
|
||||
#
|
||||
"Firmware [strict]"
|
||||
"Firmware[estrict]"
|
||||
|
||||
#
|
||||
"Firmware [warn]"
|
||||
"Firmware [aviso]"
|
||||
|
||||
#
|
||||
"HW Setup"
|
||||
"Configuracion HW"
|
||||
|
||||
#
|
||||
"IR:"
|
||||
"\x00"
|
||||
|
||||
#MSG_ON
|
||||
"On"
|
||||
"Act"
|
||||
|
||||
#
|
||||
"Magnets comp.[N/A]"
|
||||
"Comp. imanes [N/A]"
|
||||
|
||||
#
|
||||
"Magnets comp.[Off]"
|
||||
"Comp. imanes [Off]"
|
||||
|
||||
#
|
||||
"Magnets comp. [On]"
|
||||
"Comp. imanes [On]"
|
||||
|
||||
#
|
||||
"Mesh [3x3]"
|
||||
"Malla [3x3]"
|
||||
|
||||
#
|
||||
"Mesh [7x7]"
|
||||
"Malla [7x7]"
|
||||
|
||||
#
|
||||
"Mesh bed leveling"
|
||||
"Nivelacion Malla Base"
|
||||
|
||||
#
|
||||
"MK3S firmware detected on MK3 printer"
|
||||
"Firmware MK3S detectado en impresora MK3"
|
||||
|
||||
#
|
||||
"MMU Mode [Normal]"
|
||||
"Modo MMU [Normal]"
|
||||
|
||||
#
|
||||
"MMU Mode[Stealth]"
|
||||
"Modo MMU[Silenci]"
|
||||
|
||||
#
|
||||
"Mode change in progress ..."
|
||||
"Cambio de modo progresando ..."
|
||||
|
||||
#
|
||||
"Model [none]"
|
||||
"Modelo [ninguno]"
|
||||
|
||||
#
|
||||
"Model [strict]"
|
||||
"Modelo [estricto]"
|
||||
|
||||
#
|
||||
"Model [warn]"
|
||||
"Modelo [aviso]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.25]"
|
||||
"Diam. nozzl[0.25]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.40]"
|
||||
"Diam. nozzl[0.40]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.60]"
|
||||
"Diam. nozzl[0.60]"
|
||||
|
||||
#
|
||||
"Nozzle [none]"
|
||||
"Nozzle [ninguno]"
|
||||
|
||||
#
|
||||
"Nozzle [strict]"
|
||||
"Nozzle [estricto]"
|
||||
|
||||
#
|
||||
"Nozzle [warn]"
|
||||
"Nozzle [aviso]"
|
||||
|
||||
#
|
||||
"G-code sliced for a different level. Continue?"
|
||||
"Codigo G laminado para un nivel diferente. ?Continuar?"
|
||||
|
||||
#
|
||||
"G-code sliced for a different level. Please re-slice the model again. Print cancelled."
|
||||
"Codigo G laminado para un nivel diferente. Por favor relamina el modelo de nuevo. Impresion cancelada."
|
||||
|
||||
#
|
||||
"G-code sliced for a different printer type. Continue?"
|
||||
"Codigo G laminado para un tipo de impresora diferente. ?Continuar?"
|
||||
|
||||
#
|
||||
"G-code sliced for a different printer type. Please re-slice the model again. Print cancelled."
|
||||
"Codigo G laminado para una impresora diferente. Por favor relamina el modelo de nuevo. Impresion cancelada."
|
||||
|
||||
#
|
||||
"G-code sliced for a newer firmware. Continue?"
|
||||
"Codigo G laminado para nuevo firmware. ?Continuar?"
|
||||
|
||||
#
|
||||
"G-code sliced for a newer firmware. Please update the firmware. Print cancelled."
|
||||
"Codigo G laminado para nuevo firmware. Por favor actualiza el firmware. Impresion cancelada."
|
||||
|
||||
#
|
||||
"PINDA:"
|
||||
"PINDA:"
|
||||
|
||||
#
|
||||
"Preheating to cut"
|
||||
"Precalentando para laminar"
|
||||
|
||||
#
|
||||
"Preheating to eject"
|
||||
"Precalentar para expulsar"
|
||||
|
||||
#
|
||||
"Printer nozzle diameter differs from the G-code. Continue?"
|
||||
"Diametro nozzle impresora difiere de cod.G. ?Continuar?"
|
||||
|
||||
#
|
||||
"Printer nozzle diameter differs from the G-code. Please check the value in settings. Print cancelled."
|
||||
"Diametro nozzle Impresora difiere de cod.G. Comprueba los valores en ajustes. Impresion cancelada."
|
||||
|
||||
#
|
||||
"Rename"
|
||||
"Renombrar"
|
||||
|
||||
#
|
||||
"Select"
|
||||
"Seleccionar"
|
||||
|
||||
#
|
||||
"Sensor info"
|
||||
"Info sensor"
|
||||
|
||||
#
|
||||
"Sheet"
|
||||
"Lamina"
|
||||
|
||||
#
|
||||
"Sound [assist]"
|
||||
"Sonido [asistido]"
|
||||
|
||||
#
|
||||
"Steel sheets"
|
||||
"Lamina de acero"
|
||||
|
||||
#
|
||||
"Z-correct:"
|
||||
"Correccion-Z:"
|
||||
|
||||
#
|
||||
"Z-probe nr. [1]"
|
||||
"Z-sensor nr. [1]"
|
||||
|
||||
#
|
||||
"Z-probe nr. [3]"
|
||||
"Z-sensor nr. [3]"
|
||||
|
@ -24,7 +24,7 @@
|
||||
|
||||
#MSG_BABYSTEPPING_Z c=15
|
||||
"Adjusting Z:"
|
||||
"Ajust. de Z:"
|
||||
"Ajuster Z :"
|
||||
|
||||
#MSG_SELFTEST_CHECK_ALLCORRECT c=20
|
||||
"All correct "
|
||||
@ -264,7 +264,7 @@
|
||||
|
||||
#MSG_FAN_SPEED c=14
|
||||
"Fan speed"
|
||||
"Vitesse ventil"
|
||||
"Vitesse vent."
|
||||
|
||||
#MSG_SELFTEST_FAN c=20
|
||||
"Fan test"
|
||||
@ -656,7 +656,7 @@
|
||||
|
||||
#
|
||||
"Nozzle FAN"
|
||||
"Ventilateur buse"
|
||||
"Vent. buse"
|
||||
|
||||
#MSG_PAUSE_PRINT
|
||||
"Pause print"
|
||||
@ -772,7 +772,7 @@
|
||||
|
||||
#
|
||||
"Power failures"
|
||||
"Coupures de courant"
|
||||
"Coup.de courant"
|
||||
|
||||
#MSG_PRINT_ABORTED c=20
|
||||
"Print aborted"
|
||||
@ -788,7 +788,7 @@
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
"Print fan:"
|
||||
"Ventilo impr. :"
|
||||
"Vent.impr:"
|
||||
|
||||
#MSG_CARD_MENU
|
||||
"Print from SD"
|
||||
@ -812,7 +812,7 @@
|
||||
|
||||
#
|
||||
"Print FAN"
|
||||
"Ventilo impression"
|
||||
"Vent.impr"
|
||||
|
||||
#MSG_PRUSA3D
|
||||
"prusa3d.com"
|
||||
@ -836,7 +836,7 @@
|
||||
|
||||
#MSG_CALIBRATE_BED_RESET
|
||||
"Reset XYZ calibr."
|
||||
"Reinit. calibr. XYZ"
|
||||
"Reinit.calibr. XYZ"
|
||||
|
||||
#MSG_BED_CORRECTION_RESET
|
||||
"Reset"
|
||||
@ -948,7 +948,7 @@
|
||||
|
||||
#
|
||||
"Severe skew"
|
||||
"Deviation severe"
|
||||
"Deviat.sev."
|
||||
|
||||
#MSG_SORT_ALPHA
|
||||
"Alphabet"
|
||||
@ -964,7 +964,7 @@
|
||||
|
||||
#
|
||||
"Slight skew"
|
||||
"Deviation legere"
|
||||
"Deviat.leg."
|
||||
|
||||
#MSG_SOUND
|
||||
"Sound"
|
||||
@ -1206,6 +1206,198 @@
|
||||
"Off"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"Back"
|
||||
"Retour"
|
||||
|
||||
#
|
||||
"Checks"
|
||||
"Verifications"
|
||||
|
||||
#
|
||||
"False triggering"
|
||||
"Faux declenchement"
|
||||
|
||||
#
|
||||
"FINDA:"
|
||||
"FINDA:"
|
||||
|
||||
#
|
||||
"Firmware [none]"
|
||||
"Firmware [aucune]"
|
||||
|
||||
#
|
||||
"Firmware [strict]"
|
||||
"Firmware[stricte]"
|
||||
|
||||
#
|
||||
"Firmware [warn]"
|
||||
"Firmware [avert]"
|
||||
|
||||
#
|
||||
"HW Setup"
|
||||
"Config HW"
|
||||
|
||||
#
|
||||
"IR:"
|
||||
"IR:"
|
||||
|
||||
#
|
||||
"Magnets comp.[N/A]"
|
||||
"Comp. aimants[N/A]"
|
||||
|
||||
#
|
||||
"Magnets comp.[Off]"
|
||||
"Comp. aimants[Off]"
|
||||
|
||||
#
|
||||
"Magnets comp. [On]"
|
||||
"Comp. aimants [On]"
|
||||
|
||||
#
|
||||
"Mesh [3x3]"
|
||||
"\x00"
|
||||
|
||||
#MSG_ON
|
||||
"On"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"Mesh [7x7]"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"Mesh bed leveling"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"MK3S firmware detected on MK3 printer"
|
||||
"Firmware MK3S detecte sur imprimante MK3"
|
||||
|
||||
#
|
||||
"MMU Mode [Normal]"
|
||||
"Mode MMU [Normal]"
|
||||
|
||||
#
|
||||
"MMU Mode[Stealth]"
|
||||
"Mode MMU [Furtif]"
|
||||
|
||||
#
|
||||
"Mode change in progress ..."
|
||||
"Changement de mode en cours..."
|
||||
|
||||
#
|
||||
"Model [none]"
|
||||
"Modele [aucune]"
|
||||
|
||||
#
|
||||
"Model [strict]"
|
||||
"Modele [stricte]"
|
||||
|
||||
#
|
||||
"Model [warn]"
|
||||
"Modele [avert]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.25]"
|
||||
"Diam. buse [0.25]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.40]"
|
||||
"Diam. buse [0.40]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.60]"
|
||||
"Diam. buse [0.60]"
|
||||
|
||||
#
|
||||
"Nozzle [none]"
|
||||
"Buse [aucune]"
|
||||
|
||||
#
|
||||
"Nozzle [strict]"
|
||||
"Buse [stricte]"
|
||||
|
||||
#
|
||||
"Nozzle [warn]"
|
||||
"Buse [avert]"
|
||||
|
||||
#
|
||||
"G-code sliced for a different level. Continue?"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"G-code sliced for a different level. Please re-slice the model again. Print cancelled."
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"G-code sliced for a different printer type. Continue?"
|
||||
"Le G-code a ete prepare pour une autre version de l'imprimante. Continuer?"
|
||||
|
||||
#
|
||||
"G-code sliced for a different printer type. Please re-slice the model again. Print cancelled."
|
||||
"Le G-code a ete prepare pour une autre version de l'imprimante. Veuillez decouper le modele a nouveau. L'impression a ete annulee. "
|
||||
|
||||
#
|
||||
"G-code sliced for a newer firmware. Continue?"
|
||||
"Le G-code a ete prepare pour une version plus recente du firmware. Continuer?"
|
||||
|
||||
#
|
||||
"G-code sliced for a newer firmware. Please update the firmware. Print cancelled."
|
||||
"Le G-code a ete prepare pour une version plus recente du firmware. Veuillez mettre a jour le firmware. L'impression annulee."
|
||||
|
||||
#
|
||||
"PINDA:"
|
||||
"PINDA:"
|
||||
|
||||
#
|
||||
"Preheating to cut"
|
||||
"Prechauffage pour couper"
|
||||
|
||||
#
|
||||
"Preheating to eject"
|
||||
"Prechauffage pour ejecter"
|
||||
|
||||
#
|
||||
"Printer nozzle diameter differs from the G-code. Continue?"
|
||||
"Diametre de la buse de l'imprimante different du G-Code. Continuer ?"
|
||||
|
||||
#
|
||||
"Printer nozzle diameter differs from the G-code. Please check the value in settings. Print cancelled."
|
||||
"Diametre de la buse de l'imprimante different du G-Code. Merci de verifier le parametre dans les reglages. Impression annulee."
|
||||
|
||||
#
|
||||
"Rename"
|
||||
"Renommer"
|
||||
|
||||
#
|
||||
"Select"
|
||||
"Selectionner"
|
||||
|
||||
#
|
||||
"Sensor info"
|
||||
"Info capteur"
|
||||
|
||||
#
|
||||
"Sheet"
|
||||
"Feuille"
|
||||
|
||||
#
|
||||
"Sound [assist]"
|
||||
"Son [Assist]"
|
||||
|
||||
#
|
||||
"Steel sheets"
|
||||
"Plaques en acier"
|
||||
|
||||
#
|
||||
"Z-correct:"
|
||||
"Correct-Z:"
|
||||
|
||||
#
|
||||
"Z-probe nr. [1]"
|
||||
"Sonde-Z num. [1]"
|
||||
|
||||
#
|
||||
"Z-probe nr. [3]"
|
||||
"Sonde-Z num. [3]"
|
||||
|
@ -15,7 +15,7 @@
|
||||
"Rilev. impatto\x0aattivabile solo\x0ain Modalita normale"
|
||||
|
||||
#MSG_CRASH_DET_STEALTH_FORCE_OFF c=20 r=4
|
||||
"WARNING:\x0aCrash detection disabled in Stealth mode"
|
||||
"WARNING:\x0aCrash detection\x0adisabled in\x0aStealth mode"
|
||||
"ATTENZIONE:\x0aRilev. impatto\x0adisattivato in\x0aModalita silenziosa"
|
||||
|
||||
#
|
||||
@ -240,7 +240,7 @@
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
"Extruder fan:"
|
||||
"Ventola estrusore:"
|
||||
"Ventola estr:"
|
||||
|
||||
#MSG_INFO_EXTRUDER c=15 r=1
|
||||
"Extruder info"
|
||||
@ -252,7 +252,7 @@
|
||||
|
||||
#
|
||||
"Fail stats MMU"
|
||||
"Statistiche fallimenti MMU"
|
||||
"Stat.fall. MMU"
|
||||
|
||||
#MSG_FSENSOR_AUTOLOAD
|
||||
"F. autoload"
|
||||
@ -260,11 +260,11 @@
|
||||
|
||||
#
|
||||
"Fail stats"
|
||||
"Statistiche fallimenti"
|
||||
"Stat. fallimenti"
|
||||
|
||||
#MSG_FAN_SPEED c=14
|
||||
"Fan speed"
|
||||
"Velocita ventola"
|
||||
"Velocita vent."
|
||||
|
||||
#MSG_SELFTEST_FAN c=20
|
||||
"Fan test"
|
||||
@ -476,7 +476,7 @@
|
||||
|
||||
#MSG_BED_CORRECTION_LEFT c=14 r=1
|
||||
"Left side [um]"
|
||||
"Lato sinistro [um]"
|
||||
"Sinistra [um]"
|
||||
|
||||
#
|
||||
"Lin. correction"
|
||||
@ -532,7 +532,7 @@
|
||||
|
||||
#
|
||||
"Measured skew"
|
||||
"Disassamento misurato"
|
||||
"Deviazione mis"
|
||||
|
||||
#
|
||||
"MMU fails"
|
||||
@ -568,7 +568,7 @@
|
||||
|
||||
#
|
||||
"MMU power fails"
|
||||
"Mancanza corrente MMU"
|
||||
"Manc. corr. MMU"
|
||||
|
||||
#MSG_STEALTH
|
||||
"Stealth"
|
||||
@ -596,15 +596,15 @@
|
||||
|
||||
#MSG_MOVE_X
|
||||
"Move X"
|
||||
"Muovi X"
|
||||
"Sposta X"
|
||||
|
||||
#MSG_MOVE_Y
|
||||
"Move Y"
|
||||
"Muovi Y"
|
||||
"Sposta Y"
|
||||
|
||||
#MSG_MOVE_Z
|
||||
"Move Z"
|
||||
"Muovi Z"
|
||||
"Sposta Z"
|
||||
|
||||
#MSG_NO_MOVE
|
||||
"No move."
|
||||
@ -648,7 +648,7 @@
|
||||
|
||||
#MSG_DEFAULT_SETTINGS_LOADED c=20 r=4
|
||||
"Old settings found. Default PID, Esteps etc. will be set."
|
||||
"Sono state trovate impostazioni vecchie. I valori di default di PID, Esteps etc. saranno impostati"
|
||||
"Sono state trovate impostazioni vecchie. Verranno impostati i valori predefiniti di PID, Esteps etc."
|
||||
|
||||
#
|
||||
"Now remove the test print from steel sheet."
|
||||
@ -788,7 +788,7 @@
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
"Print fan:"
|
||||
"Ventola di stampa:"
|
||||
"Vent.stam:"
|
||||
|
||||
#MSG_CARD_MENU
|
||||
"Print from SD"
|
||||
@ -940,19 +940,19 @@
|
||||
|
||||
#MSG_NONE
|
||||
"None"
|
||||
"\x00"
|
||||
"Nessuno"
|
||||
|
||||
#MSG_SORT_TIME
|
||||
"Time"
|
||||
"\x00"
|
||||
"Tempo"
|
||||
|
||||
#
|
||||
"Severe skew"
|
||||
"Disassamento grave"
|
||||
"Devia.grave"
|
||||
|
||||
#MSG_SORT_ALPHA
|
||||
"Alphabet"
|
||||
"Alfabet"
|
||||
"Alfabeti"
|
||||
|
||||
#MSG_SORTING c=20 r=1
|
||||
"Sorting files"
|
||||
@ -964,7 +964,7 @@
|
||||
|
||||
#
|
||||
"Slight skew"
|
||||
"Disassamento lieve"
|
||||
"Devia.lieve"
|
||||
|
||||
#MSG_SOUND
|
||||
"Sound"
|
||||
@ -1016,11 +1016,11 @@
|
||||
|
||||
#MSG_TEMP_CALIBRATION_ON c=20 r=1
|
||||
"Temp. cal. [on]"
|
||||
"Calib. temp. [ON]"
|
||||
"Calib. temp. [on]"
|
||||
|
||||
#MSG_TEMP_CALIBRATION_OFF c=20 r=1
|
||||
"Temp. cal. [off]"
|
||||
"Calib. temp.[OFF]"
|
||||
"Calib. temp.[off]"
|
||||
|
||||
#MSG_CALIBRATION_PINDA_MENU c=17 r=1
|
||||
"Temp. calibration"
|
||||
@ -1052,7 +1052,7 @@
|
||||
|
||||
#
|
||||
"Total print time"
|
||||
"Tempo di stampa totale"
|
||||
"Tempo stampa totale"
|
||||
|
||||
#MSG_TUNE
|
||||
"Tune"
|
||||
@ -1076,7 +1076,7 @@
|
||||
|
||||
#MSG_UNLOAD_FILAMENT c=17
|
||||
"Unload filament"
|
||||
"Scarica filam."
|
||||
"Scarica filamento"
|
||||
|
||||
#MSG_UNLOADING_FILAMENT c=20 r=1
|
||||
"Unloading filament"
|
||||
@ -1209,3 +1209,195 @@
|
||||
#MSG_ON
|
||||
"On"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"Back"
|
||||
"Indietro"
|
||||
|
||||
#
|
||||
"Checks"
|
||||
"Controlli"
|
||||
|
||||
#
|
||||
"False triggering"
|
||||
"Falso innesco"
|
||||
|
||||
#
|
||||
"FINDA:"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"Firmware [none]"
|
||||
"Firmware[nessuno]"
|
||||
|
||||
#
|
||||
"Firmware [strict]"
|
||||
"Firmware [esatto]"
|
||||
|
||||
#
|
||||
"Firmware [warn]"
|
||||
"Firmware [avviso]"
|
||||
|
||||
#
|
||||
"HW Setup"
|
||||
"Installazione HW"
|
||||
|
||||
#
|
||||
"IR:"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"Magnets comp.[N/A]"
|
||||
"Comp. Magneti[N/A]"
|
||||
|
||||
#
|
||||
"Magnets comp.[Off]"
|
||||
"Comp. Magneti[off]"
|
||||
|
||||
#
|
||||
"Magnets comp. [On]"
|
||||
"Comp. Magneti [on]"
|
||||
|
||||
#
|
||||
"Mesh [3x3]"
|
||||
"Griglia [3x3]"
|
||||
|
||||
#
|
||||
"Mesh [7x7]"
|
||||
"Griglia [7x7]"
|
||||
|
||||
#
|
||||
"Mesh bed leveling"
|
||||
"Mesh livel. letto"
|
||||
|
||||
#
|
||||
"MK3S firmware detected on MK3 printer"
|
||||
"Firmware MK3S rilevato su stampante MK3"
|
||||
|
||||
#
|
||||
"MMU Mode [Normal]"
|
||||
"Modalita MMU [Normale]"
|
||||
|
||||
#
|
||||
"MMU Mode[Stealth]"
|
||||
"Modalita MMU [Silenziosa]"
|
||||
|
||||
#
|
||||
"Mode change in progress ..."
|
||||
"Cambio modalita in corso ..."
|
||||
|
||||
#
|
||||
"Model [none]"
|
||||
"Modello [nessuno]"
|
||||
|
||||
#
|
||||
"Model [strict]"
|
||||
"Modello [esatto]"
|
||||
|
||||
#
|
||||
"Model [warn]"
|
||||
"Modello [avviso]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.25]"
|
||||
"Diam.Ugello[0.25]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.40]"
|
||||
"Diam.Ugello[0.40]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.60]"
|
||||
"Diam.Ugello[0.60]"
|
||||
|
||||
#
|
||||
"Nozzle [none]"
|
||||
"Ugello [nessuno]"
|
||||
|
||||
#
|
||||
"Nozzle [strict]"
|
||||
"Ugello [esatto]"
|
||||
|
||||
#
|
||||
"Nozzle [warn]"
|
||||
"Ugello [avviso]"
|
||||
|
||||
#
|
||||
"G-code sliced for a different level. Continue?"
|
||||
"G-code processato per un livello diverso. Continuare?"
|
||||
|
||||
#
|
||||
"G-code sliced for a different level. Please re-slice the model again. Print cancelled."
|
||||
"G-code processato per un livello diverso. Per favore esegui nuovamente lo slice del modello. Stampa annullata."
|
||||
|
||||
#
|
||||
"G-code sliced for a different printer type. Continue?"
|
||||
"G-code processato per una stampante diversa. Continuare?"
|
||||
|
||||
#
|
||||
"G-code sliced for a different printer type. Please re-slice the model again. Print cancelled."
|
||||
"G-code processato per una stampante diversa. Per favore esegui nuovamente lo slice del modello. Stampa annullata."
|
||||
|
||||
#
|
||||
"G-code sliced for a newer firmware. Continue?"
|
||||
"G-code processato per un firmware piu recente. Continuare?"
|
||||
|
||||
#
|
||||
"G-code sliced for a newer firmware. Please update the firmware. Print cancelled."
|
||||
"G-code processato per un firmware piu recente. Per favore aggiorna il firmware. Stampa annullata."
|
||||
|
||||
#
|
||||
"PINDA:"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"Preheating to cut"
|
||||
"Preriscaldamento per taglio"
|
||||
|
||||
#
|
||||
"Preheating to eject"
|
||||
"Preriscaldamento per espulsione"
|
||||
|
||||
#
|
||||
"Printer nozzle diameter differs from the G-code. Continue?"
|
||||
"Diametro ugello diverso da G-Code. Continuare?"
|
||||
|
||||
#
|
||||
"Printer nozzle diameter differs from the G-code. Please check the value in settings. Print cancelled."
|
||||
"Diametro ugello diverso dal G-Code. Controlla il valore nelle impostazioni. Stampa annullata."
|
||||
|
||||
#
|
||||
"Rename"
|
||||
"Rinomina"
|
||||
|
||||
#
|
||||
"Select"
|
||||
"Seleziona"
|
||||
|
||||
#
|
||||
"Sensor info"
|
||||
"Info Sensore"
|
||||
|
||||
#
|
||||
"Sheet"
|
||||
"Piano"
|
||||
|
||||
#
|
||||
"Sound [assist]"
|
||||
"Suono [assistito]"
|
||||
|
||||
#
|
||||
"Steel sheets"
|
||||
"Piani d'acciaio"
|
||||
|
||||
#
|
||||
"Z-correct:"
|
||||
"Correzione-Z:"
|
||||
|
||||
#
|
||||
"Z-probe nr. [1]"
|
||||
"Z-probe nr. [1]"
|
||||
|
||||
#
|
||||
"Z-probe nr. [3]"
|
||||
"Z-probe nr. [3]"
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
#MSG_MEASURED_OFFSET
|
||||
"[0;0] point offset"
|
||||
"[0;0] przesuniecie punktu"
|
||||
"[0;0] przesun.punktu"
|
||||
|
||||
#MSG_CRASH_DET_ONLY_IN_NORMAL c=20 r=4
|
||||
"Crash detection can\x0abe turned on only in\x0aNormal mode"
|
||||
@ -24,7 +24,7 @@
|
||||
|
||||
#MSG_BABYSTEPPING_Z c=15
|
||||
"Adjusting Z:"
|
||||
"Dostrajanie Z:"
|
||||
"Ustawianie Z:"
|
||||
|
||||
#MSG_SELFTEST_CHECK_ALLCORRECT c=20
|
||||
"All correct "
|
||||
@ -44,7 +44,7 @@
|
||||
|
||||
#MSG_CONFIRM_CARRIAGE_AT_THE_TOP c=20 r=2
|
||||
"Are left and right Z~carriages all up?"
|
||||
"Obydwa konce osi dojechaly do gornych ogranicznikow?"
|
||||
"Obydwa konce osi sa na szczycie?"
|
||||
|
||||
#MSG_AUTO_DEPLETE c=17 r=1
|
||||
"SpoolJoin"
|
||||
@ -200,7 +200,7 @@
|
||||
|
||||
#MSG_EXTRUDER_CORRECTION c=10
|
||||
"E-correct:"
|
||||
"Korekcja E:"
|
||||
"Korekcja-E:"
|
||||
|
||||
#MSG_EJECT_FILAMENT c=17 r=1
|
||||
"Eject filament"
|
||||
@ -240,7 +240,7 @@
|
||||
|
||||
#MSG_SELFTEST_EXTRUDER_FAN_SPEED c=18
|
||||
"Extruder fan:"
|
||||
"Went. ekstrudera:"
|
||||
"Went. ekstr:"
|
||||
|
||||
#MSG_INFO_EXTRUDER c=15 r=1
|
||||
"Extruder info"
|
||||
@ -656,7 +656,7 @@
|
||||
|
||||
#
|
||||
"Nozzle FAN"
|
||||
"Went. hotendu"
|
||||
"Went. Hotend"
|
||||
|
||||
#MSG_PAUSE_PRINT
|
||||
"Pause print"
|
||||
@ -788,7 +788,7 @@
|
||||
|
||||
#MSG_SELFTEST_PRINT_FAN_SPEED c=18
|
||||
"Print fan:"
|
||||
"Went. wydruku:"
|
||||
"Went.wydr:"
|
||||
|
||||
#MSG_CARD_MENU
|
||||
"Print from SD"
|
||||
@ -812,7 +812,7 @@
|
||||
|
||||
#
|
||||
"Print FAN"
|
||||
"Went. wydruku"
|
||||
"Went.wydr"
|
||||
|
||||
#MSG_PRUSA3D
|
||||
"prusa3d.com"
|
||||
@ -936,7 +936,7 @@
|
||||
|
||||
#MSG_SORT
|
||||
"Sort"
|
||||
"Sortuj"
|
||||
"Sortowanie"
|
||||
|
||||
#MSG_NONE
|
||||
"None"
|
||||
@ -948,7 +948,7 @@
|
||||
|
||||
#
|
||||
"Severe skew"
|
||||
"Znaczny skos"
|
||||
"ZnacznySkos"
|
||||
|
||||
#MSG_SORT_ALPHA
|
||||
"Alphabet"
|
||||
@ -996,7 +996,7 @@
|
||||
|
||||
#MSG_STOP_PRINT
|
||||
"Stop print"
|
||||
"Zatrzymac druk"
|
||||
"Przerwanie druku"
|
||||
|
||||
#MSG_STOPPED
|
||||
"STOPPED. "
|
||||
@ -1016,7 +1016,7 @@
|
||||
|
||||
#MSG_TEMP_CALIBRATION_ON c=20 r=1
|
||||
"Temp. cal. [on]"
|
||||
"Kalibr. temp.[wl]"
|
||||
"Kalibr.temp. [wl]"
|
||||
|
||||
#MSG_TEMP_CALIBRATION_OFF c=20 r=1
|
||||
"Temp. cal. [off]"
|
||||
@ -1164,7 +1164,7 @@
|
||||
|
||||
#
|
||||
"X-correct:"
|
||||
"Korekcja X:"
|
||||
"Korekcja-X:"
|
||||
|
||||
#MSG_BED_SKEW_OFFSET_DETECTION_PERFECT c=20 r=8
|
||||
"XYZ calibration ok. X/Y axes are perpendicular. Congratulations!"
|
||||
@ -1200,12 +1200,204 @@
|
||||
|
||||
#
|
||||
"Y-correct:"
|
||||
"Korekcja Y:"
|
||||
"Korekcja-Y:"
|
||||
|
||||
#MSG_OFF
|
||||
"Off"
|
||||
"Wyl"
|
||||
|
||||
#
|
||||
"Back"
|
||||
"Wstecz"
|
||||
|
||||
#
|
||||
"Checks"
|
||||
"Testy"
|
||||
|
||||
#
|
||||
"False triggering"
|
||||
"Falszywy alarm"
|
||||
|
||||
#
|
||||
"FINDA:"
|
||||
"\x00"
|
||||
|
||||
#MSG_ON
|
||||
"On"
|
||||
"Wl"
|
||||
|
||||
#
|
||||
"Firmware [none]"
|
||||
"Firmware [brak]"
|
||||
|
||||
#
|
||||
"Firmware [strict]"
|
||||
"Firmware [restr.]"
|
||||
|
||||
#
|
||||
"Firmware [warn]"
|
||||
"Firmware[ostrzez]"
|
||||
|
||||
#
|
||||
"HW Setup"
|
||||
"Ustawienia HW"
|
||||
|
||||
#
|
||||
"IR:"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"Magnets comp.[N/A]"
|
||||
"Kor. magnesow [nd]"
|
||||
|
||||
#
|
||||
"Magnets comp.[Off]"
|
||||
"Kor. magnesow[wyl]"
|
||||
|
||||
#
|
||||
"Magnets comp. [On]"
|
||||
"Kor. magnesow [wl]"
|
||||
|
||||
#
|
||||
"Mesh [3x3]"
|
||||
"Siatka [3x3]"
|
||||
|
||||
#
|
||||
"Mesh [7x7]"
|
||||
"Siatka [7x7]"
|
||||
|
||||
#
|
||||
"Mesh bed leveling"
|
||||
"Poziomowanie wg siatki"
|
||||
|
||||
#
|
||||
"MK3S firmware detected on MK3 printer"
|
||||
"Wykryto firmware MK3S w drukarce MK3"
|
||||
|
||||
#
|
||||
"MMU Mode [Normal]"
|
||||
"Tryb MMU[Normaln]"
|
||||
|
||||
#
|
||||
"MMU Mode[Stealth]"
|
||||
"Tryb MMU[Stealth]"
|
||||
|
||||
#
|
||||
"Mode change in progress ..."
|
||||
"Trwa zmiana trybu..."
|
||||
|
||||
#
|
||||
"Model [none]"
|
||||
"Model [brak]"
|
||||
|
||||
#
|
||||
"Model [strict]"
|
||||
"Model [restrykc.]"
|
||||
|
||||
#
|
||||
"Model [warn]"
|
||||
"Model [ostrzez.]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.25]"
|
||||
"Sr. dyszy [0,25]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.40]"
|
||||
"Sr. dyszy [0,40]"
|
||||
|
||||
#
|
||||
"Nozzle d. [0.60]"
|
||||
"Sr. dyszy [0,60]"
|
||||
|
||||
#
|
||||
"Nozzle [none]"
|
||||
"Dysza [brak]"
|
||||
|
||||
#
|
||||
"Nozzle [strict]"
|
||||
"Dysza [restrykc.]"
|
||||
|
||||
#
|
||||
"Nozzle [warn]"
|
||||
"Dysza [ostrzez.]"
|
||||
|
||||
#
|
||||
"G-code sliced for a different level. Continue?"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"G-code sliced for a different level. Please re-slice the model again. Print cancelled."
|
||||
"G-code pociety na innym poziomie. Potnij model ponownie. Druk anulowany."
|
||||
|
||||
#
|
||||
"G-code sliced for a different printer type. Continue?"
|
||||
"G-code pociety dla innej drukarki. Kontynuowac?"
|
||||
|
||||
#
|
||||
"G-code sliced for a different printer type. Please re-slice the model again. Print cancelled."
|
||||
"G-code pociety dla drukarki innego typu. Potnij model ponownie. Druk anulowany."
|
||||
|
||||
#
|
||||
"G-code sliced for a newer firmware. Continue?"
|
||||
"G-code pociety dla nowszego firmware. Kontynuowac?"
|
||||
|
||||
#
|
||||
"G-code sliced for a newer firmware. Please update the firmware. Print cancelled."
|
||||
"G-code pociety dla nowszego firmware. Zaktualizuj firmware. Druk anulowany."
|
||||
|
||||
#
|
||||
"PINDA:"
|
||||
"\x00"
|
||||
|
||||
#
|
||||
"Preheating to cut"
|
||||
"Nagrzewanie do obciecia"
|
||||
|
||||
#
|
||||
"Preheating to eject"
|
||||
"Nagrzewanie do wysuniecia"
|
||||
|
||||
#
|
||||
"Printer nozzle diameter differs from the G-code. Continue?"
|
||||
"Srednica dyszy drukarki rozni sie od tej w G-code. Kontynuowac?"
|
||||
|
||||
#
|
||||
"Printer nozzle diameter differs from the G-code. Please check the value in settings. Print cancelled."
|
||||
"Srednica dyszy rozni sie od tej w G-code. Sprawdz ustawienia. Druk anulowany."
|
||||
|
||||
#
|
||||
"Rename"
|
||||
"Zmien nazwe"
|
||||
|
||||
#
|
||||
"Select"
|
||||
"Wybierz"
|
||||
|
||||
#
|
||||
"Sensor info"
|
||||
"Info o sensorach"
|
||||
|
||||
#
|
||||
"Sheet"
|
||||
"Plyta"
|
||||
|
||||
#
|
||||
"Sound [assist]"
|
||||
"Dzwiek [asyst.]"
|
||||
|
||||
#
|
||||
"Steel sheets"
|
||||
"Plyty stalowe"
|
||||
|
||||
#
|
||||
"Z-correct:"
|
||||
"Korekcja-Z:"
|
||||
|
||||
#
|
||||
"Z-probe nr. [1]"
|
||||
"Pomiar-Z [1]"
|
||||
|
||||
#
|
||||
"Z-probe nr. [3]"
|
||||
"Pomiar-Z [3]"
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user