Should either of these code snippets work to run an LCD display?
task main()
{
bLCDBacklight = true;
clearLCDLine(0);
while (true){
displayLCDString(0, 5, "hello");
}
}
task main()
{
bLCDBacklight = true;
clearLCDLine(0);
displayLCDString(0, 5, "hello");
wait10Msec(1000000);
}