terça-feira, 9 de outubro de 2012


Programação para testar o Display e LDR

#include <LiquidCrystal.h>

// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 6, 4, 3, 2);

int p = 0; // Variavel onde e guardado o valor lido do LDR

int ldr0 = 0; // Pino onde vamos ligar a LDR


void setup() {
  // set up the LCD's number of columns and rows:
  lcd.begin(20, 2);
  // Print a message to the LCD.
  lcd.print("Inove Engenharia");
}


void loop() {
  // set the cursor to column 0, line 1
  // (note: line 1 is the second row, since counting begins with 0):
  lcd.setCursor(0, 1);
  // print the number of seconds since reset:

 
  p = analogRead(ldr0); // O valor que irá ser lido na porta analogica numero 6 irá ser guardado na variavel “valor”

if (p > 200) {
  lcd.print("Vago     ");
   }
 
   if (p <= 200) {
  lcd.print("Ocupado");
   }
 
}

Nenhum comentário:

Postar um comentário