brew.ino 34.5 KB
Newer Older
1 2 3 4 5 6 7 8 9
// ######################### DECLARE #########################
// ++++++++++++++++++++++++ ERROR ++++++++++++++++++++++++
//#include "error.h"
// ++++++++++++++++++++++++ ERROR ++++++++++++++++++++++++
// ++++++++++++++++++++++++ Library - DHT ++++++++++++++++++++++++
//#include "DHT.h"      //DHT humidity/temperature sensors
//#define DHTPIN 2        // What pin we're connected to
//#define DHTTYPE DHT11   // DHT 11 
#define ponto1 A4//
service-config's avatar
Mixer  
service-config committed
10 11 12 13 14 15
//#define ponto2 A5//
//#define R1 99.45
//#define R2 100.2
//#define R3 100.05
//#define calibragem 12.709066573

16 17 18
float amostra1;//
float temperatura, temperatura1;//
float tabela[] = {100.00, 100.39, 100.78, 101.17, 101.56, 101.95, 102.34, 102.73, 103.12, 103.51, 103.90, 104.29, 104.68, 105.07, 105.46, 105.85, 106.24, 106.63, 107.02, 107.40, 107.79, 108.18, 108.57, 108.96, 109.35, 109.73, 110.12, 110.51, 110.90, 111.29, 111.67, 112.06, 112.45, 112.83, 113.22, 113.61, 114.00, 114.38, 114.77, 115.15, 115.54, 115.93, 116.31, 116.70, 117.08, 117.47, 117.86, 118.24, 118.63, 119.01, 119.40, 119.78, 120.17, 120.55, 120.94, 121.32, 121.71, 122.09, 122.47, 122.86, 123.24, 123.63, 124.01, 124.39, 124.78, 125.16, 125.54, 125.93, 126.31, 126.69, 127.08, 127.46, 127.84, 128.22, 128.61, 128.99, 129.37, 129.75, 130.13, 130.52, 130.90, 131.28, 131.66, 132.04, 132.42, 132.80, 133.18, 133.57, 133.95, 134.33, 134.71, 135.09, 135.47, 135.85, 136.23, 136.61, 136.99, 137.37, 137.75, 138.13, 138.51, 138.88, 139.26, 139.64, 140.02, 140.40, 140.78, 141.16, 141.54, 141.91, 142.29, 142.67, 143.05, 143.43, 143.80, 144.18, 144.56, 144.94, 145.31, 145.69, 146.07, 146.44, 146.82, 147.20, 147.57, 147.95, 148.33, 148.70, 149.08, 149.46, 149.83, 150.21, 150.58, 150.96, 151.33, 151.71, 152.08, 152.46, 152.83, 153.21, 153.58, 153.96, 154.33, 154.71, 155.08, 155.46, 155.83, 156.20, 156.58, 156.95, 157.33, 157.70, 158.07, 158.45, 158.82, 159.19, 159.56, 159.94, 160.31, 160.68, 150.00, 160.00, 161.05, 161.43, 161.80, 162.17, 162.54, 162.91, 163.29, 163.66, 164.03, 164.40, 164.77, 165.14, 165.51, 165.89, 166.26, 166.63, 167.00, 167.37, 167.74, 168.11, 168.48, 168.85, 169.22, 169.59, 169.96, 170.33, 170.70, 171.07, 171.43, 171.80, 172.17, 172.54, 172.91, 173.28, 173.65, 174.02, 174.38, 174.75, 175.12, 175.49, 175.86, 176.22, 176.59, 176.96, 177.33, 177.69, 178.06, 178.43, 178.79, 179.16};
service-config's avatar
Mixer  
service-config committed
19 20 21 22 23 24 25 26
//float amostras[] = {630.00,630.00,630.00}; //,630.00,630.00,630.00,630.00,630.00,630.00,630.00,630.00,630.00,630.00,630.00,630.00,630.00,630.00,630.00,630.00,630.00};

float Va;
float Rx;

/*
float amostra2;//
float diferenca;
27 28 29 30 31 32

float tensaoPorAmostra;
float Vg;
float Vs;
float a;
float Rx;
service-config's avatar
Mixer  
service-config committed
33
*/
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
// ++++++++++++++++++++++++ Library - DHT ++++++++++++++++++++++++
// ++++++++++++++++++++++++ Library - LiquidCrystal_I2C ++++++++++++++++++++++++
#include <Wire.h>
#include <LCD.h>
#include <LiquidCrystal_I2C.h>
#define LCD_I2C_ADDR    0x27 // <<----- Add your address here.  Find it from I2C Scanner
#define LCD_X   16
#define LCD_Y   2
#define BACKLIGHT_PIN     3
#define En_pin  2
#define Rw_pin  1
#define Rs_pin  0
#define D4_pin  4
#define D5_pin  5
#define D6_pin  6
#define D7_pin  7
// ++++++++++++++++++++++++ Library - LiquidCrystal_I2C ++++++++++++++++++++++++
// ++++++++++++++++++++++++ Heating Element Relay ++++++++++++++++++++++++
#include <PID_v1.h>
service-config's avatar
Mixer  
service-config committed
53
#define HEATING_ELEMENT  24
54
// ++++++++++++++++++++++++ Heating Element Relay ++++++++++++++++++++++++
service-config's avatar
Mixer  
service-config committed
55 56 57 58 59 60 61 62 63
// ++++++++++++++++++++++++ Temperature ++++++++++++++++++++++++
#define TEMPERATURE_MAX_POSITION 120
// ++++++++++++++++++++++++ Temperature ++++++++++++++++++++++++
// ++++++++++++++++++++++++ Mixer ++++++++++++++++++++++++
#define MIXER_PIN 12
#define MIXER_MAX_POSITION 255
const int mixerPin = 12;
const int mixerMaxSpeed = 255;
// ++++++++++++++++++++++++ Mixer ++++++++++++++++++++++++
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
// ++++++++++++++++++++++++ State Machine ++++++++++++++++++++++++
#define SETTING_WELCOME_TIMEOUT  2000
#define MENU_MAX_DEPTH 10
#define MENU_INIT_VALUES -1,-1,-1,-1,-1,-1,-1,-1,-1,-1
// ++++++++++++++++++++++++ State Machine ++++++++++++++++++++++++
// ######################### DECLARE #########################


