use ingress api domain

This commit is contained in:
noerw 2017-09-23 14:10:39 +02:00
parent d847ba7f43
commit 4b07ad5aed
3 changed files with 5 additions and 5 deletions

2
api.h
View file

@ -9,7 +9,7 @@ class OsemApi {
public:
bool postMeasurement(String measurement, String sensorID) {
if (!client.connect(API_ENDPOINT, 8000)) return false;
if (!client.connect(API_ENDPOINT, 80)) return false;
client << String("POST ") << "/boxes/" << ID_BOX << "/" << sensorID << " HTTP/1.1" << EOL;
client << "Host: " << API_ENDPOINT << EOL;

View file

@ -21,7 +21,7 @@ class Storage {
// convert floats to strings
char val[8], lat[16], lng[16];
dtostrf(m.value, 6, 4, val);
dtostrf(m.value, 6, 2, val);
dtostrf(m.lat, 12, 8, lat);
dtostrf(m.lng, 12, 8, lng);