GPS Drivers Log

The GPS Drivers Log, using the Adafruit Feather M0 Adalogger, is a tool for learning drivers that uses a GPS antenna to track everywhere you drive, including your coordinates, time elapsed while driving, and speed at which you were driving at certain points in time
ORIGINAL POST
By Team Visteli Labs: Elizabeth Vicarte, Stephanie Vicarte, Irak Mayer
components
Hardware Components
details

ucc_drive.jpg

Code

GPS data logger and Server using WIZ750SR and Feather family boards

Arduino

Main program to collect GPS data and serve clients to transfer the data thru the WIZ750SR
//GPS logger program using a Feather Adalogger, GPS feather wing and an OLED feather wing boards.
//7-18-2018
//IVM
//
     
#include <Adafruit_GPS.h>
#include <SPI.h>
#include <SD.h>
#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#include <Arduino.h>   // required before wiring_private.h
#include "wiring_private.h" // require to activate second UART

const int chipSelect = 4;

//OLED variable instance
Adafruit_SSD1306 display = Adafruit_SSD1306();

//Pins for OLED buttons.
  #define BUTTON_A 9

ucc_drive.jpg

Code

GPS data logger and Server using WIZ750SR and Feather family boards

Arduino

Main program to collect GPS data and serve clients to transfer the data thru the WIZ750SR
//GPS logger program using a Feather Adalogger, GPS feather wing and an OLED feather wing boards.
//7-18-2018
//IVM
//
     
#include <Adafruit_GPS.h>
#include <SPI.h>
#include <SD.h>
#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#include <Arduino.h>   // required before wiring_private.h
#include "wiring_private.h" // require to activate second UART

const int chipSelect = 4;

//OLED variable instance
Adafruit_SSD1306 display = Adafruit_SSD1306();

//Pins for OLED buttons.
  #define BUTTON_A 9

COMMENTS

Please Login to comment
  Subscribe  
Notify of
POSTED BY
TAGS
Reusable S/W