-
Notifications
You must be signed in to change notification settings - Fork 0
/
humedad_suelo___salida_lcd.ino
57 lines (47 loc) · 1.27 KB
/
humedad_suelo___salida_lcd.ino
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
#include <Wire.h>
#include <LCD.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,2,1,0,4,5,6,7); // 0x27 is the I2C bus address for an unmodified backpack
// Pin para leer la humedad
const int sensorPin = A0;
// Mensaje a salir por el display
String mensaje1;
String mensaje2;
void setup() {
Serial.begin(9600);
// activate LCD module
lcd.begin (16,2); // for 16 x 2 LCD module
lcd.setBacklightPin(3,POSITIVE);
lcd.setBacklight(HIGH);
}
void loop() {
// put your main code here, to run repeatedly:
int humedad = map(analogRead(sensorPin), 0, 1023, 100, 0);
Serial.print("Humedad: ");
Serial.print(humedad);
Serial.println(" %");
mensaje1 = "Humedad: "+String(humedad)+" %";
mensaje2 = "Norma l";
if(humedad < 30)
{
Serial.println("Muy seco");
mensaje2 = "Muy seco";
}
if(humedad > 70)
{
Serial.println("Muy humedo");
mensaje2 = "Muy humedo";
}
imprimeMensaje(mensaje1, mensaje2);
delay(5000);
}
void imprimeMensaje(String mensaje1, String mensaje2){
lcd.setBacklight(HIGH);
lcd.home (); // set cursor to 0,0
lcd.clear();
lcd.print(mensaje1);
lcd.setCursor (0,1);
lcd.print(mensaje2);
delay(1000);
lcd.setBacklight(LOW);
}