Introduction
RMF69 Shield-433MHz contains a FSK wireless module, it has the same function that radio frequency transmitter owns, such as receiving and transmitting message. RMF69 Shield-433MHz can totally compatible to Arduino.
Technical Data
Operate frequent: 433MHz
Operate voltage: 1.8 to 3.6V
Transmission rate: 300Kbps
Max emission power: 20dBm
Max emission current: 120mA
Receive sensitivity: -120dBm @ 1.2Kb/s
Features
Low consumption
More professional ISM band
Frequent range from 140 to 960MHz
Totally compatible to Arduino
Interface
Usage
Making a call
[code]
#include <SoftwareSerial.h>
SoftwareSerial mySerial(7, 8);
void setup()
{
mySerial.begin(19200); // the GPRS baud rate
Serial.begin(19200); // the GPRS baud rate
delay(2000);
mySerial.println("ATDxxxxxxxxx;"); // xxxxxxxxx is the number you want to dial.
if(mySerial.available())
Serial.print((unsigned char)mySerial.read());
delay(10000);
delay(10000);
mySerial.println("ATH"); //End the call.
if(mySerial.available())
Serial.print((unsigned char)mySerial.read());
}
void loop()
{
//Do nothing
}
[code]
Resource