Skip to content

Instantly share code, notes, and snippets.

@projectgus
Created July 16, 2013 23:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save projectgus/6016251 to your computer and use it in GitHub Desktop.
Save projectgus/6016251 to your computer and use it in GitHub Desktop.
Simple mashup of the Arduino Ethernet WebServer example and the SD DumpFile example
/*
Web Server
A simple web server that sends the contents of "hello.txt" on the SD card
to any web client that connects.
Modified from the "Ethernet -> WebServer" & "SD -> DumpFile" Arduino examples
by Angus Gratton <angus@freetronics.com>
*/
#include <SD.h>
#include <SPI.h>
#include <Ethernet.h>
// 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, 17);
const int sd_chipSelect = 4;
// Initialize the Ethernet server library
// with the IP address and port you want to use
// (port 80 is default for HTTP):
EthernetServer server(80);
void setup() {
// Open serial communications and wait for port to open:
Serial.begin(9600);
// start the Ethernet connection and the server:
Ethernet.begin(mac, ip);
server.begin();
Serial.print("server is at ");
Serial.println(Ethernet.localIP());
// Bring up the SD card
if (!SD.begin(sd_chipSelect)) {
Serial.println("SD card failed, or not present");
// don't do anything more, infinite loop here until we get reset
while(1) { }
}
Serial.println("SD card initialized.");
}
void loop() {
// listen for incoming clients
EthernetClient client = server.available();
if (client) {
Serial.println("new client");
// an http request ends with a blank line
boolean currentLineIsBlank = true;
while (client.connected()) {
if (client.available()) {
char c = client.read();
Serial.write(c);
// if you've gotten to the end of the line (received a newline
// character) and the line is blank, the http request has ended,
// so you can send a reply
if (c == '\n' && currentLineIsBlank) {
// read file from SD card and send response
client.println("HTTP/1.1 200 OK");
client.println("Content-Type: text/plain");
client.println("Connnection: close");
client.println();
// open the file. note that only one file can be open at a time,
// so you have to close this one before opening another.
File dataFile = SD.open("hello.txt");
// if the file is available, read its contents one byte at a time and send it to the ethernet client
if (dataFile) {
while (dataFile.available()) {
client.print((char)dataFile.read());
}
dataFile.close();
client.println();
}
// if the file isn't open, pop up an error:
else {
Serial.println("error opening hello.txt");
client.println("error opening hello.txt");
}
break;
}
if (c == '\n') {
// you're starting a new line
currentLineIsBlank = true;
}
else if (c != '\r') {
// you've gotten a character on the current line
currentLineIsBlank = false;
}
}
}
// give the web browser time to receive the data
delay(1);
// close the connection:
client.stop();
Serial.println("client disonnected");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment