hello
I want to use an arduino uno plus ethernet shied to command a relay to work as a watchdog for an adsl modem . so I intend to ping a known IP and reboot in case of freeze.
the sketch is :+1:
/*
Ping Example
This example sends an ICMP pings every 500 milliseconds, sends the human-readable
result over the serial port.
Circuit:
* Ethernet shield attached to pins 10, 11, 12, 13
created 30 Sep 2010
by Blake Foster
*/
#include <SPI.h>
#include <Ethernet.h>
#include <ICMPPing.h>
hello I want to use an arduino uno plus ethernet shied to command a relay to work as a watchdog for an adsl modem . so I intend to ping a known IP and reboot in case of freeze. the sketch is :+1:
define relaypin 13
int JFP=0;
it is straight from the example
but i get an error during the compilation
C:\Program Files (x86)\Arduino\libraries\icmp_ping\ICMPPing.cpp:11:18: fatal error: util.h: No such file or directory
include
what dit i wrong ? where is the util.h ?
thank you