Display.cpp 12.9 KB
Newer Older
João Lino's avatar
Rel.3  
João Lino committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
/*
  Display.cpp - Display functions code file.
  Created by João Lino, September 25, 2015.
  Released into the public domain.
*/

#include "Display.h"

boolean lcdPrint(LiquidCrystal_I2C *lcd, String title, String message) {
  int messageLength = message.length();
  
  lcd->clear();
    
  // print title
  lcd->home();
  lcd->print(title);
    
  // print message
  if(messageLength <= LCD_HORIZONTAL_RESOLUTION) {
    lcd->setCursor(0,LCD_VERTICAL_RESOLUTION-1);
    lcd->print(message);
    delay(1000);
  }
  // print scrolling message
  else {
    String output_message = "                ";
    output_message += message;
    messageLength = output_message.length();
    
    // Adjust the message size for proper printing
    if ( messageLength & 1 == 1 ) {
      output_message+=" ";
      messageLength+=2;
    }
    
    // print scrolling message
    for (int cursor = 0; cursor < messageLength - LCD_HORIZONTAL_RESOLUTION; cursor+=2) {
      if ((digitalRead(ROTARY_ENCODER_SW_PIN))) {  
        // Wait until switch is released
        while (digitalRead(ROTARY_ENCODER_SW_PIN)) {}  
        
        // debounce
        delay(10);

        // Job is done, break the circle
        return false;
      } else {
        lcd->setCursor(0,LCD_VERTICAL_RESOLUTION-1);
        lcd->print(output_message.substring(cursor, cursor+16));
        delay(500);
      }
    }
  }

  return true;
}

void xPaintStatusTemplate(LiquidCrystal_I2C *lcd, boolean cooking) {
  // Clear LCD
  lcd->clear();        

  // Position the cursor at the begining of where the temperature template goes onto the screen
  lcd->home();    

  // Print the target and measured temperature template
  if(cooking) {
    lcd->print("ON  XX 000.0/000C");
  }
  else {
    lcd->print("OFF XX 000.0/000C");
  }

  // Position the cursor at the begining of where the mode and time template goes onto the screen
  lcd->setCursor (0,LCD_VERTICAL_RESOLUTION-1);

  lcd->print("****       00:00");
}

boolean displayStatus(LiquidCrystal_I2C *lcd, boolean cooking, float cookTemperature, float baseTemperature, float upTemperature, float downTemperature, unsigned long clockCounter, boolean repaint) {
	boolean ret = repaint;

  // Check whether a template repaint is required
  if(repaint) {
    // Repaint the LCD template
    xPaintStatusTemplate(lcd, cooking);
    
    // Reset the repaint flag after the repaint has been done
    ret = false;
  }
  
  double displayTemperature = 0.0;
  unsigned long ulTimeToShow = millis() % 6000;

  lcd->setCursor (4,0);
  if(ulTimeToShow < 2000) {
    displayTemperature = baseTemperature;

    lcd->print("TS");
  }
  else {
    if(ulTimeToShow < 4000) {
      displayTemperature = upTemperature;

      lcd->print("UP");
    }
    else {
      displayTemperature = downTemperature;

      lcd->print("DW");
    }
  }

  // Print positions with no numbers, before the measured temperature value
  lcd->setCursor (7,0);
  if (displayTemperature < 10) {
    lcd->print("  ");
  }
  else {
    if (displayTemperature < 100) {
      lcd->print(" ");
    }
  }

  // Print measured temperature value onto the LCD
  lcd->print(displayTemperature, 1);

  // Print positions with no numbers, before the target temperature value
  lcd->setCursor (13,0);
  if (cookTemperature < 10) {
    lcd->print("  ");
  }
  else {
    if (cookTemperature < 100) {
      lcd->print(" ");
    }
  }

  // Print target temperature value onto the LCD
  lcd->print(cookTemperature);
  
  // Calculate the numbers on the timer clock
  unsigned long minutes = clockCounter / 1000 / 60;
  unsigned long seconds = (clockCounter / 1000) % 60;

  // Position the cursor at the begining of where the timer goes onto the screen
  lcd->setCursor (10, 1);
  
  // Print the timer values onto the LCD
  if (minutes < 10) {
    lcd->print(" 0");
  }
  else {
    if (minutes < 100) {
      lcd->print(" ");
    }
  }
  lcd->print(minutes);
  lcd->print(":");
  if(seconds<10) {
    lcd->print("0");
  }
  lcd->print(seconds);

  return ret;
}

boolean displayMainMenu(LiquidCrystal_I2C *lcd, eMainMenuOptions position, boolean repaint) {
  boolean ret = repaint;

  if(repaint) {
    // display menu
    lcd->clear();
    lcd->home (); // go home
    lcd->print("Brewery Menu");
    
    switch(position) {
      case eMainMenu_GO: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> GO           ");
        break;
      }
      case eMainMenu_STOP: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> STOP         ");
        break;
      }
      case eMainMenu_SKIP: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> SKIP         ");
        break;
      }
      case eMainMenu_BeerProfile: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> BeerProfile  ");
        break;
      }
      case eMainMenu_Stage: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Stages       ");
        break;
      }
      case eMainMenu_Malt: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Malt         ");
        break;
      }
      case eMainMenu_Hops: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Hops         ");
        break;
      }
      case eMainMenu_Clean: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Clean        ");
        break;
      }
      case eMainMenu_Purge: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Purge        ");
        break;
      }
      case eMainMenu_Settings: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Settings     ");
        break;
      }
      case eMainMenu_Back: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Back         ");
        break;
      }
      default: {
        // reset operation state | INPUT : eRotaryEncoderMode newMode, int newPosition, int newMaxPosition, int newMinPosition, int newSingleStep, int newMultiStep
        //xSetupRotaryEncoder( eRotaryEncoderMode_Menu, eMainMenu_GO, MENU_SIZE_MAIN_MENU - 1, 0, 1, 0 );
      } 
    }
    
    ret = false;
  }

  return ret;
}

boolean displayBeerProfileMenu(LiquidCrystal_I2C *lcd, eBeerProfileMenuOptions position, boolean repaint) {
  boolean ret = repaint;

  if(repaint) {
    // display menu
    lcd->clear();
    lcd->home (); // go home
    lcd->print("Preset Menu");

    switch(position) {
      case eBeerProfileMenu_Basic: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Basic        ");
        break;
      }
      case eBeerProfileMenu_Trigo: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Trigo        ");
        break;
      }
      case eBeerProfileMenu_IPA: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> IPA          ");
        break;
      }
      case eBeerProfileMenu_Belga: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Belga        ");
        break;
      }
      case eBeerProfileMenu_Red: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Red          ");
        break;
      }
      case eBeerProfileMenu_APA: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> APA          ");
        break;
      }
      case eBeerProfileMenu_Custom: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Custom       ");
        break;
      }
      case eBeerProfileMenu_Back: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Back         ");
        break;
      }
      default: {
        // reset operation state | INPUT : eRotaryEncoderMode newMode, int newPosition, int newMaxPosition, int newMinPosition, int newSingleStep, int newMultiStep
        //xSetupRotaryEncoder( eRotaryEncoderMode_Menu, eMainMenu_GO, MENU_SIZE_MAIN_MENU - 1, 0, 1, 0 );
      } 
    }
    
    ret = false;
  }

  return ret;
}
boolean displayStageMenu(LiquidCrystal_I2C *lcd, eStageMenuOptions position, boolean repaint) {
  boolean ret = repaint;

  if(repaint) {
    // display menu
    lcd->clear();
    lcd->home (); // go home
    lcd->print("Stage Menu");

    switch(position) {
      case eStageMenu_Startpoint: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Startpoint   ");
        break;
      }
      case eStageMenu_BetaGlucanase: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> BetaGlucanase");
        break;
      }
      case eStageMenu_Debranching: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Debranching  ");
        break;
      }
      case eStageMenu_Proteolytic: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Proteolytic  ");
        break;
      }
      case eStageMenu_BetaAmylase: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Beta Amylase ");
        break;
      }
      case eStageMenu_AlphaAmylase: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Alpha Amylase");
        break;
      }
      case eStageMenu_Mashout: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Mashout      ");
        break;
      }
      case eStageMenu_Recirculation: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Recirculation");
        break;
      }
      case eStageMenu_Sparge: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Sparge       ");
        break;
      }
      case eStageMenu_Boil: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Boil         ");
        break;
      }
      case eStageMenu_Cooling: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Cooling      ");
        break;
      }
      case eStageMenu_Back: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Back         ");
        break;
      }
      default: {
        // reset operation state | INPUT : eRotaryEncoderMode newMode, int newPosition, int newMaxPosition, int newMinPosition, int newSingleStep, int newMultiStep
        //xSetupRotaryEncoder( eRotaryEncoderMode_Menu, eMainMenu_GO, MENU_SIZE_MAIN_MENU - 1, 0, 1, 0 );
      } 
    }
    
    ret = false;
  }

  return ret;
}

boolean displayMaltMenu(LiquidCrystal_I2C *lcd, eMaltMenuOptions position, boolean repaint) {
  boolean ret = repaint;

  if(repaint) {
    // display menu
    lcd->clear();
    lcd->home (); // go home
    lcd->print("Malt Menu");

    switch(position) {
      case eMaltMenu_CastleMalting_Chteau_Pilsen_2RS: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> CM Ch. Pilsen");
        break;
      }
      case eMaltMenu_CastleMalting_Wheat_Blanc: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> CM Wheat Blan");
        break;
      }
      case eMaltMenu_Back: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Back         ");
        break;
      }
      default: {
        // reset operation state | INPUT : eRotaryEncoderMode newMode, int newPosition, int newMaxPosition, int newMinPosition, int newSingleStep, int newMultiStep
        //xSetupRotaryEncoder( eRotaryEncoderMode_Menu, eMainMenu_GO, MENU_SIZE_MAIN_MENU - 1, 0, 1, 0 );
      } 
    }
    
    ret = false;
  }

  return ret;
}

boolean displaySettingsMenu(LiquidCrystal_I2C *lcd, eSettingsMenuOptions position, boolean repaint) {
  boolean ret = repaint;

  if(repaint) {
    // display menu
    lcd->clear();
    lcd->home (); // go home
    lcd->print("Settings Menu");

    switch(position) {
      case eSettingsMenu_PT100_Element: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> PT100 Element");
        break;
      }
      case eSettingsMenu_PT100_Up: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> PT100 Up     ");
        break;
      }
      case eSettingsMenu_PT100_Down: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> PT100 Down   ");
        break;
      }
      case eSettingsMenu_Back: {
        lcd->setCursor (0,1);        // go to start of 2nd line
        lcd->print("-> Back         ");
        break;
      }
      default: {
        // reset operation state | INPUT : eRotaryEncoderMode newMode, int newPosition, int newMaxPosition, int newMinPosition, int newSingleStep, int newMultiStep
        //xSetupRotaryEncoder( eRotaryEncoderMode_Menu, eMainMenu_GO, MENU_SIZE_MAIN_MENU - 1, 0, 1, 0 );
      } 
    }
    
    ret = false;
  }

  return ret;
}