judfid
Member level 3
Hello friends, if i want to store messages in pic to be called and displayed at a given condition,eg welcome when u power up,goodbyle when u power down.were will i store the message, how do i call the message.Thanks.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
rom char welcome[] = "Welcome to the system.";
unsigned char i = 0;
for(i = 0; *(welcome+ i) != "\0"; i ++){
writeToScreen(*(welcome+i));
}
No pic should not turn off...It should detect the change in input voltage and then display the POWER OFF display.