#include "LCD.h"
void setup() {
// put your setup code here, to run once:
volatile int count = 0;
set_display_function();
display_on();
set_entry_mode_right();
write_string("Hello World!");
}
void loop() {
// put your main code here, to run repeatedly:
shift_display_right();
cursor_shift_left();
delay1(50);
}