// ######################### INITIALIZE #########################
// ++++++++++++++++++++++++ Library - DHT ++++++++++++++++++++++++
//DHT dht(DHTPIN, DHTTYPE);
// ++++++++++++++++++++++++ Library - DHT ++++++++++++++++++++++++
// ++++++++++++++++++++++++ Library - LiquidCrystal_I2C ++++++++++++++++++++++++
int n = 1;
LiquidCrystal_I2C	lcd(LCD_I2C_ADDR,En_pin,Rw_pin,Rs_pin,D4_pin,D5_pin,D6_pin,D7_pin);
// ++++++++++++++++++++++++ Library - LiquidCrystal_I2C ++++++++++++++++++++++++
// ++++++++++++++++++++++++ Rotary Encoder ++++++++++++++++++++++++
service-config's avatar
Mixer  
service-config committed
81
volatile int  rotaryEncoderVirtualPosition = 0;
service-config's avatar
service-config committed
82
volatile int rotaryEncoderMaxPosition;
83 84 85 86 87 88 89 90 91 92 93 94 95
volatile int menuSize = 2;
const int PinCLK = 3;                   // Used for generating interrupts using CLK signal
const int PinDT = 22;                    // Used for reading DT signal
const int PinSW = 23;                    // Used for the push button switch
// ++++++++++++++++++++++++ Rotary Encoder ++++++++++++++++++++++++
// ++++++++++++++++++++++++ Heating Element Relay ++++++++++++++++++++++++
//Define Variables we'll be connecting to
double Setpoint, Input, Output;

//Specify the links and initial tuning parameters
float Kp = 200;
float Ki = 50;
float Kd = 0;
service-config's avatar
Mixer  
service-config committed
96
//PID myPID(&Input, &Output, &Setpoint,Kp,Ki,Kd, DIRECT);
97
//PID myPID(&Input, &Output, &Setpoint,1000,50,0, DIRECT);
service-config's avatar
Mixer  
service-config committed
98
PID myPID(&Input, &Output, &Setpoint,200,50,0, DIRECT);
99

service-config's avatar
Mixer  
service-config committed
100
int WindowSize = 1000;
101 102
unsigned long windowStartTime;
// ++++++++++++++++++++++++ Heating Element Relay ++++++++++++++++++++++++
service-config's avatar
Mixer  
service-config committed
103 104 105
// ++++++++++++++++++++++++ Mixer ++++++++++++++++++++++++
//const int mixerSpeed = 130;
// ++++++++++++++++++++++++ Mixer ++++++++++++++++++++++++
106 107 108 109 110 111 112 113 114 115
// ++++++++++++++++++++++++ Error ++++++++++++++++++++++++
enum sys_error {
  no_error,
  catastrofic_failure_sensor_temperature,
  catastrofic_failure_program,
  catastrofic_failure_logic_auto_manual
};
sys_error error = no_error;
// ++++++++++++++++++++++++ Error ++++++++++++++++++++++++
// ++++++++++++++++++++++++ State Machine ++++++++++++++++++++++++
service-config's avatar
Mixer  
service-config committed
116

117 118 119 120 121 122 123
// global
enum state_machine {
  state_welcome,
  state_menu,
  state_manual_time,
  state_manual_temperature,
  state_manual_mode,
service-config's avatar
Mixer  
service-config committed
124
  state_manual_mixer,
125 126 127
  state_error
};
state_machine state = state_welcome;
service-config's avatar
Mixer  
service-config committed
128

129 130 131 132 133 134 135 136 137
// menu
enum main_menu_list {
  main_manual,
  main_auto
};
enum manual_menu_list {
  manual_temperature,
  manual_time,
  manual_mode,
service-config's avatar
service-config committed
138
  manual_mixer,
139 140 141 142 143 144 145 146 147
  manual_start,
  manual_back
};
enum auto_menu_list {
  auto_recipe,
  auto_start,
  auto_back
};
int menu_position[MENU_MAX_DEPTH]= {MENU_INIT_VALUES};
service-config's avatar
Mixer  
service-config committed
148

149 150 151 152 153
// cooking
enum cook_mode_list {
  quick_start,
  start_at_temperature
};
service-config's avatar
Mixer  
service-config committed
154 155
int cookTime = 3600;
int cookTemperature = 36;
156
cook_mode_list cookMode = quick_start;
service-config's avatar
Mixer  
service-config committed
157
int cookMixerSpeed = 130;
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
// ++++++++++++++++++++++++ State Machine ++++++++++++++++++++++++
// ++++++++++++++++++++++++ Global Variables ++++++++++++++++++++++++
//float currentTemperatureCelsius;
//float targetTemperatureCelsius = -1;
// ++++++++++++++++++++++++ Global Variables ++++++++++++++++++++++++
// ######################### INITIALIZE #########################

