Skip to content

Commit

Permalink
decrease fan1 and fan2 speed, fix progress dots printing while prehea…
Browse files Browse the repository at this point in the history
…t is disabled
  • Loading branch information
JaroslavDancziwski committed Jul 12, 2019
1 parent 8ad065b commit dd790e6
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions Prusa-CW-Firmware/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ enum menu_state {
ERROR
};

#define FW_VERSION "2.1.3"
#define FW_VERSION "2.1.4"
volatile uint16_t *const bootKeyPtr = (volatile uint16_t *)(RAMEND - 1);


Expand Down Expand Up @@ -129,16 +129,16 @@ int fan2_duty; //%

//fan1_duty = 0-100%
int FAN1_MENU_SPEED = 30;//20;
int FAN1_CURING_SPEED = 80;//70
int FAN1_WASHING_SPEED = 80;//70
int FAN1_DRYING_SPEED = 80;//70
int FAN1_CURING_SPEED = 60;//70
int FAN1_WASHING_SPEED = 60;//70
int FAN1_DRYING_SPEED = 60;//70
int FAN1_PREHEAT_SPEED = 40;//70

//fan2_duty = 0-100%
int FAN2_MENU_SPEED = 30;//20;
int FAN2_CURING_SPEED = 80;//30
int FAN2_WASHING_SPEED = 80;//70
int FAN2_DRYING_SPEED = 80;//70
int FAN2_CURING_SPEED = 70;//30
int FAN2_WASHING_SPEED = 70;//70
int FAN2_DRYING_SPEED = 70;//70
int FAN2_PREHEAT_SPEED = 40;//70

long remain = 0;
Expand Down Expand Up @@ -1965,8 +1965,13 @@ void start_drying() {
gastro_pan = false;
}
}
if (!preheat_complete) lcd_time_print(8);
else lcd_time_print(7);
if (heat_to_target_temp) {
if (!preheat_complete) lcd_time_print(8);
else lcd_time_print(7);
}
else{
lcd_time_print(7);
}
}

void start_curing() {
Expand Down

0 comments on commit dd790e6

Please sign in to comment.