3

I am new to IOT and tried out integration and a small test code with an Arduino Mega + SIM808 + GSM + GPS Module. It works fine with the SIM808 Library.

My requirement is to put it in an enclosure, but when the power restarts, for some reason we have to manually start the SIM 808 + GPS + GSM Module. Can we control it from code? Can we do a software trigger from Arduino code?

Maybe if we have some pins to connect and trigger the power on. Kindly provide inputs/suggestion for this module.

If you are aware of some module that can be started through code kindly suggest.

Here's one reference I found for a different module with Software Trigger.

dda
  • 1,595
  • 1
  • 12
  • 17
JiteshD
  • 31
  • 1
  • 2

2 Answers2

6

There is a simple way of power the module without pressing the button. There is pin call D9 at the bottom right corner of the module. Just power the pin by Arduino digital pin or 5v pin around 3, 4 seconds. Then it will power the whole module. No need to press the press switch. Make sure you connect power(9V-12V) to the board and provide 5V and GND to the sim808 module. below figure shows the pin D9

enter image description here
enter image description here

Senura
  • 61
  • 1
  • 2
0

I can't get a great view of the board, but if you are pressing the button just below "GSM" and "Made" then I would suggest soldering some leads onto the button and connecting them to a digital output and Gnd on the Arduino. (You might need resistors and stuff) Then when you wanted to press the button you could pulse the line high.

Code Gorilla
  • 5,652
  • 1
  • 17
  • 31