// ######################### INTERRUPTS #########################
static unsigned long lastInterruptTime = 0;
void isr ()  {                    // Interrupt service routine is executed when a HIGH to LOW transition is detected on CLK
  
  unsigned long interruptTime = millis();    
  
  // If interrupts come faster than 5ms, assume it's a bounce and ignore
  if ((interruptTime - lastInterruptTime) > 5) {
    switch(state) {
service-config's avatar
Mixer  
service-config committed
174 175
      
      // Input of rotay encoder controling menus
176 177 178
      case state_manual_mode:
      case state_menu: {
        if (!digitalRead(PinDT)) {
service-config's avatar
Mixer  
service-config committed
179
            rotaryEncoderVirtualPosition = (rotaryEncoderVirtualPosition + 1);
180 181
        }
        else {
service-config's avatar
Mixer  
service-config committed
182
            rotaryEncoderVirtualPosition = rotaryEncoderVirtualPosition - 1;
183
        }
service-config's avatar
Mixer  
service-config committed
184 185
        if (rotaryEncoderVirtualPosition >= menuSize) {
            rotaryEncoderVirtualPosition = 0;
186
        }
service-config's avatar
Mixer  
service-config committed
187 188
        if (rotaryEncoderVirtualPosition < 0) {
            rotaryEncoderVirtualPosition = menuSize -1;
189 190 191 192
        }
        
        break;
      }
service-config's avatar
Mixer  
service-config committed
193 194
      
      // Input of rotay encoder controling time variables
195 196
      case state_manual_time: {
        if (!digitalRead(PinDT)) {
service-config's avatar
Mixer  
service-config committed
197 198
          if(rotaryEncoderVirtualPosition >= 60) {
            rotaryEncoderVirtualPosition = (rotaryEncoderVirtualPosition + 30);
199 200
          }
          else {
service-config's avatar
Mixer  
service-config committed
201
            rotaryEncoderVirtualPosition = (rotaryEncoderVirtualPosition + 1);
202 203 204
          }
        }
        else {
service-config's avatar
Mixer  
service-config committed
205 206
          if(rotaryEncoderVirtualPosition == 0) {
            rotaryEncoderVirtualPosition = (rotaryEncoderVirtualPosition + 60);
207 208
          }
          else {
service-config's avatar
Mixer  
service-config committed
209 210
            if(rotaryEncoderVirtualPosition >= 90) {
              rotaryEncoderVirtualPosition = (rotaryEncoderVirtualPosition - 30);
211 212
            }
            else {
service-config's avatar
Mixer  
service-config committed
213
              rotaryEncoderVirtualPosition = rotaryEncoderVirtualPosition - 1;
214 215 216
            }
          }
        }
service-config's avatar
Mixer  
service-config committed
217 218
        if (rotaryEncoderVirtualPosition > 7200) {
            rotaryEncoderVirtualPosition = 7200;
219
        }
service-config's avatar
Mixer  
service-config committed
220 221
        if (rotaryEncoderVirtualPosition < 0) {
            rotaryEncoderVirtualPosition = 0;
222 223 224 225
        }
        
        break;
      }
service-config's avatar
Mixer  
service-config committed
226 227 228
      
      // Input of rotay encoder controling integer variables within a range between 0 and rotaryEncoderMaxPosition
      case state_manual_mixer:
229 230 231
      case state_manual_temperature: {
        if (!digitalRead(PinDT)) {
          if ((interruptTime - lastInterruptTime) < 10) {
service-config's avatar
Mixer  
service-config committed
232
            rotaryEncoderVirtualPosition = (rotaryEncoderVirtualPosition + 5);
233 234
          }
          else {
service-config's avatar
Mixer  
service-config committed
235
            rotaryEncoderVirtualPosition = (rotaryEncoderVirtualPosition + 1);
236 237 238 239
          }
        }
        else {
          if ((interruptTime - lastInterruptTime) < 10) {
service-config's avatar
Mixer  
service-config committed
240
            rotaryEncoderVirtualPosition = (rotaryEncoderVirtualPosition - 5);
241 242
          }
          else {
service-config's avatar
Mixer  
service-config committed
243
            rotaryEncoderVirtualPosition = (rotaryEncoderVirtualPosition - 1);
244 245
          }
        }
service-config's avatar
Mixer  
service-config committed
246 247
        if (rotaryEncoderVirtualPosition > rotaryEncoderMaxPosition) {
            rotaryEncoderVirtualPosition = rotaryEncoderMaxPosition;
248
        }
service-config's avatar
Mixer  
service-config committed
249 250 251 252 253 254
        if (rotaryEncoderVirtualPosition < 0) {
            rotaryEncoderVirtualPosition = 0;
        }
       
        break;
      }
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
      default: {
        
      }
    }
  }
  
  lastInterruptTime = interruptTime;
}
// ######################### INTERRUPTS #########################

