AVR: Alf-Egil Bogen Vegard Wollan RISC microcontroller
Program:
Output Just to Show:
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:
