Microcontroller › AVR › Problem in Programming——AVR——- › Hi there is Problem in your
July 28, 2017 at 5:54 pm
#14638
Faroogh
Participant
Hi there is Problem in your Code
like following Finction
void lcd_send_string(char* string)
{
while(*string)
{
lcd_data(*string); //Send value of pointer as data to LCD
string++; //Increment string pointer
}
}
use it like this
void lcd_send_string(char* string)
{
int i=0;
while(string != '