// ######################### START #########################
void setup() {
// ++++++++++++++++++++++++ Library - DHT ++++++++++++++++++++++++
  //dht.begin();
// ++++++++++++++++++++++++ Library - DHT ++++++++++++++++++++++++
// ++++++++++++++++++++++++ Library - LiquidCrystal_I2C ++++++++++++++++++++++++
  lcd.begin (LCD_X,LCD_Y); //  <<----- My LCD was 16x2
  // Switch on the backlight
  lcd.setBacklightPin(BACKLIGHT_PIN,POSITIVE);
  lcd.setBacklight(HIGH);
// ++++++++++++++++++++++++ Library - LiquidCrystal_I2C ++++++++++++++++++++++++
// ++++++++++++++++++++++++ Rotary Encoder ++++++++++++++++++++++++
  pinMode(PinCLK,INPUT);
  pinMode(PinDT, INPUT);
  pinMode(PinSW, INPUT);
  attachInterrupt(1, isr, FALLING);   // interrupt 0 is always connected to pin 2 on Arduino UNO
// ++++++++++++++++++++++++ Rotary Encoder ++++++++++++++++++++++++
// ++++++++++++++++++++++++ Heating Element Relay ++++++++++++++++++++++++
  pinMode(HEATING_ELEMENT, OUTPUT);
  digitalWrite(HEATING_ELEMENT,LOW);
  
  windowStartTime = millis();

  //initialize the variables we're linked to
  Setpoint = 100;

  //tell the PID to range between 0 and the full window size
  myPID.SetOutputLimits(0, WindowSize);

  //turn the PID on
  myPID.SetMode(AUTOMATIC);
// ++++++++++++++++++++++++ Heating Element Relay ++++++++++++++++++++++++
service-config's avatar
Mixer  
service-config committed
297 298
// ++++++++++++++++++++++++ Mixer ++++++++++++++++++++++++
  pinMode(mixerPin, OUTPUT);
service-config's avatar
service-config committed
299
  analogWrite(mixerPin, 0);
service-config's avatar
Mixer  
service-config committed
300 301 302 303
// ++++++++++++++++++++++++ Mixer ++++++++++++++++++++++++
// ++++++++++++++++++++++++ Temperature Sensor PT100 ++++++++++++++++++++++++
  analogReference(EXTERNAL);
// ++++++++++++++++++++++++ Temperature Sensor PT100 ++++++++++++++++++++++++
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
  Serial.begin(9600); 
  Serial.println("Let's start Brewing!");
}
// ######################### START #########################

void loop() {
  switch(state) {
    case state_welcome: {
      runWelcome();
      
      break;
    }
    case state_menu: {
      runMenu();
      
      break;
    }
service-config's avatar
Mixer  
service-config committed
321
    /*case state_manual_time: {
322 323 324 325 326 327 328 329 330
      //runManualTime();
      
      break;
    }
    case state_manual_temperature: {
      //runManualTemp();
      
      break;
    }
service-config's avatar
Mixer  
service-config committed
331 332 333 334 335
    case state_manual_mixer: {
      //runManualTemp();
      
      break;
    }*/
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
    case state_error: {
      runError();
      
      break;
    }
    default: {
      lcdPrint("Error", "The brewer has stoped working properly. Please shutdown NOW for your safety!");
      state = state_error;
      error = catastrofic_failure_program;
    }
  }
}

void runWelcome() {
  // Write welcome
  lcd.clear();
  lcd.home (); // go home
  lcd.print("  Let's start");
  lcd.setCursor (0,1);        // go to start of 2nd line
  lcd.print("    Brewing!");
  
  delay(SETTING_WELCOME_TIMEOUT);
  
  state = state_menu;
}

