We are 90% ready to Release KSduino Library for Arduino
You may look to the
Development Page now to test it.
/**
* Setup this library
*/
void KSduino::begin (byte *mac, unsigned int port)
{
Ethernet.begin (mac);
getSocket();
_port = port;
Udp.begin (port);
}
void main(void)
{
printf ("Hello World!\n");
}