1 Program to Print Text on LCD using Atmel Studio AVR MicroControllers in C

AVR: Alf-Egil Bogen Vegard Wollan RISC microcontroller


Program:
/*
 * LCD_Project.c
 *
 * Created: 3/14/2020 4:09:22 PM
 *  Author: Atharv Agrawal
 */ 


#include <avr/io.h>

int main(void)
{
 init_devices();
 lcd_init();
 lcd_wr_command("Hello");
 lcd_we_string();
 lcd_cursor();
  
    while(1)
    {
        //TODO:: Please write your application code 
    }
}



Output Just to Show:


Atmel Studio AVR MicroControllers in C




Previous
Next Post »