ghoola
Member level 2
- Joined
- Aug 7, 2013
- Messages
- 43
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 6
- Location
- india
- Activity points
- 352
I have a problem with this code the codevision have error with _lcd_ready() line .what should I do?
Code:
#include <mega32a.h>
// Alphanumeric LCD functions
#include <alcd_ks0073.h>
// Declare your global variables here
void main(void)
{
lcd_init(16);
lcd_clear();
lcd_gotoxy(2,0);
lcd_putsf("LCD TEST");
lcd_gotoxy(5,1);
lcd_putsf("ATMEGA32a");
lcd_gotoxy(14,0);
lcd_putchar('*');
_lcd_ready();
_lcd_write_data(0x0f);
while (1)
{
}
}