Skip to content

Commit

Permalink
pwm display error
Browse files Browse the repository at this point in the history
  • Loading branch information
vitotai committed Apr 26, 2017
1 parent a5d0fd6 commit 14e7fc7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion BrewManiacEx/ui.h
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,11 @@ void uiDisplaySettingTemperature(float settemp)

void uiClearPwmDisplay(void)
{
#if MaximumNumberOfSensors > 1
uiLcdClear(8,2,3);
#else
uiLcdClear(1,2,8);
#endif
}

void uiShowPwmLabel(void)
Expand All @@ -753,7 +757,7 @@ void uiShowPwmLabel(void)
char buf[2];
buf[0]='%';
buf[1]='\0';
uiLcdPrint(1,10,buf);
uiLcdPrint(10,2,buf);
#else
uiLcdPrint_P(1,2,STR(PWM_Is));
#endif
Expand Down
Binary file modified bin/BrewManiacEx.multisensor.023.bin
Binary file not shown.

0 comments on commit 14e7fc7

Please sign in to comment.