Advertisement
Guest User

Untitled

a guest
Apr 14th, 2019
485
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.  *
  3.  * plant controller - tim eastwood
  4.  *
  5.  */
  6.  
  7. #include <SPI.h>
  8. #include <Wire.h>
  9. #include <Adafruit_GFX.h>
  10. #include <Adafruit_SSD1306.h>
  11. #define SCREEN_WIDTH 128 // OLED display width, in pixels
  12. #define SCREEN_HEIGHT 64 // OLED display height, in pixels
  13. Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, -1); // -1 is the reset pin, or 4 // Declaration for an SSD1306 display connected to I2C (SDA, SCL pins)
  14.  
  15. /*
  16.  *
  17.  *  PIN ASSIGNMENTS
  18.  *
  19.  */
  20.  
  21. #define flow1Interrupt 3 //pin 1
  22. #define flow2Interrupt 2 //pin 0
  23. #define dht1Pin 4
  24. #define dht2Pin 5
  25. #define ledPin 6
  26. #define buzzPin 7
  27. #define buttonPin 8
  28. #define floatSw1Pin 9
  29. #define floatSw2Pin 20
  30. #define lamp1Pin 10
  31. #define lamp2Pin 16
  32. #define pump1Pin 14
  33. #define pump2Pin 15
  34. #define RXPin 19
  35. #define TXPin 18
  36.  
  37. #include "DHT.h"
  38. DHT dht1(dht1Pin, DHT22); //pin, type
  39. DHT dht2(dht2Pin, DHT22);
  40.  
  41. #include <SoftwareSerial.h>
  42. SoftwareSerial SerialS(RXPin, TXPin);
  43.  
  44. #define initialDisplayMessage "Waiting for ESP..."
  45.  
  46. //draws the border and title
  47. void drawInitial() {
  48.   display.drawRoundRect(0,0,display.width(),display.height(), 2, WHITE); //x, y, x, y, radius, color
  49.   display.fillRoundRect(0,0,display.width(),10, 2, WHITE); //x, y, x, y, radius, color
  50.   display.setTextSize(1);      // Normal 1:1 pixel scale
  51.   display.setTextColor(BLACK); // Draw black text
  52.   display.setCursor(2, 2);     // Start at top-left corner
  53.   display.cp437(true);         // Use full 256 char 'Code Page 437' font
  54.   display.print(" Plant Controller v1");
  55.   display.setTextColor(WHITE, BLACK); // Draw white text with a black background (transparent by default)
  56.   display.display();
  57. }
  58.  
  59. unsigned int long timer = 0;
  60. unsigned int long lastPageTimer = 0; //track when page was last changed
  61. String displayMessage = initialDisplayMessage;
  62. void setup() {
  63.  
  64.   pinMode(buttonPin, INPUT_PULLUP);
  65.   pinMode(floatSw1Pin, INPUT_PULLUP);
  66.   pinMode(floatSw2Pin, INPUT_PULLUP);
  67.   pinMode(ledPin, OUTPUT);
  68.   pinMode(buzzPin, OUTPUT);
  69.  
  70.   delay(1000);
  71.  
  72.   Serial.begin(115200); //pour a bowl of Serial
  73.   SerialS.begin(9600); //the RX/TX pins are on a separate hardware UART! Hurrah!
  74.   Serial.println("Hello");
  75.   dht1.begin();
  76.   dht2.begin(); //initilize the DHT22 sensors
  77.  
  78.   // SSD1306_SWITCHCAPVCC = generate display voltage from 3.3V internally. no idea wtf this does
  79.   if(!display.begin(SSD1306_SWITCHCAPVCC, 0x3C)) {
  80.     Serial.println(F("SSD1306 err"));
  81.     for(;;); // Don't proceed, loop forever
  82.   }
  83.  
  84.   display.clearDisplay();
  85.   drawInitial();
  86.   display.setCursor(2, 12);
  87.   display.print(displayMessage); // line 1  
  88.   timer = millis();
  89.   lastPageTimer = millis();  
  90. }
  91.  
  92. String inputString = ""; // a String to hold incoming data
  93. bool stringComplete = false;
  94. void serialEventCapture() {
  95.   while (SerialS.available()) {
  96.     char inChar = (char)SerialS.read();
  97.     if (inChar == '\n') {
  98.       if (millis() > 3000) { //ignore data for the first three seconds since boot
  99.         displayMessage = inputString;
  100.         stringComplete = true;
  101.         Serial.println(displayMessage);
  102.       }
  103.       inputString = "";
  104.     } else {
  105.       if ((' ' <= inChar) && (inChar <= '~')) { //filter out garbage characters
  106.         inputString += inChar;
  107.       }
  108.     }
  109.   }
  110. }
  111.  
  112. int page = 1;
  113. #define numPages 2
  114. #define pageTime 2 //seconds to display each page before moving to the next
  115. #define updateFrequency 500 //how often to update the LCD and read sensors
  116.  
  117. bool waitingForESP = true;
  118. bool ESPWaitingForAVR = true;
  119. void loop() {
  120.  
  121.   if (SerialS.available()) {
  122.     serialEventCapture();
  123.   }
  124.  
  125.   //tell the AVR when ready
  126.   if (ESPWaitingForAVR) {
  127.     delay(500);
  128.     SerialS.println("AVR Ready\n");
  129.   }
  130.   if (stringComplete && (ESPWaitingForAVR || waitingForESP)) {
  131.     if (inputString == "ESP seen AVR") {
  132.       ESPWaitingForAVR = false;
  133.       Serial.println("Seen the ESP");
  134.     } else if (inputString == "ESP Ready") {
  135.       SerialS.println("AVR seen ESP");
  136.       Serial.println("ESP has seen us");
  137.       waitingForESP = false;
  138.     } else {
  139.       Serial.println(inputString);
  140.       delay(15);
  141.     }
  142.     stringComplete = false;
  143.   }
  144.  
  145.   //advance the page every x ms
  146.   if (millis() - lastPageTimer > pageTime * 1000) {
  147.     page++;
  148.     if (page > numPages) {
  149.       page = 1;
  150.     }
  151.     lastPageTimer = millis();
  152.     //fill in the display area with black to mask any previous display elements. not using a display.clearDisplay() to prevent a refresh of the border / title
  153.     display.fillRect(1,10,display.width()-2,display.height()-11, BLACK);
  154.   }
  155.  
  156.   //control update frequency
  157.   if (millis() - timer > updateFrequency) {
  158.     timer = millis();
  159.      
  160.     float humidity1 = dht1.readHumidity(); //read humidity
  161.     float temp1 = dht1.readTemperature(); //read temperature as Celsius (the default)
  162.     float humidity2 = dht2.readHumidity();
  163.     float temp2 = dht2.readTemperature();
  164.    
  165.     float workingRHSensors = 2.0; //used for working out the average humidity
  166.     if (isnan(humidity1)) { humidity1 = 0; workingRHSensors -= 1.0; } //check for valid reading
  167.     if (isnan(humidity2)) { humidity2 = 0; workingRHSensors -= 1.0; }
  168.     float averageHumidity = (humidity1 + humidity2) / workingRHSensors;
  169.  
  170.     float workingTempSensors = 2.0;
  171.     if (isnan(temp1)) { temp1 = 0; workingTempSensors -= 1; }
  172.     if (isnan(temp2)) { temp2 = 0; workingTempSensors -= 1; }
  173.     float averageTemp = (temp1 + temp2) / workingTempSensors;  
  174.  
  175.     if (page == 1) {
  176.       display.setCursor(2, 12); display.print(displayMessage); // line 1
  177.       display.setTextSize(2); //use larger font
  178.       display.setCursor(2, 20); display.print("Avg Temp");// line 2
  179.       display.setCursor(2, 36);
  180.       if (workingTempSensors > 0) {
  181.         display.print(averageTemp); display.print("C"); // line 4
  182.       } else {
  183.         display.print("N/A");
  184.       }
  185.       display.setTextSize(1); //set back to size 1
  186.     }
  187.     else if (page == 2) {
  188.       display.setCursor(2, 12); display.print(displayMessage); // line 1
  189.       display.setTextSize(2); //use larger font
  190.       display.setCursor(2, 20); display.print("Avg Humid."); // line 2
  191.       display.setCursor(2, 36);
  192.       if (workingRHSensors > 0) {
  193.         display.print(averageHumidity); display.print("%"); // line 4
  194.       } else {
  195.         display.print("N/A");
  196.       }
  197.       display.setTextSize(1); //set back to size 1
  198.     }
  199.  
  200.     //line 6
  201.     display.setCursor(2, 52); display.print("Sensors: H "); display.print(int(workingRHSensors)); display.print(", T "); display.println(int(workingTempSensors));
  202.    
  203.     display.display();
  204.  
  205.     //compile the data into a string of POST values to send to the HTTP connection on the ESP
  206.     //I've shortened these to a few characters to keep the RAM impact minimal... not sure if neccessary but the ESP's serial is buggy as shit so less is more (apparently)
  207.     String data = "&t1="; data += temp1;
  208.     data += "&t2="; data += temp2;
  209.     data += "&h1="; data += humidity1;
  210.     data += "&h2="; data += humidity2;
  211.  
  212.     if (!ESPWaitingForAVR && !waitingForESP) {
  213.         Serial.print(".");
  214.         SerialS.println(data);
  215.     }
  216.   }
  217.  
  218. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement