o primeiro passo que eu fiz, foi testar o exemplo básico do “Webclient” do arduino. Este código é de um Webclient que manda um GET para o servidor do google com um comando para pesquisar algo no google e retornar a pesquisa na porta serial do arduino.
Pra fazer isso eu tenho a Placa arduino + a placa ethernet shield conectada a rede.
Exemplo:
#include <SPI.h>
#include <Ethernet.h>
// Enter a MAC address for your controller below.
// Newer Ethernet shields have a MAC address printed on a sticker on the shield
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
byte ip[] = {192,168,1,100};
byte gateway[] = { 192,168,1,1 };
byte subnet[] = { 255, 255, 255, 0 };
byte server[] = { 74,125,234,176 }; /
EthernetClient client;
void setup() {
// start the serial library:
Serial.begin(9600);
// start the Ethernet connection:
if (Ethernet.begin(mac) == 0) {
Serial.println(“Failed to configure Ethernet using DHCP”);
// no point in carrying on, so do nothing forevermore:
for(;
;
}
// give the Ethernet shield a second to initialize:
delay(1000);
Serial.println(“connecting…”);
// if you get a connection, report back via serial:
if (client.connect(server, 80)) {
Serial.println(“connected”);
// Make a HTTP request:
client.println(“GET /search?q=arduino HTTP/1.0”);
client.println();
}
else {
// kf you didn’t get a connection to the server:
Serial.println(“connection failed”);
}
}
void loop()
{
// if there are incoming bytes available
// from the server, read them and print them:
if (client.available()) {
char c = client.read();
Serial.print©;
}
// if the server’s disconnected, stop the client:
if (!client.connected()) {
Serial.println();
Serial.println(“disconnecting.”);
client.stop();
// do nothing forevermore:
for(;;)
;
}
}
Só que este código está retornando falha pra mim. Aparece no Serial monitor que houve falha na conexão.
Se eu conseguisse fazer este exemplo básico eu conseguiria mandar os dados para o receptor http do SCADABR
Alguém poderia ajudar??
grato!