changed htm post code

jd-update
Flavien Haas 6 years ago
parent 120c3635ee
commit 0ad87417f2

@ -20,7 +20,7 @@ File webFile; // variable for the
// void setSPIFrequency(uint32_t frequency); // set the SPI at 8MHz to use logic analyser // void setSPIFrequency(uint32_t frequency); // set the SPI at 8MHz to use logic analyser
byte mac[] = {0xDE, 0xAD, 0xBE, 0xEF, 0xFF, 0xFD}; // set the mac address byte mac[] = {0xFA, 0xE3, 0x40, 0xEF, 0xFF, 0xFD}; // set the mac address
IPAddress ip(192, 1, 1, 150); // set the IP address for the ethernet shield, overwise the librairy use DHCP IPAddress ip(192, 1, 1, 150); // set the IP address for the ethernet shield, overwise the librairy use DHCP
EthernetServer server(80); // initialize the EthernetServer library, using port 80 (default fot HTTP) EthernetServer server(80); // initialize the EthernetServer library, using port 80 (default fot HTTP)
@ -67,18 +67,21 @@ void loop() {
while(readFrameAndCheckTS() == true){ while(readFrameAndCheckTS() == true){
// post to server // post to server
EthernetClient postClient; EthernetClient postClient;
String postdata = "&ID="+String(protocol.getStationId())+"&IDp="+String(protocol.getGatewayId())+"&TS="+String(protocol.getTimestampMessage())+"&DT="+String(protocol.getDataType())+"&D1="+String(protocol.getDataOne())+"&D2="+String(protocol.getDataTwo())+"&D3="+String(protocol.getDataThree()); String postData = "ID="+String(protocol.getStationId())+"&IDp="+String(protocol.getGatewayId())+"&TS="+String(protocol.getTimestampMessage())+"&DT="+String(protocol.getDataType())+"&D1="+String(protocol.getDataOne())+"&D2="+String(protocol.getDataTwo())+"&D3="+String(protocol.getDataThree());
bool connected = postClient.connect("weather.limayrac.ovh", 80); if (postClient.connect("btslimayrac.ovh", 80)){
if (connected){ postClient.print("POST /weather/formulaire/formulaireCollecteLORA.php HTTP/1.1\n");
postClient.println("POST /formulaireCollecte.html HTTP/1.1"); postClient.print("Host: weather.btslimayrac.ovh\n");
postClient.println("Host: btslimayrac.ovh"); postClient.print("Connection: close\n");
postClient.println("Cache-Control: no-cache"); postClient.print("Content-Type: application/x-www-form-urlencoded\n");
postClient.println("Content-Type: application/x-www-form-urlencoded");
postClient.print("Content-Length: "); postClient.print("Content-Length: ");
//postClient.println(postData.length()); postClient.print(postData.length());
//postClient.println(postData); postClient.print("\n\n");
postClient.print(postData);
Serial.println("Post to server sent");
} }
Serial.println("Post to server sent"); else{
Serial.println("Post failed");
}
} }
// WebServer // WebServer
@ -131,7 +134,7 @@ bool readFrameAndCheckTS(){
if (packetSize > 0) if (packetSize > 0)
{ {
thisLoRa.read(&protocol); // objet thislora qui appele classe Lora.h et rempli la stucture de l'objet protocol, ser a allèger -5lignes thisLoRa.read(&protocol); // objet thislora qui appele classe Lora.h et rempli la stucture de l'objet protocol, ser a allèger -5lignes
SerialUSB.println("Frame recieved"); SerialUSB.println("Frame received");
delay(100); delay(100);
} }
ts1 = protocol.getTimestampMessage(); ts1 = protocol.getTimestampMessage();
@ -139,7 +142,7 @@ bool readFrameAndCheckTS(){
if (packetSize > 0) if (packetSize > 0)
{ {
thisLoRa.read(&protocol); // objet thislora qui appele classe Lora.h et rempli la stucture de l'objet protocol, ser a allèger -5lignes thisLoRa.read(&protocol); // objet thislora qui appele classe Lora.h et rempli la stucture de l'objet protocol, ser a allèger -5lignes
SerialUSB.println("Frame recieved"); SerialUSB.println("Frame received");
delay(100); delay(100);
} }
ts2 = protocol.getTimestampMessage(); ts2 = protocol.getTimestampMessage();
@ -165,7 +168,6 @@ bool readFrameAndCheckTS(){
} }
} }
//void PrintElapsedTime( boolean espaceFinal=true ){ // to display the elapsed time //void PrintElapsedTime( boolean espaceFinal=true ){ // to display the elapsed time
// unsigned long h,m,s = millis()/1000; // unsigned long h,m,s = millis()/1000;
// m=s/60; // m=s/60;

Loading…
Cancel
Save