buenas, gracias por su ayuda, me orientado un poco donde debo apuntar.
en cuanto el plugin de firefox, me lo instale pero tengo problemas para en contrar el icono .ja
-en cuanto al codigo si funciona, de hecho solo se necesita esta sola linea;
"<META HTTP-EQUIV= ""refresh"" CONTENT= ""0"">"
el problema es que no es en tiempo real, se pierde tiempo, en que la pagina hacede al servidor
y este envia los datos.
por ejemplo aqui , en la imagen de abajo, se puede apresiar de lado izquierdo
los datos que deberian ser 1 a 1, pero se puede apresiar la
perdida de tiempo.
yo quiero algo como el puerto serial, tiempo rea, no me sirve para mis propositos.
aqui el code:
#include "etherShield.h"
#include "ETHER_28J60.h"
static uint8_t mac[6] = {0x54, 0x55, 0x58, 0x10, 0x00, 0x24}; // this just needs to be unique for your network,
// so unless you have more than one of these boards
// connected, you should be fine with this value.
static uint8_t ip[4] = {192, 168, 1, 15}; // the IP address for your board. Check your home hub
// to find an IP address not in use and pick that
// this or 10.0.0.15 are likely formats for an address
// that will work.
static uint16_t port = 80; // Use port 80 - the standard for HTTP
ETHER_28J60 ethernet;
int i =0;
int z=0;
void setup()
{
ethernet.setup(mac, ip, port);
}
void loop()
{
z= z +1 ;
if (ethernet.serviceRequest())
{
i= i+1 ;
ethernet.print("<META HTTP-EQUIV= ""refresh"" CONTENT= ""0"">");
ethernet.print("<h2>My Datos</h2> ");
ethernet.print(i);
ethernet.print(" ");
ethernet.print(z);
ethernet.respond();
}
delay(100);
}