Hi, i have this board
http://www.ebay.com/itm/181891664820?_trksid=p2057872.m2749.l2649&ssPageName=STRK%3AMEBIDX%3AIT
i am using that code
#include <SoftwareSerial.h>
//SIM800 TX is connected to Arduino D8
#define SIM800_TX_PIN 8
//SIM800 RX is connected to Arduino D7
#define SIM800_RX_PIN 7
//Create software serial object to communicate with SIM800
SoftwareSerial serialSIM800(SIM800_TX_PIN,SIM800_RX_PIN);
void setup() {
//Begin serial comunication with Arduino and Arduino IDE (Serial Monitor)
Serial.begin(9600);
while(!Serial);
//Being serial communication witj Arduino and SIM800
serialSIM800.begin(9600);
delay(1000);
Serial.println("Setup Complete!");
}
void loop() {
//Read SIM800 output (if available) and print it in Arduino IDE Serial Monitor
if(serialSIM800.available()){
Serial.write(serialSIM800.read());
}
//Read Arduino IDE Serial Monitor inputs (if available) and send them to SIM800
if(Serial.available()){
serialSIM800.write(Serial.read());
}
}
the SIM card is ok since the leds are blinking correctly and the unit seems to be in network ( ringing if you call it_)
The promblem is that the Serial monitor does nto accept any AT command, it does not reply to any of them
i activate NL & CR but nothing change
Any idea ?
Thanks