buttons: move to spaceapi.it-syndikat.org domain

This commit is contained in:
Xiretza 2022-08-14 18:16:37 +02:00
parent 7c7d322839
commit d8c335b6da

View file

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