Buenas tardes.
Alguien me podría indicar que error hay en el código, llevo casi un mes intentando que funcione adecuadamente.
El problema que tengo es que al no presionar un botón. En los pines salida si sale voltaje. Es como si no procesara el if. Incluso si dejo totalmente desconectado las entradas..
No se si me falta configurar algo más.
Alguien me podría indicar que error hay en el código, llevo casi un mes intentando que funcione adecuadamente.
La idea es que al presionar uno de los 4 botones se muestre el mensaje correspondiente así como se enciendan los led que corresponden.El código lo hice el MPLAB X IDE v6 - con el compilador XC8.
Código:
#define _XTAL_FREQ 8000000
#define RS RD2
#define EN RD3
#define D4 RD4
#define D5 RD5
#define D6 RD6
#define D7 RD7
#include <xc.h>
#include <stdio.h>
#include <stdlib.h>
#include "flex_lcd.h"
#include "Complementos.h"
// BEGIN CONFIG
#pragma config FOSC = HS // Oscillator Selection bits (HS oscillator)
//#pragma config FOSC = XT // Oscillator Selection bits (XT oscillator)
#pragma config WDTE = OFF // Watchdog Timer Enable bit (WDT enabled)
#pragma config PWRTE = OFF // Power-up Timer Enable bit (PWRT disabled)
#pragma config BOREN = OFF // Brown-out Reset Enable bit (BOR enabled)
#pragma config LVP = OFF // Low-Voltage (Single-Supply) In-Circuit Serial Programming Enable bit (RB3 is digital I/O, HV on MCLR must be used for programming)
#pragma config CPD = OFF // Data EEPROM Memory Code Protection bit (Data EEPROM code protection off)
#pragma config WRT = OFF // Flash Program Memory Write Enable bits (Write protection off; all program memory may be written to by EECON control)
#pragma config CP = OFF // Flash Program Memory Code Protection bit (Code protection off)
//END CONFIG
void main()
{
const unsigned int t=250;
Lcd_Init();
Lcd_Cmd(LCD_CLEAR);
Lcd_Cmd(LCD_CURSOR_OFF);
TRISD = 0b00000000;
TRISC = 0b11111111;
PORTC = 0b00000000;
TRISB = 0b00000000;
PORTB = 0b00000000;
Introducción(0); //Mensaje en LCD 16x2
while(1){
Lcd_Out2(1,1,"Precione boton");
Lcd_Out2(2,8," ");
if (RC0 == 1) {
__delay_ms(t);
if (RC0 == 1) {
RB0=1; RB4=1;
RB1=0; RB5=0;
RB2=0; RB6=0;
RB3=0; RB7=0;
Lcd_Out2(1,1,"Preciono boton");
Lcd_Out2(2,8,"RC0");
__delay_ms(t);
}}
if (RC1 == 1 ) {
__delay_ms(t);
if (RC1 == 1 ) {
RB0=0; RB4=0;
RB1=1; RB5=1;
RB2=0; RB6=0;
RB3=0; RB7=0;
Lcd_Out2(1,1,"Preciono boton");
Lcd_Out2(2,8,"RC1");
__delay_ms(t);
}}
if (RC2 == 1 ) {
__delay_ms(t);
if (RC2 == 1 ) {
RB0=0; RB4=0;
RB1=0; RB5=0;
RB2=1; RB6=1;
RB3=0; RB7=0;
Lcd_Out2(1,1,"Preciono boton");
Lcd_Out2(2,8,"RC2");
__delay_ms(t);
}}
if (RC5 == 1 ) {
__delay_ms(t);
if (RC5 == 1) {
RB0=0; RB4=0;
RB1=0; RB5=0;
RB2=0; RB6=0;
RB3=1; RB7=1;
Lcd_Out2(1,1,"Preciono boton");
Lcd_Out2(2,8,"RC5");
__delay_ms(t);
}}
}
}
El problema que tengo es que al no presionar un botón. En los pines salida si sale voltaje. Es como si no procesara el if. Incluso si dejo totalmente desconectado las entradas..
No se si me falta configurar algo más.
Última edición: