Estoy aprendiendo PIC (pic18f4550) y bastante nuevo en la programación de microcontroladores. Estoy intentando obtener el valor de tres botones en PORTA y lo envío a una matriz de 8x8 led como coordenadas X a través de un 74LS595 . El problema es que el valor de ir a la matriz de led no cambia cuando presioné los botones para crear un valor diferente. Estoy simulando en Proteus, así que supongo que no necesito la función de rebote. Aquí está mi código y esquema:
#include<p18f4550.h>
#define SCK LATBbits.LATB0
#define DATA PORTBbits.RB1
#define SCL PORTBbits.RB2
void Data_in(unsigned char k){
DATA=k;
SCK=0;
SCK=1;
}
void LatchData(){
SCL=0;
SCL=1;
}
void Send1byte(unsigned char data)
{
unsigned char i,temp;
for(i=0;i<8;i++)
{
temp = data & (1<<i);
if(temp)
{
DATA = 1;
}
else
{
DATA = 0;
}
SCK = 0;
SCK = 1;
}
SCL = 0;
SCL = 1;
}
unsigned char getMatrixX(unsigned char in_X)
{
switch(in_X)
{
case 0: // the value stuck here
return 0b01111111;
case 1:
return 0b10111111;
case 2:
return 0b11011111;
case 3:
return 0b11101111;
case 4:
return 0b11110111;
case 5:
return 0b11111011;
case 6:
return 0b11111101;
case 7:
return 0b11111110;
default:
return 0b11111111;
}
}
void main()
{
TRISA = 1;
TRISC = 1;
TRISB = 0;
TRISD = 0;
PORTD = 0x80;
while(1){
Send1byte(getMatrixX(LATA));
}
}
Este es un enlace a mi esquema: mi esquema
Realmente aprecio cualquier solución y consejo. Lo siento por mi mal inglés.