Je débute avec le shield ethernet vellemen avec un ENC28J60
je souhaite envoyer des données sur un serveur web local (sous wamp) avec son ip via ether.BrowseUrl
Fonctionne sans soucis via un nom de domain et dns mais en remplacent char website[] PROGMEM = "www.google.fr"; par char website[] PROGMEM = "192.168.1.5"; avec l'adresse du seveur (192.168.1.5) je n'ai plus aucun retour aux requêtes, si quelqu'un veut bien m'aider
Le code utilisé avec :
// This demo does web requests via DHCP and DNS lookup. // 2011-07-05 <***@***> http://opensource.org/licenses/mit-license.php
if (!ether.dnsLookup(website)) Serial.println("DNS failed"); ether.printIp("Server: ", ether.hisip);
timer = - REQUEST_RATE; // start timing out right away }
void loop () { // DHCP expiration is a bit brutal, because all other ethernet activity and // incoming packets will be ignored until a new lease has been acquired if (ether.dhcpExpired() && !ether.dhcpSetup()) Serial.println("DHCP failed");