hola alquien me podar ayudar a conectar este shield para arduino para poder enviar mensajes de texto, bueno para empezar ya e echo la coneccion pero no me da nada..
inserto el siguiente programa en mi arduino:
/*
*/
#include <SoftwareSerial.h>//Include the NewSoftSerial library to send serial commands to the cellular module.
#include <string.h> //Used for string manipulations
char incoming_char=0; //Will hold the incoming character from the Serial Port.
SoftwareSerial cell(2,3); //Create a 'fake' serial port. Pin 2 is the Rx pin, pin 3 is the Tx pin.
void setup()
{
//Initialize serial ports for communication.
Serial.begin(9600);
cell.begin(115200);
Serial.println("Starting ATWIN Communication...");
}
void loop()
{
//If a character comes in from the cellular module...
if(cell.available() >0)
{
incoming_char=cell.read(); //Get the character from the cellular serial port.
Serial.print(incoming_char); //Print the incoming character to the terminal.
}
//If a character is coming from the terminal to the Arduino...
if(Serial.available() >0)
{
incoming_char=Serial.read(); //Get the character coming from the terminal
cell.print(incoming_char); //Send the character to the cellular module.
}
}
[/table]
y cuando visualizo no pasa de Starting ATWIN Communication...
me podrian ayudar que sera y los jumpers del shield los tengo en rx-mtx y el otro en tx-mrx