Hola a todos estoy haciendo una simulacion en proteus 7.6 de un arduino uno r3, y necesito imprimir la hora obtenida por el componente DS1307, en un lcd LM041L; tengo el siguiente codigo hasta el momento, les adjunto el tutorial de donde me base para obtener la hora del DS1307 y las librerias para el manejo de teclado y reloj...El teclado solo funciona la mitad y esta mal configurado pero no me interesa por el momento, solo quiero imprimir la hora obtenida por el DS1307 en el lcd.
Código:
#include <Keypad.h>
#include <LiquidCrystal.h>
#include <Wire.h>
#include "RTClib.h"
RTC_DS1307 RTC;
const byte ROWS = 4; //four rows
const byte COLS = 3; //four columns
//define the cymbols on the buttons of the keypads
char hexaKeys[ROWS][COLS] = {
{'7','8','9'},
{'4','5','6'},
{'1','2','3'},
{'A','0','B'}
};
byte rowPins[ROWS] = {13, 10,9, 8}; //connect to the row pinouts of the keypad
byte colPins[COLS] = {7, 6, 1}; //connect to the column pinouts of the keypad
//initialize an instance of class NewKeypad
Keypad customKeypad = Keypad(makeKeymap(hexaKeys), rowPins, colPins, ROWS, COLS);
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup(){
Serial.begin(9600);
pinMode(1, INPUT);
}
void loop(){
char customKey = customKeypad.getKey();
if (customKey != NO_KEY){
Serial.print("tecla ");
Serial.println(customKey);
lcd.print(customKey);
}
}
Adjuntos
Última edición: