Compare commits

...

3 Commits

3 changed files with 9 additions and 7 deletions

2
.gitignore vendored
View File

@ -20,3 +20,5 @@
*APIKey.h
*APIKey.php
*~
config.inc.php

View File

@ -2,5 +2,5 @@
String thingtweetAPIKey = "myThingspeakKey";
String serverAPIKey = "myserverAPIKey";
String pingAPIKey ="pingApiKey";
String pingGetAPIKey ="pingGetApiKey";

View File

@ -25,7 +25,7 @@ byte mac[] = { 0xD4, 0xBA, 0xD9, 0x9A, 0x7C, 0x95 }; // Must be unique on local
EthernetClient client;
// Twitter response variables
char serverName[] = "it-syndikat.org"; // URL
#define SERVER_DOMAIN "spaceapi.it-syndikat.org" // URL
String currentLine = ""; // string to hold the text from server
// Specific variables
@ -279,11 +279,11 @@ void readServerStatus(int mode) {
void TriggerServerReq(String s, int mode) {
// attempt to connect, and wait a millisecond:
if(debug){Serial.println("connecting to server... Status req");}
if (client.connect(serverName, 80)) {
if (client.connect(SERVER_DOMAIN, 80)) {
if(debug){Serial.println("making HTTP request...");}
// make HTTP GET request to server:
client.println("GET "+ s +" HTTP/1.1");
client.println("HOST: it-syndikat.org");
client.println("HOST: " SERVER_DOMAIN);
client.println("Connection: close");
client.println();
readServerStatus(mode);
@ -335,12 +335,12 @@ void setup()
void TriggerServerUpdate(boolean stat) {
// attempt to connect, and wait a millisecond:
if(debug){Serial.println("connecting to server... Update Req");}
if (client.connect(serverName, 80)) {
if (client.connect(SERVER_DOMAIN, 80)) {
if(debug){Serial.println("making HTTP request...");}
// make HTTP GET request to server:
String s =(stat?"true":"false");
client.println("GET /api/update.php?open=" + s + "&apikey="+serverAPIKey+" HTTP/1.1");
client.println("HOST: it-syndikat.org");
client.println("HOST: " SERVER_DOMAIN);
client.println("Connection: close");
client.println();
readServerStatus(0);
@ -364,7 +364,7 @@ void readButtons(){
}
void RequestPing() {
TriggerServerReq("/api/ping-get.php?apikey="+pingAPIKey,1);
TriggerServerReq("/api/ping-get.php?apikey="+pingGetAPIKey,1);
}
void launchUpdate(){