Para melhorar a sua experiência este site utiliza cookies. Ao navegar, está a consentir a sua utilização. Saiba mais sobre os nossos cookies.

Preço reduzido

Módulo GPRS GSM Wireless SIM800L 5V V2.0

35,02 €
41,20 €

(SEM IVA 28.47€)

ef16b0055bg

Módulo GPRS GSM Wireless SIM800L SMS 5V V2.0 Quad-Band com Cabo e Antena.

Desconto de quantidade

Quantidade Preço Poupa
3 34,67 € Até 1,05 €
5 33,97 € Até 5,25 €
10 33,27 € Até 17,51 €
Quantidade
Não há produtos suficientes em stock

Módulo GPRS GSM Wireless SIM800L 5V V2.0 Quad-Band com Cabo e Antena.

Especificações:
• Compatível com microcontroladores como o Arduino;
• A frequência é de 850/900/1800/1900 MHz;
• Fonte de alimentação: Tensão de 4.6 - 5.2V; A corrente é 1A ou mais (a corrente é muito importante);
• Temperatura ambiente: -40 graus C a +85 C;
• Interface de comunicação: Interface serial TTL compatível 2.85 / 3.3 / 5V MCU;
• Rede: Quad-Band 850 / 900/ 1800 / 1900;
• LEDs: Dois Leds, o Net Led e o RING Led;
• Dimensões: 27 x 39mm;
• Cartão SIM: Com slot para Cartão Micro SIM.

Inclui:
• 1x Módulo GPRS GSM Wireless SIM800L 5V V2.0 Quad-Band com Cabo e Antena.

Veja também:
→ Módulo Shield GPRS GSM SIM900
→ Placa ATmega328P com GPRS GSM SIM900
→ Módulo GPRS GSM Wireless SIM800L
→ Shield GPRS GSM GPS SIM808 

Código Exemplo: 

#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());
  }
}
NOVA ENCOMENDA