void runMenu() {
  digitalWrite(HEATING_ELEMENT,LOW);
  
  switch(menu_position[0]) {
    case main_manual: {
      switch(menu_position[1]) {
        case manual_temperature: {
          // do work
          cookTemperature = getTemperature(cookTemperature);
          
          menu_position[1] = -1;
service-config's avatar
Mixer  
service-config committed
373
          rotaryEncoderVirtualPosition = manual_temperature;
374 375 376 377 378 379 380 381
          
          break;
        }
        case manual_time: {
          // do work
          cookTime = getTimer(cookTime);
          
          menu_position[1] = -1;
service-config's avatar
Mixer  
service-config committed
382
          rotaryEncoderVirtualPosition = manual_time;
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
          
          break;
        }
        case manual_mode: {
          // do work
          int returnMode = getMode();
          switch(returnMode) {
            case quick_start: {
              cookMode = quick_start;
              break;
            }
            case start_at_temperature: {
              cookMode = start_at_temperature;
              
              break;
            }
            default: {
              cookMode = quick_start;
            }
          }
          
          menu_position[1] = -1;
service-config's avatar
Mixer  
service-config committed
405 406 407 408 409 410 411 412 413 414
          rotaryEncoderVirtualPosition = manual_mode;
          
          break;
        }
        case manual_mixer: {
          // do work
          cookMixerSpeed = getMixerSpeed(cookMixerSpeed);
          
          menu_position[1] = -1;
          rotaryEncoderVirtualPosition = manual_time;
415 416 417 418 419 420 421 422
          
          break;
        }
        case manual_start: {
          // do work
          runStart();
          
          menu_position[1] = -1;
service-config's avatar
Mixer  
service-config committed
423
          rotaryEncoderVirtualPosition = manual_start;
424 425 426 427 428 429 430
          
          break;
        }
        case manual_back: {
          menu_position[0] = -1;
          menu_position[1] = -1;
          
service-config's avatar
Mixer  
service-config committed
431
          rotaryEncoderVirtualPosition = manual_back;
432 433 434 435 436
          
          break;
        }
        default: {
          // reset menu variables
service-config's avatar
Mixer  
service-config committed
437
          menuSize = 6;
438 439 440 441 442 443 444
          
          // display menu
          lcd.clear();
          lcd.home (); // go home
          lcd.print("Manual Menu");
          
          while(true) {
service-config's avatar
Mixer  
service-config committed
445
            switch(rotaryEncoderVirtualPosition) {
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
              case manual_temperature: {
                lcd.setCursor (0,1);        // go to start of 2nd line
                lcd.print("-> Temperature  ");
                delay(100);
                break;
              }
              case manual_time: {
                lcd.setCursor (0,1);        // go to start of 2nd line
                lcd.print("-> Time         ");
                delay(100);
                break;
              }
              case manual_mode: {
                lcd.setCursor (0,1);        // go to start of 2nd line
                lcd.print("-> Mode         ");
                delay(100);
                break;
              }
service-config's avatar
Mixer  
service-config committed
464 465 466 467 468 469
              case manual_mixer: {
                lcd.setCursor (0,1);        // go to start of 2nd line
                lcd.print("-> Mixer Speed  ");
                delay(100);
                break;
              }
470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
              case manual_start: {
                lcd.setCursor (0,1);        // go to start of 2nd line
                lcd.print("-> Start        ");
                delay(100);
                break;
              }
              case manual_back: {
                lcd.setCursor (0,1);        // go to start of 2nd line
                lcd.print("-> Back         ");
                delay(100);
                break;
              }
              default: {
                //lcd.setCursor (0,1);        // go to start of 2nd line
                //lcd.print("*** Error ***");
service-config's avatar
Mixer  
service-config committed
485
                rotaryEncoderVirtualPosition = 0;
486 487 488 489
              } 
            }
            
            if (!(digitalRead(PinSW))) {        // check if pushbutton is pressed
service-config's avatar
Mixer  
service-config committed
490
              menu_position[1] = rotaryEncoderVirtualPosition;
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
              while (!digitalRead(PinSW)) {}  // wait til switch is released
              delay(10);                      // debounce
              break;
            }
          }
        } 
      }
      break;
    }
    case main_auto: {
      switch(menu_position[1]) {
        case auto_recipe: {
          // do work
          
          menu_position[1] = -1;
service-config's avatar
Mixer  
service-config committed
506
          rotaryEncoderVirtualPosition = auto_recipe;
507 508 509 510 511 512 513
          
          break;
        }
        case auto_start: {
          // do work
          
          menu_position[1] = -1;
service-config's avatar
Mixer  
service-config committed
514
          rotaryEncoderVirtualPosition = auto_start;
515 516 517 518 519 520 521 522 523
          
          break;
        }
        case auto_back: {
          // reset choces
          menu_position[0] = -1;
          menu_position[1] = -1;
          
          // set menu position
service-config's avatar
Mixer  
service-config committed
524
          rotaryEncoderVirtualPosition = main_auto;
525 526 527 528 529
          
          break;
        }
        default: {
          // reset menu variables
service-config's avatar
Mixer  
service-config committed
530
          //rotaryEncoderVirtualPosition = 0;
531 532 533 534 535 536 537 538
          menuSize = 3;
          
          // display menu
          lcd.clear();
          lcd.home (); // go home
          lcd.print("Automatic Menu");
          
          while(true) {
service-config's avatar
Mixer  
service-config committed
539
            switch(rotaryEncoderVirtualPosition) {
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
              case auto_recipe: {
                lcd.setCursor (0,1);        // go to start of 2nd line
                lcd.print("-> Recipe       ");
                delay(100);
                break;
              }
              case auto_start: {
                lcd.setCursor (0,1);        // go to start of 2nd line
                lcd.print("-> Start        ");
                delay(100);
                break;
              }
              case auto_back: {
                lcd.setCursor (0,1);        // go to start of 2nd line
                lcd.print("-> Back         ");
                delay(100);
                break;
              }
              default: {
                //lcd.setCursor (0,1);        // go to start of 2nd line
                //lcd.print("*** Error ***");
service-config's avatar
Mixer  
service-config committed
561
                rotaryEncoderVirtualPosition = 0;
562 563 564 565
              } 
            }
            
            if (!(digitalRead(PinSW))) {        // check if pushbutton is pressed
service-config's avatar
Mixer  
service-config committed
566
              menu_position[1] = rotaryEncoderVirtualPosition;
567 568 569 570 571 572 573 574 575 576 577
              while (!digitalRead(PinSW)) {}  // wait til switch is released
              delay(10);                      // debounce
              break;
            }
          }
        } 
      }
      break;
    }
    default: {
      // reset menu variables
service-config's avatar
Mixer  
service-config committed
578
      //rotaryEncoderVirtualPosition = 0;
579 580 581 582 583 584 585 586
      menuSize = 2;
      
      // display menu
      lcd.clear();
      lcd.home (); // go home
      lcd.print("Main Menu");
      
      while(true) {
service-config's avatar
Mixer  
service-config committed
587
        switch(rotaryEncoderVirtualPosition) {
588 589 590 591 592 593 594 595 596 597 598 599 600 601 602
          case main_manual: {
            lcd.setCursor (0,1);        // go to start of 2nd line
            lcd.print("-> Manual       ");
            delay(100);
            break;
          }
          case main_auto: {
            lcd.setCursor (0,1);        // go to start of 2nd line
            lcd.print("-> Automatic    ");
            delay(100);
            break;
          }
          default: {
            //lcd.setCursor (0,1);        // go to start of 2nd line
            //lcd.print("*** Error ***");
service-config's avatar
Mixer  
service-config committed
603
            rotaryEncoderVirtualPosition = 0;
604 605 606 607
          } 
        }
        
        if (!(digitalRead(PinSW))) {        // check if pushbutton is pressed
service-config's avatar
Mixer  
service-config committed
608
          menu_position[0] = rotaryEncoderVirtualPosition;
609 610 611 612 613 614 615 616 617 618 619 620 621 622
          while (!digitalRead(PinSW)) {}  // wait til switch is released
          delay(10);                      // debounce
          break;
        }
      }
    } 
  }
}

