lcd: jhd1313m1 example: sleep a bit so we can see the display

Signed-off-by: Jon Trulson <jtrulson@ics.com>
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:
Jon Trulson 2015-07-27 16:39:28 -06:00 committed by Mihai Tudor Panu
parent f133b6eb4c
commit 197b56003c

View File

@ -34,6 +34,9 @@ main(int argc, char **argv)
lcd->write("Hello World");
lcd->setCursor(1,2);
lcd->write("Hello World");
printf("Sleeping for 5 seconds\n");
sleep(5);
delete lcd;
//! [Interesting]
return 0;