This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "SPI.h" | |
#include "Ethernet.h" | |
#include "SoftwareSerial.h" | |
#include <WebServer.h> | |
static uint8_t mac[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; // change this to your Ethernet shield's MAC address | |
static uint8_t ip[] = { 0, 0, 0, 0 }; // change to your network | |
#define PREFIX "" | |
WebServer webserver(PREFIX, 80); |