The Adafruit FONA 808 Breakout is a versatile and compact module that integrates both cellular and GPS capabilities. It allows projects to connect to GSM and GPRS networks, enabling voice calls, SMS messaging, and data transmission. Additionally, with its built-in GPS module, it can provide location tracking services. This breakout is ideal for a wide range of applications, including remote monitoring, asset tracking, and IoT devices.
Pin Number | Name | Description |
---|---|---|
1 | Vio | Digital supply voltage (3.3V to 5V) |
2 | GND | Ground |
3 | RST | Reset pin (active low) |
4 | RX | UART receive pin |
5 | TX | UART transmit pin |
6 | Key | Power on/off control pin |
... | ... | ... |
n | GPS | GPS antenna connection |
Note: This is a partial list. Refer to the full datasheet for complete pin descriptions.
#include <SoftwareSerial.h>
// Create software serial object to communicate with FONA
SoftwareSerial fonaSerial(2, 3); // RX, TX
void setup() {
fonaSerial.begin(4800); // Set the baud rate for the FONA module
Serial.begin(115200); // Set the baud rate for the Serial monitor
// Power on the FONA module by toggling the Key pin
pinMode(4, OUTPUT);
digitalWrite(4, LOW);
delay(1000);
digitalWrite(4, HIGH);
delay(5000); // Wait for the module to power up
// Check for FONA module response
Serial.println(F("FONA basic test"));
Serial.println(F("Initializing..."));
fonaSerial.println("AT"); // Send AT command to check for response
delay(1000);
while (fonaSerial.available()) {
Serial.write(fonaSerial.read());
}
}
void loop() {
// Code to interact with the FONA module can be added here
}
Note: This example demonstrates basic initialization and communication with the FONA 808. For specific functionalities like making calls, sending SMS, or using GPS, additional code is required.
Q: Can I use the FONA 808 with a 5V microcontroller like the Arduino UNO? A: Yes, the FONA 808 is 5V tolerant on the UART pins, but ensure that Vio is connected to a 3.3V or 5V supply as appropriate.
Q: How do I update the firmware on the FONA 808? A: Firmware updates can be done through the UART interface using the appropriate software provided by the manufacturer.
Q: What is the power consumption of the FONA 808? A: The power consumption varies based on the mode of operation. During active calls or data transmission, it can consume more power compared to idle mode. Refer to the datasheet for detailed power consumption figures.
Note: This documentation is for informational purposes only. For detailed and specific instructions, always refer to the official datasheet and user manual provided by Adafruit.