Datasheet

Arduino Test
Download Adafruit_FONA
To begin reading sensor data, you will need to download Adafruit_FONA Library from our github
repository (https://adafru.it/dDC). You can do that by visiting the github repo and manually downloading or, easier, just
click this button to download the zip
https://adafru.it/dDD
https://adafru.it/dDD
Rename the uncompressed folder Adafruit_FONA and check that the Adafruit_FONA folder contains
Adafruit_FONA.cpp and Adafruit_FONA.h
Place the Adafruit_FONA library folder your arduinosketchfolder/libraries/ folder.
You may need to create the libraries subfolder if its your first library. Restart the IDE.
We also have a great tutorial on Arduino library installation at:
http://learn.adafruit.com/adafruit-all-about-arduino-libraries-install-use (https://adafru.it/aYM)
FONA 3G Baud Adjustment
If you have a FONA 3G, the first time you use it you may need to run the FONA3G_setBaud example to set the baud
rate manually to 4800bps rather than 115200
Load Demo
Open up File->Examples->Adafruit_FONA->FONAtest and upload to your Arduino wired up to the module.
For the FONA 3G, change the constructor used in FONATest to Adafruit_FONA_3G:
For Mega, Leonardo, or Micro, change the definition of FONA_TX to the pin you used!
The FONA library is under heavy development! This page may change over time!
// Use this for FONA 800 and 808s
//Adafruit_FONA fona = Adafruit_FONA(FONA_RST);
// Use this one for FONA 3G
Adafruit_FONA_3G fona = Adafruit_FONA_3G(FONA_RST);
© Adafruit Industries https://learn.adafruit.com/adafruit-fona-808-cellular-plus-gps-breakout Page 29 of 57