
#include <16F690.h>

  
#FUSES NOWDT                      //Watch Dog Timer
#FUSES INTRC                       //HS Oscilator
#FUSES NOPROTECT                //Code not protected from reading
#FUSES NOBROWNOUT               //No brownout reset
#FUSES NOMCLR                   //Master Clear pin used for I/O
#FUSES NOCPD                    //No EE protection
#FUSES NOPUT                    //No Power Up Timer
#FUSES NOIESO                   //Internal External Switch Over mode disabled
#FUSES NOFCMEN                  //Fail-safe clock monitor disabled

#use delay(clock=8000000)

#include <flex_lcd.c>




Void main()
{


delay_ms(100);
lcd_init();

while (1){

delay_ms(500);
lcd_putc("\fHallo");

}
}