-30%
Jamaican Black Castor Oil
DescriptionLoNet 800L is a mini GSM module that offers 2G GSM and GPRS data. It features small size and low power consumption. Twice size as a coin and the working current low to 1mA when in sleep mode. It uses a serial port communication, supports 3GPP TS 27.007, 27.005 and SIMCOM enhanced AT Commands. Also, it supports A-GPS technique that help get indoor position by the mobile network.Works compatible with Arduino Uno, Arduino Mini, Raspberry Pi. A mini GSM antenna is came with, but an external power supply is required.FeaturesQuad-band 850/900/1800/1900MHzGPRS multi-slot class12 connectivity: max. 85.6kbps (down-load/up-load)GPRS mobile station class B3GPP TS 27.007, 27.005 and SIMCOM enhanced AT CommandsReal Time ClockPower voltage 3.4V ~ 4.4V DCA-GPS (Assisted Global Positioning System)Supports 2.8V to 5.0V logic levelLow power consumption, 1mA in sleep modeCompact size 23mm x 35mm x 5.6mmStandard SIM Card How to get started with small SIM800l GSM moduleIntroductionMini GSM / GPRS breakout board is based on SIM800L module, supports quad-band GSM/GPRS network, available for GPRS and SMS message data remote transmission. The board features compact size and low current consumption. With power saving technique, the current consumption is as low as 1mA in sleep mode. It communicates with microcontroller via UART port, supports SIMCOM enhanced AT Commands.OverviewPinout descriptionThere are 12 total pins on the small SIM800L two parallel rows of six headers. One row contains all of the pins required to interface with Arduino, the other row has all things for interface.GND: Ground for SIM800LVCC: Supply Voltage input for SIM800LRST: Reset pin for SIM800LRXD: Serial communication (Receiver Pin)TXD: Serial communication (Transfer Pin)NET: AntennaRING: Low state while receiving callDTR: Sleep modeMICP: Microphone MICN: Microphone –SPKP: Speaker SKPN: Speaker –Hardware RequiredSmall SIM800LMicro SimArduino Uno R3Solderless BreadboardJumper WiresDC-DC Adjustable Step down Module1kOhm resistorNPN transistor (we used BC 547)Step 1. Hardware SetupFrom the specification of SIM800L we would able to find out that is:Operating voltage: 3.3 – 5 VoltsRecommended voltage: 3.4 – 4.4 VoltsRecommended Current: 1 – 2 AmpsRecommended Power: 5 WattsTherefore, if we use voltages below 3.4, either the SIM800l will not work or it will work but not all its features are responding (e.g unable to read SIM card). But if we use voltage equal to its MAXIMUM operating voltage, the module might heat up and then get destroyed, or if we use ABOVE operating voltage, it will absolutely destroy the module, Most important, we should not supply a current above 2 Amp (e.g 3-5 Amp) to the module, it will destroy the module even if your voltage is in 3,4 – 4.4 volts rangeWe will set SIM800L up with Arduino to send simple text message. There are two ways to do this:First way: Using an external power supplySecond way: using Arduino pin to supply the SIM800lNote: The second way is easy but does not work for every arduino board, It will be nice if you stick it up with the first way as to be sure your SIM800L register to a network as quick as possible.First WayLet starts by regulating the voltages from our AC-DC power, we need to connect it to the DC-DC step down module like this.AC-DC power VCC ( ) ↔ DC-DC step down IN .AC-DC power GND (-) ↔ DC-DC step down IN – .Turn the indicated screw anti-clockwise until you get the desired voltage ( between 3.4 -4.4 volts) by measuring it with a voltmeter connected onto the output leads of the module. Then regulate the current by turning anti-clockwise and connect the voltmeter leads and measure the output current.When the LED on the DC-DC module light up in blue, this indicates the maximum short circuit current, You must not worry about it being 2 Amps and some decimal. After that try connecting any resistor not exceeding 1k Ohm in series with the multimeter and measure the current. The values you get is the same as the current that will be used by SIM800L module.Hook upWe will hook up the SIM800L module with Arduino using the SoftwareSerial library present in new version later than Arduino IDE 1.0.1. We will connect Hardware serial port to thecomputer to debug and print messages. Connect the SIM800L pins like this:SIM800L GND ↔ DC-DC step down OUT –SIM800L TX ↔ Arduino D10SIM800L RX ↔Arduin D11SIM800L RST ↔ Arduino D02 (through the circuit shown below)SIM800L VCC ↔ DC-DC step down OUT Note that the module requires voltage in range of 3.4 to 4.4v. If proper voltage is not provided the module will give under and over voltage warnings. Also another thing is that if you have a 3.7v 1000mAh LiPo battery, you can also power up you SIM800L with it.The SIM800 LED indicator will blink once every 2 or 3 seconds when it has completely registered your Sim to a network, when the LED indicator is blinking every second once, this means that the SIM800L is still searching for a network to register onto. When the LED indicator does not blink, your power supply do provide low current even if you calibrated well the voltage.Test codeLet us start with the simple text code that will verify if everything is setup properly. Remember to insert a SIM card before proceeding further. The code below takes commands from the Arduino terminal and sends it to the GSM Module. It also sends the commands other way around, from the GSM module to the Arduino. The code will also verify if the Software Serial library is also working fine.once you upload the code to your Arduino board, you’ll be able to send all AT command in order to send/receive text messages or make calls. Sending SMSWe will now use the basic sim800l library to send messages. the code asks you to enter phone number and the message to be sent and sends the message! If you get an error message please go up and fix where you made a mistake.Second WayLike in the first way we are going to send an SMS using SIM800L. You might ask why we are going to power up the SIM800L with arduino 5V pin and say that’s sound risky, but as we know 5V pin on Arduino generate current from 500mA- 1 Amp (not all Arduino board do, here we used Arduino Genuino UNO R3 ) which gives a maximum power of 5 watts. 5 watts qualifies from recommended power which would not cause the module to heat up or being destroyed. That’s why 5V pin on Arduino qualifies as a supply voltage.Step 1. Circuit ConnectionNote: Make sure you already inserted your SIM card before powering the module. If not, you will not see any changes in the module LED indicator.SIM800 VCC ↔ Arduino 5vSIM800 GND ↔ Arduino GNDSIM800 SIM_TXD ↔ Arduino pin 3SIM800 SIM_RXD ↔ Arduino pin 2Note: if SIM800L LED indicator blink once every 2 or 3 seconds, your SIM already boot up and registered to a network. If not, try checking your SIM if it is properly in place. If SIM800L LED indicator blink once every second, the SIM800L is trying t get connected to your SIM card network provider wait until you get connected or just reboot the module by removing the VCC pin from the Arduino the back again until the LED blinks once every 3 seconds.Step 3: CodeDownload and Add Adafruit Fona library to your Arduino library.Then open and upload the FonaTest sample code from Adafruit Fona example.Open Serial monitor the change baudrate to 115200 and choose Both NL & CRthen you’ll see Menu of test setup; choose anything you want to test (e.g Send and receive message).Then browse into the Adafruit FONA library’s sample test code and find FONAtest and upload to your Arduino. Open your serial monitor and select a correct baud rate wait for the SIM800L to respond.Then check for your network status or if your SIM has completely register to a network. do it by typing n in the serial monitor.Follow the drop list to send or receive the message or try other commands you want.Sending SMSType in s and fill in with the phone number, then write a message you want to send (less tha 140 charcter) and press Return(enter) then wait for the message for the target handset. if you don’t receive the sms, you will get an error message on the serial monitor. If that’s not the case wait until you receive the message. refer to the below images.ResourcesDocuments and Library:sim800l libraryAdafruit FONA librarysim800l AT- commandsArduino Code:Test sketchSending SMS sketchPackage includes: 1×Smallest SIM800L With Antenna