int getTimer(int init) {
  state_machine initialState = state;
  
  // set operation state
  state = state_manual_time;
service-config's avatar
Mixer  
service-config committed
623
  rotaryEncoderVirtualPosition = init;
624 625

  // initialize variables
service-config's avatar
Mixer  
service-config committed
626
  int rotaryEncoderPreviousPosition = 0;
627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645
  int minutes = 0;
  int seconds = 0;
  
  // Setup Screen
  lcd.clear();
  lcd.home();        
  lcd.print("Set Time");
  lcd.setCursor (0,LCD_Y-1);
  lcd.print("      0:00");
  
  while(true) {
    // Check for timer set
    if (!(digitalRead(PinSW))) {        // check if pushbutton is pressed
      while (!digitalRead(PinSW)) {}  // wait til switch is released
      delay(10);                      // debounce
      break;
    }
    
    // display current timer
service-config's avatar
Mixer  
service-config committed
646 647 648 649
    if (rotaryEncoderVirtualPosition != rotaryEncoderPreviousPosition) {
      rotaryEncoderPreviousPosition = rotaryEncoderVirtualPosition;
      minutes = rotaryEncoderVirtualPosition/60;
      seconds = rotaryEncoderVirtualPosition-minutes*60;
650 651 652 653 654 655 656 657 658 659 660 661 662 663
      
      lcd.setCursor (0,LCD_Y-1);
      lcd.print("      ");
      lcd.print(minutes);
      lcd.print(":");
      if(seconds<10) {
        lcd.print("0");
      }
      lcd.print(seconds);
      lcd.println("                ");
    }
  }
  
  state = initialState;
service-config's avatar
Mixer  
service-config committed
664
  return rotaryEncoderVirtualPosition;
665 666 667 668 669 670 671
}

int getTemperature(int init) {
  state_machine initialState = state;
  
  // set operation state
  state = state_manual_temperature;
service-config's avatar
Mixer  
service-config committed
672
  rotaryEncoderVirtualPosition = init;  
673 674

  // initialize variables
service-config's avatar
Mixer  
service-config committed
675
  int rotaryEncoderPreviousPosition = 0;
676 677 678 679 680 681 682 683
  
  // Setup Screen
  lcd.clear();
  lcd.home();        
  lcd.print("Set Temperature");
  lcd.setCursor (0,LCD_Y-1);
  lcd.print("       0 *C");
  
service-config's avatar
Mixer  
service-config committed
684 685
  rotaryEncoderMaxPosition = TEMPERATURE_MAX_POSITION;
  
686 687 688 689 690 691 692 693 694
  while(true) {
    // Check for timer set
    if (!(digitalRead(PinSW))) {        // check if pushbutton is pressed
      while (!digitalRead(PinSW)) {}  // wait til switch is released
      delay(10);                      // debounce
      break;
    }
    
    // display current timer
service-config's avatar
Mixer  
service-config committed
695 696
    if (rotaryEncoderVirtualPosition != rotaryEncoderPreviousPosition) {
      rotaryEncoderPreviousPosition = rotaryEncoderVirtualPosition;
697 698 699
      
      lcd.setCursor (0,LCD_Y-1);
      lcd.print("     ");
service-config's avatar
Mixer  
service-config committed
700
      if(rotaryEncoderVirtualPosition<10) {
701 702 703
        lcd.print("  ");
      }
      else {
service-config's avatar
Mixer  
service-config committed
704
        if(rotaryEncoderVirtualPosition<100) {
705 706 707
          lcd.print(" ");
        }
      }
service-config's avatar
Mixer  
service-config committed
708
      lcd.print(rotaryEncoderVirtualPosition);
709 710 711 712 713 714
      lcd.print(" *C");
      lcd.println("                ");
    }
  }
  
  state = initialState;
service-config's avatar
Mixer  
service-config committed
715
  return rotaryEncoderVirtualPosition;
716 717 718 719 720 721 722 723 724
}

int getMode() {
  state_machine initialState = state;
  int initialMenuSize = menuSize;
  
  // set operation state
  state = state_manual_mode;
  menuSize = 2;
service-config's avatar
Mixer  
service-config committed
725
  rotaryEncoderVirtualPosition = cookMode;  
726 727

  // initialize variables
service-config's avatar
Mixer  
service-config committed
728
  int rotaryEncoderPreviousPosition = 0;
729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
  
  // Setup Screen
  lcd.clear();
  lcd.home();        
  lcd.print("Set Mode");
  lcd.setCursor (0,LCD_Y-1);
  lcd.print(" Quick Start");
  
  while(true) {
    // Check for timer set
    if (!(digitalRead(PinSW))) {        // check if pushbutton is pressed
      while (!digitalRead(PinSW)) {}  // wait til switch is released
      delay(10);                      // debounce
      break;
    }
    
    // display current timer
service-config's avatar
Mixer  
service-config committed
746 747
    if (rotaryEncoderVirtualPosition != rotaryEncoderPreviousPosition) {
      rotaryEncoderPreviousPosition = rotaryEncoderVirtualPosition;
748 749 750
      
      lcd.setCursor (0,LCD_Y-1);
      
service-config's avatar
Mixer  
service-config committed
751
      switch(rotaryEncoderVirtualPosition) {
752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771
        case quick_start: {
          lcd.print("  Quick Start   ");
          
          break;
        }
        case start_at_temperature: {
          lcd.print("Start After Temp");
          
          break;
        }
        default: {
          lcd.print("*** error ***");
        }
      }
      lcd.println("                ");
    }
  }
  
  state = initialState;
  menuSize = initialMenuSize;
service-config's avatar
Mixer  
service-config committed
772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823
  return rotaryEncoderVirtualPosition;
}

