asking
Full Member level 5
- Joined
- Sep 21, 2010
- Messages
- 279
- Helped
- 6
- Reputation
- 12
- Reaction score
- 6
- Trophy points
- 1,298
- Activity points
- 3,377
Hello again,
I have temperature sensor LM35 attached and i m measuring the temperature on the Display, Now if the Temp reaches pre-defined set point. Now if i want to clear the current temperature reading from LCD and i want to show some different message like Temperate Exceeded how to do it ? How to call interrupt in LCD ?
how to show some other format message for lcd_out ?
I have temperature sensor LM35 attached and i m measuring the temperature on the Display, Now if the Temp reaches pre-defined set point. Now if i want to clear the current temperature reading from LCD and i want to show some different message like Temperate Exceeded how to do it ? How to call interrupt in LCD ?
how to show some other format message for lcd_out ?
Code:
a = t%10;
lcd[2] = a + '0';
t = t/10;
a = t%10;
lcd[1] = a + '0';
t = t/10;
a = t%10;
lcd[0] = a + '0';
Lcd_out(1,12,lcd);
customchar(1,15);
Lcd_out(1,16,"C");