//Serial Relay - Arduino will patch a
//serial link between the computer and the GPRS Shield
//at 19200 bps 8-N-1
//Computer is connected to Hardware UART
//GPRS Shield is connected to the Software UART
#include <SoftwareSerial.h>
SoftwareSerial GSMSerial(7, 8);
void setup()
{
GSMSerial.begin(19200); // the GPRS/GSM baud rate
Serial.begin(19200); // the GPRS/GSM baud rate
}
void loop()
{
if(Serial.available())
GSMSerial.print((char)Serial.read());
else if(GSMSerial.available())
Serial.print((char)GSMSerial.read());
}Fuente: http://www.elecrow.com/wiki/index.php?title=GPRS/GSM_Shield_v1.0Don Pali ,Ah traidor, te esta pasando con los Atmel :D :D
Saludos
Sí, Arduino es muy fácil de usar.
Es como tener hambre de algo suculento y comprarlo ya hecho... sin tener el placer de cocinarlo jeje :mrgreen: