We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 275315f commit db0c79eCopy full SHA for db0c79e
examples/gps_tracker/gps_tracker.ino
@@ -11,8 +11,6 @@
11
#include <low_power.h>
12
#include <lte.h>
13
#include <mcp9808.h>
14
-#include <mqtt_client.h>
15
-#include <sequans_controller.h>
16
#include <veml3328.h>
17
18
#define GPSSerial Serial2
@@ -34,9 +32,9 @@ Adafruit_GPS GPS(&GPSSerial);
34
32
* such that the float values for latitude and longitude are properly
35
33
* converted before being sent to the server.
36
*/
37
-char latitude[16] = "0";
38
-char longitude[16] = "0";
39
-char time[24] = "0";
+static char latitude[16] = "0";
+static char longitude[16] = "0";
+static char time[24] = "0";
40
41
/**
42
* @brief Keeps track of the state.
0 commit comments