This is an old revision of the document!
Student: Alexandru Rares Apostol, ACES
The purpose of this project involves the development of a GNSS receiver for land surveying applications. The receiver will provide accurate positioning on-site and provide a user friendly application for viewing the generated perimeters. All these features will be available at the press of a button, where the precise position will be stored in a database.
The hardware components needed for this project are:
Fig. 2.1. - Overview
Fig. 2.2. - Electrical wiring
Fig. 2.3. - Acquisition System
In this section I will describe the configurations implemented in order to obtain the desired functionality. The code starts by including the Firebase libraries which are used by the ESP32 to send and receive data from the remote database, and the ESP8266WiFi and EEPROM libraries for connecting to the internet and storing the updated value of certain data.
#include <Arduino.h> #include <ESP8266WiFi.h> #include <Firebase_ESP_Client.h> #include <EEPROM.h>
//Provide the token generation process info. #include "addons/TokenHelper.h" //Provide the RTDB payload printing info and other helper functions. #include "addons/RTDBHelper.h"