Skip to content

Instantly share code, notes, and snippets.

View lingoslinger's full-sized avatar

Allan Evans lingoslinger

  • Chicago USA
View GitHub Profile
@lingoslinger
lingoslinger / parallaxwebservice.ino
Last active December 10, 2015 05:08
Modification of https://gist.github.com/4112791 by @cieslak for use with the Parallax 16x2 LCD display with backlight and piezo speaker. Code in the repeat loop is all I needed to change. See orginal gist for more info.
#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);