Skip to content

Instantly share code, notes, and snippets.

View Links2004's full-sized avatar

Markus Links2004

  • Germany
View GitHub Profile
@Links2004
Links2004 / ino.cpp
Last active November 5, 2015 11:59 — forked from funvill/ino
Trying to get Ethernet libary working on the esp8266 chipset https://github.com/esp8266/Arduino/issues/962
#include <SPI.h> // needed for Arduino versions later than 0018
#include <Ethernet.h>
#include <EthernetUdp.h> // UDP library from: bjoern@cs.stanford.edu 12/30/2008
// 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);
IPAddress remote(192, 168, 1, 5);