move libraries to ../libraries

master
noerw 7 years ago
parent 4b07ad5aed
commit 9739832f0c

2
.gitignore vendored

@ -1,2 +1,2 @@
.vscode .vscode
config.h */config.h

@ -1,4 +1,4 @@
# mobile-sensebox # esp8266-gps
This is a modular (but probably overcomplicated) sketch for a mobile sensebox, written as a part of my bachelors thesis. This is a modular (but probably overcomplicated) sketch for a mobile sensebox, written as a part of my bachelors thesis.
It measures arbitrary phenomena (currently only implemented: WiFi network count), It measures arbitrary phenomena (currently only implemented: WiFi network count),

Before

Width:  |  Height:  |  Size: 931 KiB

After

Width:  |  Height:  |  Size: 931 KiB

@ -23,11 +23,9 @@
#define GPS_INTERVAL 1000 // update interval of the gps device in ms #define GPS_INTERVAL 1000 // update interval of the gps device in ms
/* API (openSenseMap) */ /* API (openSenseMap) */
#define API_ENDPOINT "api.osem.vo1d.space" #define API_ENDPOINT "ingress.osem.vo1d.space"
// SHA1 of the API SSL cert
#define API_FINGERPRINT "A2 38 74 C7 B0 71 07 D4 2A 1C A5 6D 0D 05 3E 0A 90 68 A5 CB"
#define API_KEY "XXXXXXXXXXX"
#define ID_BOX "57c7f3291421551100bf13c8" #define ID_BOX "57c7f3291421551100bf13c8"
#define ID_SENSOR_WIFI_APS "57c7f3291421551100bf13ca" #define ID_SENSOR_WIFI_APS "57c7f3291421551100bf13ca"
#define ID_SENSOR_WIFI_NET "57cdd4ce1421551100bf17c5" #define ID_SENSOR_WIFI_NET "57cdd4ce1421551100bf17c5"
#define ID_SENSOR_WIFI_OPEN "57cdd4ce1421551100bf17c6" #define ID_SENSOR_WIFI_OPEN "57cdd4ce1421551100bf17c6"

@ -1,4 +1,4 @@
#include "lib/TinyGPS++/TinyGPS++.h" #include <TinyGPS++.h>
#include "lib/BME280/BME280I2C.h" #include "lib/BME280/BME280I2C.h"
#include "config.h" #include "config.h"
#include "gps.h" #include "gps.h"

@ -1,6 +1,6 @@
#pragma once #pragma once
#include "lib/TinyGPS++/TinyGPS++.h" #include <TinyGPS++.h>
#include "lib/Time/Time.h" #include <Time.h>
#include "config.h" #include "config.h"
class Gps { class Gps {

@ -1,7 +1,7 @@
#pragma once #pragma once
#include <FS.h> #include <FS.h>
#include "lib/ESP8266TrueRandom/ESP8266TrueRandom.h" #include <ESP8266TrueRandom.h>
#include "config.h" #include "config.h"
#include "streampipe.h" #include "streampipe.h"

Before

Width:  |  Height:  |  Size: 114 B

After

Width:  |  Height:  |  Size: 114 B

Loading…
Cancel
Save