acidbeat311
New member
I have the code working perfectly to send data to the lcd. However, I am not understanding how to program the keypad for the 635 under the test code. Right now I would just like to be able to say
How do I achieve this result?
Code:
if(KEY_PRESS_UP == true)
{
outgoing_response.command = 31;
outgoing_response.data[0]=0; //col
outgoing_response.data[1]=1; //row
memcpy(&outgoing_response.data[2],"this is button UP ",20);
outgoing_response.data_length = 22;
send_packet();
}
Looking for additional LCD resources? Check out our LCD blog for the latest developments in LCD technology.