Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
lock attach
Attachments are accessible only for community members.
MotooTanaka
Level 9
Level 9
Distributor - Marubun (Japan)
First comment on blog Beta tester First comment on KBA

Hi,

In the following discussion, 

https://community.infineon.com/t5/PSoC-5-3-1/PSOC5-LP-with-4x4-Keypad-and-16x2-LCD-Menu-System-Examp...

I was asked for a sample to emulate an Arduino sample below

https://www.youtube.com/watch?v=DuAG98P9Seo

 

Unlike the Arduino sample, I used a non-I2C LCD 1602A.

Also  I prepared a simple menu system which can be expanded later (hopefully) without modifying the main loop.

void do_menu_1(void) ;
void do_menu_2(void) ;
void do_menu_3(void) ;
void do_menu_4(void) ;

m_list_type menu[] = {
    { "MenuItem1", do_menu_1, "first menu"  },
    { "MenuItem2", do_menu_2, "second menu" },
    { "MenuItem3", do_menu_3, "third menu"  },
    { "MenuItem4", do_menu_4, "fouth menu"  }
} ;

int num_menu = sizeof(menu) / sizeof(m_list_type) ;
int current_menu_row = 0 ;
int active_menu_id = 0 ;
int menu_height   = 2 ;

For the operation, I mapped 

C: up

😧 down

#: select

 

Matrix Key Schematic

010-schematic_1.JPG

CharLCD Schematic

011-schematic_2.JPG

For the CharLCD (1602A), the only pin combination, I could find to be usable were P2[6:0] or P2[7:1].

And with this configuration, CY8CKIT-059's LED and push-SW won't be usable for other purpose.

And finally I noticed the A pin of 1602A can be used for backlight ... >_<

Anyway, here it is.

moto

 

0 Likes
0 Replies