// []-------------------------------------------------------------------------[]
//      Copyright(c) 2005 Electronic Device Services
//      
//      transimtter.c
//
// []-------------------------------------------------------------------------[]

#include <avr/io.h>
#include <stdio.h>
#include "lcd.h" // final transmitter wont need this.
#include "transmitter.h"

int main(void)
{  
    unsigned char fp_string[64];

    
    
    lcd_init();
    lcd_control(1,0,0);
    //lcd_putstr(" WTH from AVR ");
    lcd_goto(0x40);                     // see addressing table on my AVR page
    //printf("GIMP=%d%cC %x",i,mychar,byte);
    
    
      lcd_home();
      lcd_putstr("HAHA you have to ");
      lcd_goto(0x40);
      lcd_putstr("take me apart :)");


    return 0;
}
