greenhouse.ino 6.5 KB
Newer Older
João Lino's avatar
João Lino committed
1 2 3 4 5

#include <dht.h>

dht DHT;

6
#define __debug
João Lino's avatar
João Lino committed
7 8 9 10 11 12 13 14 15 16 17 18 19

#define PROGRAM_VERSION "0.4.0"

#define DHT11_PIN 2
#define RelayPin 3
#define LEDCount 6
#define LED1Pin 4
#define LED2Pin 5
#define LED3Pin 6
#define LED4Pin 7
#define LED5Pin 8
#define LED6Pin 9
#define ButtonPin 13
20
#define TEMPERATURE_SAMPLES 10
João Lino's avatar
João Lino committed
21 22 23 24 25 26

int leds[LEDCount];
double Setpoint;
int SetpointMode;
boolean relayState;
double temperaturaQueAchava;
27 28 29 30
double temperaturaMedia[TEMPERATURE_SAMPLES];
int temperaturaMediaIndex;
boolean tempSensorOK;
//unsigned long elapsed;
João Lino's avatar
João Lino committed
31 32 33 34

void setup()
{
  Serial.begin(115200);
35
  Serial.println("Greenhouse - for beer fermentation");
João Lino's avatar
João Lino committed
36 37 38 39 40
  Serial.print("PROGRAM VERSION: ");
  Serial.println(PROGRAM_VERSION);
  Serial.print("\tDHT LIBRARY VERSION: ");
  Serial.println(DHT_LIB_VERSION);
  Serial.println();
41
  Serial.println("Temp Sensor,\tSensor Status,\temperaturaAlvo (C),\temperaturaQueDiz (C),\ttempetaturaQueEuAcho (C),\tRelay State (ON\\OFF)");
João Lino's avatar
João Lino committed
42 43 44 45 46 47 48

  leds[0] = LED1Pin;
  leds[1] = LED2Pin;
  leds[2] = LED3Pin;
  leds[3] = LED4Pin;
  leds[4] = LED5Pin;
  leds[5] = LED6Pin;
João Lino's avatar
João Lino committed
49
  Setpoint = 18.0;
50
  SetpointMode = 18;
João Lino's avatar
João Lino committed
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
  temperaturaQueAchava = 200.0;

  // Relay
  relayState = false;
  pinMode(RelayPin, OUTPUT);
  digitalWrite(RelayPin, HIGH);

  // LEDs
  pinMode(LED1Pin, OUTPUT);
  pinMode(LED2Pin, OUTPUT);
  pinMode(LED3Pin, OUTPUT);
  pinMode(LED4Pin, OUTPUT);
  pinMode(LED5Pin, OUTPUT);
  pinMode(LED6Pin, OUTPUT);
  digitalWrite(LED1Pin, LOW);
  digitalWrite(LED2Pin, LOW);
  digitalWrite(LED3Pin, LOW);
  digitalWrite(LED4Pin, LOW);
  digitalWrite(LED5Pin, LOW);
  digitalWrite(LED6Pin, LOW);

  // Button
  pinMode(ButtonPin, INPUT);
74 75 76 77 78 79 80 81 82

  for( temperaturaMediaIndex = 0; temperaturaMediaIndex < TEMPERATURE_SAMPLES; temperaturaMediaIndex++ ) {
    temperaturaMedia[temperaturaMediaIndex] = Setpoint;
  }

  setLEDs(SetpointMode);

  tempSensorOK = false;
  //elapsed = millis();
João Lino's avatar
João Lino committed
83 84 85 86
}

