i want to get location using gprs when i use AT command with putty i get location but when i try write AT command in arduino i have a problem wuth Serial it does not detect any change I think I have a problem with rx and tx or with the connection here is an exmaple of a piece of code that I try to send AT and I recover ok
i attached a picture of my connection between arduino and sheil sms 808 #include <SoftwareSerial.h>
SoftwareSerial mySerial(14,15);
const int pinButton = 13;
I'm not sure I'm a mobile developer and I'm working on an embedded project so suddenly I'm a beginner I tested all posibilté almost (0 1.7 8 ..) and I do not understand how to put when he are connected directly I looked in the datasheet but I found nothing
Arduino example codes are in the Resource > Source code part of that page (near the end).
Serial pins that seem to be used in those examples are 2 and 3.
SoftwareSerial mySerial(2, 3); // RX, TX
Leo..