Here i am sending the word "EMERGING TECHNOLOGIES" to PC wirelessly using RF Transmitter and receiver using Arduino Uno or MSP430G2553 ( ENERGIA).Program for both compilers are same.
Program
void setup()
{
Serial.begin(9600); //Starts Serial Communication @ 9600 baud rate
}
void loop()
{
Serial.println("EMERGING TECHNOLOGIES"); //Sends this word
delay(1000); // sends in every one second
}
RF WITH ARDUINO UNO
RF WITH MSP430 (ENERGIA-MSP430G2553)