Olimex Support Forum

DUINO => ARDUINO => Topic started by: refiloe.kunene@veolia.com on October 15, 2015, 12:40:17 PM

Title: olimexino nano gsm
Post by: refiloe.kunene@veolia.com on October 15, 2015, 12:40:17 PM
hi

i am a newbie i have arduino mega and i want to interface it with the olimexino nano gsm , but i cant seem to get it to work . please help .i have connected the tx and rx of the gsm to tx1 and rx1 of the arduino mega respectively . The olimexino nano gsm is flashig fine . but its not responsind to the testing program suplied on the website .
Title: Re: olimexino nano gsm
Post by: lordton on October 21, 2015, 09:36:03 PM
Okay , I have spent something like 48 hours for an exactly samу problem   :o

I have olimexino nano gsm module connected to 3.7 (checked with multimeter) nokia battery and have it's led blinking
My SIM has no pin. SIM card is operational.
I'm trying to connect to arduino uno or arduino nano (tried both), but the gsm module gives no reply to AT commands.

Any pins
Any baud

Silence. The module is not reacting in any way.
Could you give me some kind of tutorial on connecting?

Unfortunately i'm not able to run the olimexino example code as Uno and Nano have no Serial1, but examples with default GSM module libraries and softwareserial that proved to be working with SIM800H are getting no reply from Olimexino Nano GSM module.
Title: Re: olimexino nano gsm
Post by: lordton on October 21, 2015, 09:46:56 PM

#include <SoftwareSerial.h>
SoftwareSerial mySerial(2, 3); // RX, TX
void setup()
{
  Serial.begin(19200);
  Serial.println("Goodnight moon!");
  mySerial.begin(19200);
  mySerial.println("AT");
}

void loop()
{
  if (mySerial.available())
    Serial.write(mySerial.read());
  if (Serial.available())
    mySerial.write(Serial.read());
}
Title: Re: olimexino nano gsm
Post by: LubOlimex on October 22, 2015, 12:26:30 PM
Hello guys,

I want to ensure you that all OLIMEXINO-NANO-GSM modules get tested over serial connection during production. This significantly lowers the chances of problem at our side.

It would be hard for me to determine the exact problem. Few pointers:

1. OLIMEXINO-NANO-GSM is intended to be used with OLIMEXINO-NANO – snap them together and you have all connections established. Using other boards complicates the setup since you would need to establish the hardware connections using wires. Your hardware connections can be wrong. Double check if all connections are properly established. Make sure you are using the proper 0.1" step pins at the edge of the boards – there are two sets of pins which are not duplicate! One side has the UART signals (RX, TX), the other has USB signals.

2. Double check your powering. You would need either an external power supply or a battery (or both). You will NOT be able to power the board through another board.

3. Remember to turn on the module using the power button.

4. The code is made for OLIMEXINO-NANO (that has ATmega32u4 like the Leonardo boards). You would need to edit it to make it work with your hardware.

5. If anything else fails – I highly recommend you to get a simple USB <-> serial cable – something like USB-SERIAL-CABLE-F or BB-CH340T (or any USB<-> serial cable you might have; every electronics shop sell such cables) – this would allow you simpler serial connection to a personal computer and a serial terminal software (like puTTy). Use the RX and TX pins at the 0.1" step header. You would also need to power the GSM module. The baudrate is 9600.

Best regards,
Lub/OLIMEX
Title: Re: olimexino nano gsm
Post by: lordton on November 07, 2015, 01:09:21 PM
Thx for a non-specific useless answer.
I have sent the board back for a refund as a faulty product not reacting on AT commands via RX TX.

Title: Re: olimexino nano gsm
Post by: lordton on November 07, 2015, 01:10:23 PM
Poor documentation, poor support. NEVER again an olimex customer.
Title: Re: olimexino nano gsm
Post by: AloinJen on November 11, 2015, 08:11:55 PM
As per my experience the OLIMEXINO-NANO-GSM is intended to be used with OLIMEXINO-NANO.
Your hardware connections can be wrong. Double check if all connections are properly established.
Make sure you are using the proper 0.1" step pins at the edge of the boards there are two sets of pins which are not duplicate
Also check your powering. You would need either an external power supply.

prototype pcb assembly services (http://www.7pcb.ca/prototype-pcb-assembly/)
Title: Re: olimexino nano gsm
Post by: JohnS on November 11, 2015, 08:39:46 PM
It's a pity the OP didn't seem to be up to even simple tasks and apparently unwilling to co-operate.

John
Title: Re: olimexino nano gsm
Post by: refiloe.kunene@veolia.com on November 16, 2015, 09:22:57 AM
I have managed to connect olimexino nanno gsm to the arduino board and send the AT commands , technically i can the libraries provided to us are not that useful .  so its better to create your own small libraries suitable for your program using AT commands