int getMixerSpeed(int init) {
  state_machine initialState = state;
  
  // set operation state
  state = state_manual_mixer;
  rotaryEncoderVirtualPosition = init;

  // initialize variables
  int rotaryEncoderPreviousPosition = 0;
  int mixerSpeed = 0;
  
  // Setup Screen
  lcd.clear();
  lcd.home();        
  lcd.print("Set Mixer Speed");
  lcd.setCursor (0,LCD_Y-1);
  lcd.print("       000");
  
  rotaryEncoderMaxPosition = MIXER_MAX_POSITION;
  
  while(true) {
    // Check for timer set
    if (!(digitalRead(PinSW))) {        // check if pushbutton is pressed
      while (!digitalRead(PinSW)) {}  // wait til switch is released
      delay(10);                      // debounce
      break;
    }
    
    // display current timer
    if (rotaryEncoderVirtualPosition != rotaryEncoderPreviousPosition) {
      rotaryEncoderPreviousPosition = rotaryEncoderVirtualPosition;
      
      lcd.setCursor (0,LCD_Y-1);
      lcd.print("      ");
      //lcd.print(minutes);
      //lcd.print(":");
      if(rotaryEncoderVirtualPosition<100) {
        lcd.print("0");
        if(rotaryEncoderVirtualPosition<10) {
          lcd.print("0");
        }
      }
      lcd.print(rotaryEncoderVirtualPosition);
      lcd.println("                ");
    }
  }
  
  state = initialState;
  return rotaryEncoderVirtualPosition;
824 825 826
}

