AVR LCD menu routine using ATmega8 microcontroller

Lets have some practice and write simple AVR LCD menu routine. For this we need to write LCD control library. I decided not to use one from AVRLIB. LCD controlling isn’t difficult just a few lines of code unless you want to make it more universal.

I want to demonstrate how LCD menu control may look. Of course this isn’t the best practice as it uses pretty simple logic, but may do the job.

LCD

To make it interesting I am going to have 4 buttons: 2 for menu scrolling up and down and two for changing submenu parameters. As output I am going to use three LED diodes that will light according to parameters selected in menu. Button states are going to be read using timer0 overflow interrupts. Code is written for WinAVR compiler.

First of all construct a circuit:

Lets have some practice and write simple AVR LCD menu routine. For this we need to write LCD control library. I decided not to use one from AVRLIB. LCD controlling isn’t difficult just a few lines of code unless you want to make it more universal.

I want to demonstrate how LCD menu control may look. Of course this isn’t the best practice as it uses pretty simple logic, but may do the job.

To make it interesting I am going to have 4 buttons: 2 for menu scrolling up and down and two for changing submenu parameters. As output I am going to use three LED diodes that will light according to parameters selected in menu. Button states are going to be read using timer0 overflow interrupts. Code is written for WinAVR compiler.

First of all construct a circuit:
I have excluded power circuit, just left main parts: LCD, LED’s and buttons connected. This circuit works well with Proteus simulator as it is. Proteus circuit is attached to project archive.
My idea is to store menu strings in Flash memory without occupying MCU RAM. This way menu items are limited only by Flash memory, not by RAM.
As you can see in code menu structure is pretty simple and there is many ways to optimize. Feel free to do so. Firs of all decide how many Menu items we are going to have. According to my example there are 4 menu items:
LCD circuit
//Menu Strings in flash
//menu 1
const uint8_t MN100[] PROGMEM=”<<One Led>>\0″;
//menu 2
const uint8_t MN200[] PROGMEM=”<<All ON/OFF>>\0″;
//menu 3
const uint8_t MN300[] PROGMEM=”<<Auto scroll>>\0″;
//menu 4
const uint8_t MN400[] PROGMEM=”<<Blink All>>\0″;
 
Then we have to describe submenus:
 
//SubMenu Strings in flash
 
For more detail: AVR LCD menu routine using ATmega8 microcontroller


About The Author

Ibrar Ayyub

I am an experienced technical writer holding a Master's degree in computer science from BZU Multan, Pakistan University. With a background spanning various industries, particularly in home automation and engineering, I have honed my skills in crafting clear and concise content. Proficient in leveraging infographics and diagrams, I strive to simplify complex concepts for readers. My strength lies in thorough research and presenting information in a structured and logical format.

Follow Us:
LinkedinTwitter

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top