void loop()
{
87 88 89 90 91
  /*if ( millis() - 4000 > elapsed ) {
    Serial.println("Temp Sensor,\tSensor Status,\temperaturaAlvo (C),\temperaturaQueDiz (C),\ttempetaturaQueEuAcho (C),\tRelay State (ON\\OFF)");
    elapsed = millis();
  }*/

João Lino's avatar
João Lino committed
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
  if ( hasBtnPressed() ) {

    // increase mode
    SetpointMode++;

    // reset mode back to 0
    if ( SetpointMode > 63 ) {
      SetpointMode = 0;
    }

    // change leds
    setLEDs(SetpointMode);


    if ( SetpointMode > 31 ) {

      ///TODO set automatic fermentation temperatures
      Setpoint = SetpointMode - 32 + 0.5;
    }
    else {

      // set manual temperatures
      Setpoint = SetpointMode;
    }
  }

  // Read data off of the DHT11 sensor
  int chk = DHT.read11(DHT11_PIN);

  // debug received data
122
  tempSensorOK = debugDHT(chk);
João Lino's avatar
João Lino committed
123

124
  if(tempSensorOK) {
João Lino's avatar
João Lino committed
125

126 127 128 129 130 131 132 133 134 135 136
    double temperaturaQueDiz = DHT.temperature;
  
    if (temperaturaQueAchava == 200.0) {
      temperaturaQueAchava = temperaturaQueDiz;
    }
  
    // Calcular a temperatura de processamento
    temperaturaMediaIndex++;
    if ( temperaturaMediaIndex >= TEMPERATURE_SAMPLES ) {
      temperaturaMediaIndex = 0;
    }
João Lino's avatar
João Lino committed
137

138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
    /*Serial.print("t[");
    Serial.print(temperaturaMediaIndex);
    Serial.print("]=");
    Serial.print(temperaturaQueAchava);*/
    if (temperaturaQueDiz > (temperaturaQueAchava + 0)) {
      //Serial.print("+0.1, ");
      temperaturaMedia[temperaturaMediaIndex] = (temperaturaQueAchava + 0.2);
    }
    else {
      if (temperaturaQueDiz < (temperaturaQueAchava - 0.1)) {
        //Serial.print("-0.1, ");
        temperaturaMedia[temperaturaMediaIndex] = (temperaturaQueAchava - 1.0);
      }
      else {
        //Serial.print(", ");
        temperaturaMedia[temperaturaMediaIndex] = temperaturaQueDiz;
      }
João Lino's avatar
João Lino committed
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
    double tempetaturaQueEuAcho = 0.0;
    for ( int i = 0; i < TEMPERATURE_SAMPLES; i++ ) {
      /*Serial.print(temperaturaMedia[i]);
      Serial.print(" ");*/
      tempetaturaQueEuAcho += temperaturaMedia[i];
    }
    tempetaturaQueEuAcho /= TEMPERATURE_SAMPLES;
    //Serial.print(", ");
  
  /*
    
  
    if (temperaturaQueAchava > temperaturaQueDiz)
      tempetaturaQueEuAcho = temperaturaQueAchava - 0.25;
    else if (temperaturaQueAchava < temperaturaQueDiz)
      tempetaturaQueEuAcho = temperaturaQueAchava + 0.25;
    else
      tempetaturaQueEuAcho = temperaturaQueAchava;
  
    //tempetaturaQueEuAcho = temperaturaQueDiz;
  */
  #ifdef __debug
    Serial.print("");
    Serial.print(Setpoint, 2);
    Serial.print(", ");
    Serial.print(temperaturaQueDiz, 2);
    Serial.print(", ");
    Serial.print(tempetaturaQueEuAcho, 2);
    Serial.print(",  ");
  #endif
  
    if ( tempetaturaQueEuAcho >= (Setpoint + 1.0) ) {
  
      // turn on compressor to start cooling
      relayState = true;
      digitalWrite( RelayPin, LOW );
    }
    else {
      if ( tempetaturaQueEuAcho <= (Setpoint - 0.0) ) {
  
        // turn off compressor to stop cooling
        relayState = false;
        digitalWrite( RelayPin, HIGH );
      }
    }
  
  #ifdef __debug
    if (relayState) {
      Serial.println( "ON" );
    }
    else {
      Serial.println( "OFF" );
    }
  #endif
  
    temperaturaQueAchava = tempetaturaQueEuAcho;
    delay(50);
    //delay(100);
João Lino's avatar
João Lino committed
215 216 217 218 219 220
  }
}

void setLEDs( int number ) {
  int calcNumber = number;

221 222
  for ( int i = (LEDCount - 1); i >= 0; i-- ) {
    boolean zero = ((calcNumber % 2) == 0) ? true : false;
João Lino's avatar
João Lino committed
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
    calcNumber /= 2;

    if (zero) {
      digitalWrite(leds[i], LOW);
    }
    else {
      digitalWrite(leds[i], HIGH);
    }
  }
}

boolean hasBtnPressed() {
  if ( digitalRead(ButtonPin) == HIGH ) {

    while ( digitalRead(ButtonPin) ) {
      delay(20);
    }

    // debounce
    delay(20);

    return true;
  }
  else {
    return false;
  }
}

251 252
boolean debugDHT( int chk ) {
  boolean ret = false;
João Lino's avatar
João Lino committed
253
#ifdef __debug
254
  //Serial.print("DHT11,   ");
João Lino's avatar
João Lino committed
255 256 257 258 259
#endif
  
  switch (chk)
  {
    case DHTLIB_OK:
260
      ret = true;
João Lino's avatar
João Lino committed
261
#ifdef __debug
262
      Serial.print("DHT11,   ");
João Lino's avatar
João Lino committed
263 264 265 266 267 268 269 270 271 272
      Serial.print("OK,  ");
#endif
      break;
    case DHTLIB_ERROR_CHECKSUM:
      Serial.print("Checksum error,  ");
      break;
    case DHTLIB_ERROR_TIMEOUT:
      Serial.print("Time out error,  ");
      break;
    case DHTLIB_ERROR_CONNECT:
273 274 275 276 277 278 279 280
      //Serial.print("Connect error,  ");
/*
      relayState = false;
      digitalWrite( RelayPin, HIGH );
      setLEDs(63);

      while(true) Serial.println("ERROR, SAFEMODE ON!!!!");
  */    
João Lino's avatar
João Lino committed
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
      break;
    case DHTLIB_ERROR_ACK_L:
      Serial.print("Ack Low error,  ");
      break;
    case DHTLIB_ERROR_ACK_H:
      Serial.print("Ack High error,  ");
      break;
    default:
      Serial.print("Unknown error,  ");
      break;
  }

#ifdef __debug
  //Serial.print(DHT.humidity, 1);
  //Serial.print(",  ");
#endif
297 298

  return ret;
João Lino's avatar
João Lino committed
299 300
}