The Adafruit FONA 808 Shield is an all-in-one cellular phone module with integrated GPS, providing global data connectivity and location tracking capabilities for your Arduino projects. It combines a GSM/GPRS module with a satellite-based GPS receiver, making it ideal for a wide range of applications such as remote monitoring, asset tracking, and IoT devices. The shield is designed to work with 2G networks and supports voice calls, SMS messages, and GPRS data.
Pin Number | Name | Description |
---|---|---|
1 | Vio | Power supply for logic level (3.3V to 5V) |
2 | GND | Ground |
3 | RST | Reset pin |
4 | RX | UART receive pin |
5 | TX | UART transmit pin |
6 | Key | Turn on/off the module |
7 | PS | Power status pin |
8 | NS | Network status pin |
... | ... | ... |
Note: This table is not exhaustive. Refer to the Adafruit FONA 808 Shield datasheet for the complete pinout and description.
#include <Adafruit_FONA.h>
// Pin definitions
#define FONA_RX 2
#define FONA_TX 3
#define FONA_RST 4
// Create the FONA object
Adafruit_FONA fona = Adafruit_FONA(FONA_RST);
void setup() {
Serial.begin(115200);
Serial.println(F("FONA basic test"));
Serial.println(F("Initializing FONA... (may take a few seconds)"));
// Make it slow so its easy to read!
fonaSerial->begin(4800);
if (! fona.begin(*fonaSerial)) {
Serial.println(F("Couldn't find FONA"));
while (1);
}
Serial.println(F("FONA is OK"));
}
void loop() {
// Your code to interact with the FONA shield goes here
}
Note: This is a basic initialization example. For full functionality, refer to the Adafruit FONA library and examples.
Q: Can the FONA 808 Shield work with 3G or 4G networks? A: No, the FONA 808 is designed for 2G networks only.
Q: How do I update the firmware on the FONA 808 Shield? A: Firmware updates can be performed using the FONA flash tool provided by Adafruit. Follow the instructions on the Adafruit website for the update process.
Q: What is the power consumption of the FONA 808 Shield? A: The shield typically consumes around 250 mA during transmission and less during idle. However, it can peak up to 2A during transmission bursts.
Note: This documentation is for informational purposes only. For detailed technical specifications and advanced usage, refer to the official Adafruit FONA 808 Shield datasheet and user manual.