Buenas tardes con todos.
Les agradeceré mucho a todos los que me puedan ayudar.
He buscado información relacionada y no encuentro algo actual. Y lo que que parece bueno me confunde sobre lo que sabía anteriormente. Por ello espero puedan ayudarme a resolver algunas dudas.
Estoy armando una red con arduino ethernet hace algunas semanas. He logrado poner en red interna (lan) mi arduino ethernet (arduino uno + ethernet shield) con mi computadora de escritorio y laptop por medio de un router (tp-link).
La conexión que que he establecido es: Pc escritorio a router (puerto lan1) por cable utp; arduino ethernet a router (puerto lan2) por cable utp y mi laptop a router por wifi. El puerto "wan" de mi router está conectado ami modem que me provee internet. Todos estso equipos están en la misma dirección ip de red.
He probado el ejemplo de ide arduino 1.0.1. llamado "web server"
/*
Web Server
A simple web server that shows the value of the analog input pins.
using an Arduino Wiznet Ethernet shield.
Circuit:
* Ethernet shield attached to pins 10, 11, 12, 13
* Analog inputs attached to pins A0 through A5 (optional)
created 18 Dec 2009
by David A. Mellis
modified 9 Apr 2012
by Tom Igoe
*/
#include <SPI.h>
#include <Ethernet.h>
// Enter a MAC address and IP address for your controller below.
// The IP address will be dependent on your local network:
byte mac[] = {
0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
IPAddress ip(192,168,1, 177);
// Initialize the Ethernet server library
// with the IP address and port you want to use
// (port 80 is default for HTTP):
EthernetServer server(80);
void setup() {
// Open serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {
; // wait for serial port to connect. Needed for Leonardo only
}
// start the Ethernet connection and the server:
Ethernet.begin(mac, ip);
server.begin();
Serial.print("server is at ");
Serial.println(Ethernet.localIP());
}
void loop() {
// listen for incoming clients
EthernetClient client = server.available();
if (client) {
Serial.println("new client");
// an http request ends with a blank line
boolean currentLineIsBlank = true;
while (client.connected()) {
if (client.available()) {
char c = client.read();
Serial.write(c);
// if you've gotten to the end of the line (received a newline
// character) and the line is blank, the http request has ended,
// so you can send a reply
if (c == '\n' && currentLineIsBlank) {
// send a standard http response header
client.println("HTTP/1.1 200 OK");
client.println("Content-Type: text/html");
client.println("Connnection: close");
client.println();
client.println("<!DOCTYPE HTML>");
client.println("<html>");
// add a meta refresh tag, so the browser pulls again every 5 seconds:
client.println("<meta http-equiv=\"refresh\" content=\"5\">");
// output the value of each analog input pin
for (int analogChannel = 0; analogChannel < 6; analogChannel++) {
int sensorReading = analogRead(analogChannel);
client.print("analog input ");
client.print(analogChannel);
client.print(" is ");
client.print(sensorReading);
client.println("
");
}
client.println("</html>");
break;
}
if (c == '\n') {
// you're starting a new line
currentLineIsBlank = true;
}
else if (c != '\r') {
// you've gotten a character on the current line
currentLineIsBlank = false;
}
}
}
// give the web browser time to receive the data
delay(1);
// close the connection:
client.stop();
Serial.println("client disonnected");
}
}
y funciona bien, estos son los valores que veo en la pantalla al teclear en el navegador el ip de mi arduino ethernet:
"analog input 0 is 1023
analog input 1 is 1023
analog input 2 is 748
analog input 3 is 567
analog input 4 is 434
analog input 5 is 421"
Mi problema radica en cómo hacer para ver esos datos desde internet, es decir fuera de mi red lan (desde cualquier pc o dispositivo conectado a internet)??
Leyendo he visto que se tiene que configurar una cuenta dns en mi router (no entiendo muy bien ello), o sólo se hace con puro código html y php?? Hay otros métodos?.
Espero me puedan orientar.
Gracias
Muchas gracias.