Hi All,
I am somewhat new to coding (very limited skills) and have recently took on a project building a arduino monitored hydroponics system. The main idea is I have several different sensors taking data that then is displayed to a 16x2 I2c lcd screen. The problem is when selecting either the humidity or temperature menus (data collected by a DHT11) the values are way out of wack (several thousand in the negatives). In my code I have it printing to the serial monitor and the values are coming up fine, it is only when using the push buttons to select the menu that it messes it all up. Any and all help is welcomed and greatly appreciated! I know my code is quite messy so feel free to ask clarifying questions.
Code (could not attach file)
///////MENU///////
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
//LiquidCrystal_I2C lcd(0x27, 16, 2);
LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE);
int upButton = 10;
int downButton = 11;
int selectButton = 12;
int menu = 1;
///////PH///////
float calibration = 21.22; //change this value to calibrate
const int analogInPin = A0;
int sensorValue = 0;
unsigned long int avgValue;
float b;
int buf[10],temp;
/////DHT/////
#include <dht.h>
#define dht_apin A1 // Analog Pin sensor is connected to
dht DHT;
/////Relay///
int Relay1 = 2;
int Relay2 = 3;
/////////////////////////////////////////////////////////////////
void setup() {
//////////MENU/////////////
lcd.begin(16, 2);
lcd.backlight();
pinMode(upButton, INPUT_PULLUP);
pinMode(downButton, INPUT_PULLUP);
pinMode(selectButton, INPUT_PULLUP);
updateMenu();
/////////////PH////////////////
Serial.begin(9600);
////DHT (RELAY)/////
pinMode(Relay1, OUTPUT);
pinMode(Relay2, OUTPUT);
digitalWrite(Relay1, LOW);
digitalWrite(Relay2, HIGH);
}
///////////////////////////////
void loop() {
/////////////Serial Monitor DHT11////////////////
Serial.print("Current humidity = “);
Serial.print(DHT.humidity);
Serial.print(”% ");
Serial.print("temperature = ");
Serial.print((int)round(1.8*DHT.temperature+32));
Serial.println("F ");
delay(2000);
/////DHT11////
DHT.read11(dht_apin);
if (DHT.humidity>77) {
digitalWrite(Relay2,LOW);
} else {
digitalWrite(Relay2,HIGH);
}
// DHT.read11(dht_apin);
if (((int)round(1.8*DHT.temperature+32))> 72) {
digitalWrite(Relay1,LOW);
// delay(200);
} else {
digitalWrite(Relay1,HIGH);
}
////////////////PH////////////////////
for(int i=0;i<10;i++)
{
buf[i]=analogRead(analogInPin);
delay(30);
}
for(int i=0;i<9;i++)
{
for(int j=i+1;j<10;j++)
{
if(buf[i]>buf[j])
{
temp=buf[i];
buf[i]=buf[j];
buf[j]=temp;
}
}
}
avgValue=0;
for(int i=2;i<8;i++)
avgValue+=buf[i];
float pHVol=(float)avgValue*5.0/1024/6;
float phValue = -5.70 * pHVol + calibration;
// Serial.print("sensor = ");
// Serial.println(phValue);
// delay(500);
/////////////////////MENU///////////////////
if (!digitalRead(downButton)){
menu++;
updateMenu();
delay(100);
while (!digitalRead(downButton));
}
if (!digitalRead(upButton)){
menu–;
updateMenu();
delay(100);
while(!digitalRead(upButton));
}
if (!digitalRead(selectButton)){
executeAction();
updateMenu();
delay(100);
while (!digitalRead(selectButton));
}
}
/////////////////MENU///////////
void updateMenu() {
switch (menu) {
case 0:
menu = 1;
break;
case 1:
lcd.clear();
lcd.print(">Menu #1 PH");
lcd.setCursor(0, 1);
lcd.print(" Menu #2 Cond");
break;
case 2:
lcd.clear();
lcd.print(" Menu #1 PH");
lcd.setCursor(0, 1);
lcd.print(">Menu #2 Cond");
break;
case 3:
lcd.clear();
lcd.print(">Menu #3 Temp");
lcd.setCursor(0, 1);
lcd.print(" Menu #4 Humid");
break;
case 4:
lcd.clear();
lcd.print(" Menu #3 Temp");
lcd.setCursor(0, 1);
lcd.print(">Menu #4 Humid");
break;
case 5:
menu = 4;
break;
}
}
void executeAction() {
switch (menu) {
case 1:
action1();
break;
case 2:
action2();
break;
case 3:
action3();
break;
case 4:
action4();
break;
}
}
void action1() {
float pHVol=(float)avgValue5.0/1024/6;
float phValue = -5.70 * pHVol + calibration;
lcd.clear();
lcd.print(" PH : “);
lcd.print (phValue);
delay(2000);
}
void action2() {
lcd.clear();
lcd.print(”>Executing #2");
delay(1500);
}
void action3() {
int chk = DHT.read11(dht_apin);
lcd.clear();
lcd.print(" Temp :");
lcd.print((int)round(1.8DHT.temperature+32));
lcd.print(“F”);
delay(2500);
}
void action4() {
DHT.read11(dht_apin);
lcd.clear();
lcd.print(" Humidity :");
lcd.print(DHT.humidity);
lcd.print("% ");
delay(2500);
}