Skip to content

Commit

Permalink
fixed include path in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mcgowan committed Jun 24, 2014
1 parent 002f8f1 commit 68bdd82
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion firmware/examples/Web_AjaxBuzzer/Web_AjaxBuzzer.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* Web_Buzzer.pde - example sketch for Webduino library */

#include "WebServer.h"
#include "WebServer/WebServer.h"

/* all URLs on this server will start with /buzz because of how we
* define the PREFIX value. We also will listen on port 80, the
Expand Down
2 changes: 1 addition & 1 deletion firmware/examples/Web_AjaxRGB/Web_AjaxRGB.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* Web_AjaxRGB.pde - example sketch for Webduino library */

#include "WebServer.h"
#include "WebServer/WebServer.h"

/* all URLs on this server will start with /rgb because of how we
* define the PREFIX value. We also will listen on port 80, the
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* Web_AjaxRGB_mobile.pde - example sketch for Webduino library */
/* - offers web-based slider controllers for RGB led - */

#include "WebServer.h"
#include "WebServer/WebServer.h"

/* all URLs on this server will start with /rgb because of how we
* define the PREFIX value. We also will listen on port 80, the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* WEBDUINO_AUTH_REALM before including WebServer.h */
#define WEBDUINO_AUTH_REALM "Weduino Authentication Example"

#include "WebServer.h"
#include "WebServer/WebServer.h"

/* This creates an instance of the webserver. By specifying a prefix
* of "", all pages will be at the root of the server. */
Expand Down
2 changes: 1 addition & 1 deletion firmware/examples/Web_Buzzer/Web_Buzzer.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* Web_Buzzer.pde - example sketch for Webduino library */

#include "WebServer.h"
#include "WebServer/WebServer.h"

/* all URLs on this server will start with /buzz because of how we
* define the PREFIX value. We also will listen on port 80, the
Expand Down
2 changes: 1 addition & 1 deletion firmware/examples/Web_Demo/Web_Demo.ino
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*
*/

#include "WebServer.h"
#include "WebServer/WebServer.h"

// no-cost stream operator as described at
// http://sundial.org/arduino/?page_id=119
Expand Down
2 changes: 1 addition & 1 deletion firmware/examples/Web_HelloWorld/Web_HelloWorld.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* Web_HelloWorld.pde - very simple Webduino example */

#include "WebServer.h"
#include "WebServer/WebServer.h"

/* This creates an instance of the webserver. By specifying a prefix
* of "", all pages will be at the root of the server. */
Expand Down
2 changes: 1 addition & 1 deletion firmware/examples/Web_Image/Web_Image.ino
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* image request.
*/

#include "WebServer.h"
#include "WebServer/WebServer.h"

// CHANGE THIS TO YOUR OWN UNIQUE VALUE
static uint8_t mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
Expand Down
3 changes: 1 addition & 2 deletions firmware/examples/Web_Parms/Web_Parms.ino
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@


#define WEBDUINO_FAIL_MESSAGE "<h1>Request Failed</h1>"
#include "avr/pgmspace.h" // new include
#include "WebServer.h"
#include "WebServer/WebServer.h"

#define VERSION_STRING "0.1"

Expand Down

0 comments on commit 68bdd82

Please sign in to comment.