void runStart() {
service-config's avatar
Mixer  
service-config committed
827 828 829
  
  // Working environment variables
  float runCurrentTemperature;
830 831 832 833
  long runTargetTemperature;
  unsigned long runStartTime;
  unsigned long runTargetTime;
  cook_mode_list runCurrentMode;
service-config's avatar
service-config committed
834
  unsigned long runMixerSpeed;
service-config's avatar
Mixer  
service-config committed
835 836
  
  // Configure environment
837 838 839
  boolean clockStart = false;
  boolean clockEnd = false;
  
service-config's avatar
Mixer  
service-config committed
840
  // Iterative work
841
  while(true) {
service-config's avatar
Mixer  
service-config committed
842
    
843 844 845
    // Build Instructions
    switch(menu_position[0]) {
      case main_manual: {
service-config's avatar
Mixer  
service-config committed
846 847
        
        // whenever changes are made to the cook variables, they must be applied to the running variables
848 849 850
        runTargetTemperature = cookTemperature;
        runTargetTime = cookTime;
        runCurrentMode = cookMode;
service-config's avatar
Mixer  
service-config committed
851
        runMixerSpeed = cookMixerSpeed;
852
        
service-config's avatar
Mixer  
service-config committed
853
        // check if time ended and is time to stop and return to menu
854
        if(clockStart && clockEnd) {
service-config's avatar
service-config committed
855 856 857 858 859 860 861 862
          
          // Turn mixer OFF for safety
          analogWrite(mixerPin, 0);
          
          // Turn heading element OFF for safety
          digitalWrite(HEATING_ELEMENT,LOW);
          
          // Pause for efect
863
          delay(1000);
service-config's avatar
service-config committed
864
          
865 866 867 868 869 870
          return;
        }
        
        break;
      }
      case main_auto: {
service-config's avatar
Mixer  
service-config committed
871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890
        // get the next instruction
        
        // if it's time for a new instruction
        
          // if human interaction is required
          
            // display message
            
            // sound buzzer
            
            // check if rotary encoder press to continue
        
          // check what variables are afected
          
          // check what the new values are
          
          // apply the values
        
        // if it's NOT time for a new instruction
           //delay(1000);
891 892 893 894 895 896 897 898 899 900 901
        
        break;
      }
      default: {
        lcdPrint("Error", "The system has failed to be set into manual or automatic mode!");
        state = state_error;
        error = catastrofic_failure_logic_auto_manual;
        return;
      } 
    }
    
service-config's avatar
Mixer  
service-config committed
902 903
    // ************ Run Instructions ************
    
904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919
    // Setup LCD
    lcd.clear();
    lcd.home();
    lcd.print("Hot: 000*C/000*C");
    //lcd.print("Cool:000*C/000*C");
    lcd.setCursor (0,LCD_Y-1);
    if(runCurrentMode == quick_start) {
      lcd.print("Quick      00:00");
      
      clockStart = true;
      runStartTime = millis();
    }
    else {
      lcd.print("Wait       00:00");
    }
    
service-config's avatar
Mixer  
service-config committed
920 921 922 923 924 925 926 927
    while(true) { 
      amostra1 = analogRead(ponto1);
      float Vs = 4.965; //4.9345;
      float Vin = 8.84; //8.8345;
      float adcStepCount = 1024.0;
      float R1 = 149.3;
      float Rl = 3.37;
      float R_OpTemp = 19.7; //21.597; //24.37;
928
      
service-config's avatar
Mixer  
service-config committed
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949
      Va = amostra1 * Vs / adcStepCount;
      //Rx = 151.5 * Va / ( 11.01 - Va ) - 30;
      
      Rx = R1 / ( Vin / Va - 1.0) - Rl - R_OpTemp;
      
      int i;
      float i_f;
      int tabelaSize = sizeof(tabela) / sizeof(float);
      for( i = 0, i_f = 0.0; i <= tabelaSize; i++, i_f++) {
        if((tabela[i]) > Rx) {
          if(i == 0) {
            runCurrentTemperature = -1.0;
          }
          else {
            if(i == tabelaSize) {
              runCurrentTemperature = 210.0;
            }
            else {
              runCurrentTemperature = (i_f - 1.0) + ((Rx - tabela[i-1])/(tabela[i] - tabela[i-1]));
            }
          }
950
          
service-config's avatar
Mixer  
service-config committed
951
          break;
952 953 954
        }
      }
      
service-config's avatar
Mixer  
service-config committed
955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973
      /*
      Serial.print("O valor das entradas sao: [");
      Serial.print(amostra1);
      Serial.print(", ");
      Serial.print(amostra2);
      Serial.print("]");
      Serial.print("diferenca: [");
      Serial.print(diferenca, 6);
      Serial.print("] tensao por amortra: [");
      Serial.print(tensaoPorAmostra, 6);
      Serial.print("] Vg: [");
      Serial.print(Vg, 6);
      Serial.print("] Vs: [");
      Serial.print(Vs);
      Serial.print("] a: [");
      Serial.print(a, 6);
      Serial.print("] Rx: [");
      Serial.print(Rx, 6);
      */
974
      
service-config's avatar
service-config committed
975 976 977
      // Operate mixer
      analogWrite(mixerPin, runMixerSpeed);
      
978 979 980 981
      // Operate the heating element
      Input = runCurrentTemperature;
      Setpoint = runTargetTemperature;
      myPID.Compute();
service-config's avatar
Mixer  
service-config committed
982 983
      
      // Get time and use as "date" of the sensor readings
984 985
      unsigned long now = millis();
      
service-config's avatar
Mixer  
service-config committed
986
      // Check if it's time to vary the pulse width modulation and if so do it by shifting the "Relay in ON" Window
987
      if(now - windowStartTime>WindowSize)
service-config's avatar
Mixer  
service-config committed
988
      { 
989 990 991
        windowStartTime += WindowSize;
      }
      
service-config's avatar
Mixer  
service-config committed
992
      // Check if the "date" is inside the "Relay ON" window and turn it ON; if not, turn it OFF
993 994 995 996
      if(Output > now - windowStartTime) {
        digitalWrite(HEATING_ELEMENT,HIGH);
       
        if(Output != 0) {
service-config's avatar
Mixer  
service-config committed
997 998 999 1000 1001 1002 1003 1004 1005 1006
          Serial.print("O valor das entradas sao: [");
          Serial.print(amostra1);
          Serial.print("] Va[");
          Serial.print(Va,6);
          Serial.print("] Rx[");
          Serial.print(Rx,6);
          Serial.print("] Temperature[");
          Serial.print(runCurrentTemperature,6);
          Serial.print("] ");
          
1007 1008 1009 1010
          Serial.print("+++  Diff: ");
          Serial.print(now - windowStartTime);
          Serial.print(" | Output: ");
          Serial.println(Output);
service-config's avatar
Mixer  
service-config committed
1011
          
1012 1013 1014 1015 1016 1017
        }
      }
      else {
        digitalWrite(HEATING_ELEMENT,LOW);
       
        if(Output != 0) {
service-config's avatar
Mixer  
service-config committed
1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
          Serial.print("O valor das entradas sao: [");
          Serial.print(amostra1);
          Serial.print("] Va[");
          Serial.print(Va,6);
          Serial.print("] Rx[");
          Serial.print(Rx,6);
          Serial.print("] Temperature[");
          Serial.print(runCurrentTemperature,6);
          Serial.print("] ");
          
1028 1029 1030 1031
          Serial.print("---  Diff: ");
          Serial.print(now - windowStartTime);
          Serial.print(" | Output: ");
          Serial.println(Output);
service-config's avatar
Mixer  
service-config committed
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
          
        }
        else {
          Serial.print("O valor das entradas sao: [");
          Serial.print(amostra1);
          Serial.print("] Va[");
          Serial.print(Va,6);
          Serial.print("] Rx[");
          Serial.print(Rx,6);
          Serial.print("] Temperature[");
          Serial.print(runCurrentTemperature,6);
          Serial.println("]"); 
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
        }
      }
      
      // Print status to LCD
      lcd.setCursor (5,0);
      if (runCurrentTemperature < 10) {
        lcd.print("  ");
      }
      else {
        if (runCurrentTemperature < 100) {
          lcd.print(" ");
        }
      }
service-config's avatar
Mixer  
service-config committed
1057
      lcd.print(runCurrentTemperature, 1);
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069
      
      lcd.setCursor (11,0);
      if (runTargetTemperature < 10) {
        lcd.print("  ");
      }
      else {
        if (runTargetTemperature < 100) {
          lcd.print(" ");
        }
      }
      lcd.print(runTargetTemperature);
      
service-config's avatar
Mixer  
service-config committed
1070
      // Check if the target temperature has been reached so the clock can move forward.
1071 1072 1073 1074
      if(runCurrentTemperature == runTargetTemperature && clockStart == false) {
        clockStart = true;
        runStartTime = now;
      }
service-config's avatar
Mixer  
service-config committed
1075 1076
      
      // If the clock can move forward, calculate it's display time; if not, set it to the total cooking time
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
      int displayTime = 0;
      if(clockStart) {
        displayTime = runTargetTime - ((now - runStartTime) / 1000);
        
        if(displayTime <= 0) {
          displayTime = 0;
          clockEnd = true;
          
          break;
        }
      }
      else {
        displayTime = runTargetTime;
      }
service-config's avatar
Mixer  
service-config committed
1091 1092
      
      // Print the clock to the LCD
1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
      int minutes = displayTime/60;
      int seconds = displayTime-minutes*60;
      lcd.setCursor (10,1);
      //lcd.print("      ");
      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);
    }
  }
}

void runError() {
  if(error != no_error) {
    if (error == catastrofic_failure_sensor_temperature)
    {
      Serial.println("[Error] catastrofic_failure_sensor_temperature!");
      
      lcdPrint("ERROR", "A catastrofic failure was detected on the temperature sensor!");
      /*
      if (!isnan(dht.readTemperature())) {  // Check if any reads failed and exit early (to try again).
        error = no_error;
        return;
      }
      */
    }
  }
  else {
    state = state_welcome;
  }
}

void lcdPrint(String title, String message) {
  int messageLength = message.length();
  
  lcd.clear();
    
  // print title
  lcd.home();
  lcd.print(title);
    
  // print message
  if(messageLength <= LCD_X) {
    lcd.setCursor(0,LCD_Y-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_X; cursor+=2) {
      lcd.setCursor(0,LCD_Y-1);
      lcd.print(output_message.substring(cursor, cursor+16));
      delay(500);
    }
  }
}