Spidey Wall is the name for a physical wall lit up by multiple addressable LED strips. This program is an LPC1768 web server to control the wall from a browser.

Dependencies:   EthernetInterfacePlusHostname RdWebServer mbed-rtos mbed

This project is part of a Light-Wall using addressable LED strips (WS2801). I have published a few posts on my blog about the construction of the wall and building a game to play on it (PacMan). I have also had a guest post from a friend who has set his children the task of producing some interesting animations. The original post is http://robdobson.com/2015/07/spidey-wall/ /media/uploads/Bobty/20130722_112945_img_9674_62895-1184x1579.jpg

So far, however, I hadn't fully connected the physical (and electronic) wall with the web-browser creations to drive it. This project is hopefully the final link. A fast and reliable web server using REST commands to drive the 1686 LEDs in the Spidey Wall from code running in a browser (say on an iPad while you are playing a game).

The approach taken here results in the ability to control the RGB values of all 1686 LEDs at a rate of 20 frames per second.

A blog post describing the whole thing is here:

http://robdobson.com/2015/08/a-reliable-mbed-webserver/

Committer:
Bobty
Date:
Mon Aug 31 15:21:47 2015 +0000
Revision:
4:b521815f2657
Parent:
3:e5ea80fae61d
Child:
5:910909f34907
Tidied up and removed unnecessary code

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Bobty 1:362331cec9b7 1 //
Bobty 2:99eb4c6e9ea4 2 // LightWall WebServer
Bobty 1:362331cec9b7 3 //
Bobty 4:b521815f2657 4 // Rob Dobson (C) 2015
Bobty 4:b521815f2657 5 //
Bobty 4:b521815f2657 6 // See http://robdobson.com/2015/07/spidey-wall/ and http://robdobson.com/2015/08/a-reliable-mbed-webserver/
Bobty 4:b521815f2657 7 //
Bobty 0:887096209439 8
Bobty 0:887096209439 9 #include "mbed.h"
Bobty 0:887096209439 10 #include "EthernetInterface.h"
Bobty 1:362331cec9b7 11 #include "RdWebServer.h"
Bobty 1:362331cec9b7 12 #include "DrawingManager.h"
Bobty 0:887096209439 13 #include <string.h>
Bobty 1:362331cec9b7 14
Bobty 1:362331cec9b7 15 // Web port
Bobty 1:362331cec9b7 16 const int WEBPORT = 80; // Port for web server
Bobty 0:887096209439 17
Bobty 1:362331cec9b7 18 // Debugging and status
Bobty 1:362331cec9b7 19 RawSerial pc(USBTX, USBRX);
Bobty 2:99eb4c6e9ea4 20 DigitalOut led1(LED1); // flashes on command received
Bobty 1:362331cec9b7 21 DigitalOut led2(LED2); //
Bobty 1:362331cec9b7 22 DigitalOut led3(LED3); //
Bobty 1:362331cec9b7 23 DigitalOut led4(LED4); // web server status
Bobty 0:887096209439 24
Bobty 2:99eb4c6e9ea4 25 // System configuration
Bobty 2:99eb4c6e9ea4 26 char systemName[20] = "LightWall";
Bobty 2:99eb4c6e9ea4 27 int systemNumLEDS = 20;
Bobty 2:99eb4c6e9ea4 28 int systemLEDSSplitPoint = systemNumLEDS;
Bobty 2:99eb4c6e9ea4 29
Bobty 1:362331cec9b7 30 // Drawing Manager
Bobty 2:99eb4c6e9ea4 31 DrawingManager drawingManager;
Bobty 0:887096209439 32
Bobty 4:b521815f2657 33 // General response string for REST requests
Bobty 4:b521815f2657 34 char* generalRespStr = "HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nAccess-Control-Allow-Origin: *\r\nAccess-Control-Allow-Methods: POST, GET, OPTIONS\r\nAccess-Control-Allow-Headers:accept, content-type\r\nContent-Length: 0\r\nContent-Type: application/octet-stream\r\n\r\n";
Bobty 2:99eb4c6e9ea4 35
Bobty 4:b521815f2657 36 // Get system name - No arguments required
Bobty 4:b521815f2657 37 char* lightwallGetSystemName(int method, char*cmdStr, char* argStr, char* msgBuffer, int msgLen,
Bobty 4:b521815f2657 38 int contentLen, unsigned char* pPayload, int payloadLen, int splitPayloadPos)
Bobty 2:99eb4c6e9ea4 39 {
Bobty 2:99eb4c6e9ea4 40 // Return the system name
Bobty 2:99eb4c6e9ea4 41 return systemName;
Bobty 2:99eb4c6e9ea4 42 }
Bobty 2:99eb4c6e9ea4 43
Bobty 4:b521815f2657 44 // Clear LEDS - No arguments required
Bobty 4:b521815f2657 45 char* lightwallClear(int method, char*cmdStr, char* argStr, char* msgBuffer, int msgLen,
Bobty 4:b521815f2657 46 int contentLen, unsigned char* pPayload, int payloadLen, int splitPayloadPos)
Bobty 4:b521815f2657 47 {
Bobty 4:b521815f2657 48 drawingManager.Clear();
Bobty 4:b521815f2657 49 return generalRespStr;
Bobty 4:b521815f2657 50 }
Bobty 4:b521815f2657 51
Bobty 4:b521815f2657 52 // RawFill - arguments for start LED (e.g. /rawfill?start=0)
Bobty 4:b521815f2657 53 // - payload of message contains binary data for RGB (1 byte for each) for each LED to be set
Bobty 4:b521815f2657 54 char* lightwallRawFill(int method, char*cmdStr, char* argStr, char* msgBuffer, int msgLen,
Bobty 4:b521815f2657 55 int contentLen, unsigned char* pPayload, int payloadLen, int splitPayloadPos)
Bobty 4:b521815f2657 56 {
Bobty 4:b521815f2657 57 drawingManager.RawFill(argStr, pPayload, payloadLen, splitPayloadPos);
Bobty 4:b521815f2657 58 return generalRespStr;
Bobty 4:b521815f2657 59 }
Bobty 4:b521815f2657 60
Bobty 4:b521815f2657 61 // Fill - arguments for start, numLeds, initial-R/G/B and ending-R/G/B (optional)
Bobty 4:b521815f2657 62 // - e.g. /fill?start=0&len=100&r1=20&g1=30&b1=50
Bobty 4:b521815f2657 63 // - e.g. /fill?start=0&len=100&r1=20&g1=30&b1=50&r2=50&g2=100&b2=23
Bobty 4:b521815f2657 64 char* lightwallFill(int method, char*cmdStr, char* argStr, char* msgBuffer, int msgLen,
Bobty 4:b521815f2657 65 int contentLen, unsigned char* pPayload, int payloadLen, int splitPayloadPos)
Bobty 4:b521815f2657 66 {
Bobty 4:b521815f2657 67 drawingManager.Fill(argStr);
Bobty 4:b521815f2657 68 return generalRespStr;
Bobty 4:b521815f2657 69 }
Bobty 4:b521815f2657 70
Bobty 4:b521815f2657 71 // ShowLeds - no arguments
Bobty 4:b521815f2657 72 char* lightwallShowLeds(int method, char*cmdStr, char* argStr, char* msgBuffer, int msgLen,
Bobty 4:b521815f2657 73 int contentLen, unsigned char* pPayload, int payloadLen, int splitPayloadPos)
Bobty 4:b521815f2657 74 {
Bobty 4:b521815f2657 75 // Blink LED
Bobty 4:b521815f2657 76 led1 = !led1;
Bobty 4:b521815f2657 77 // Show LEDS
Bobty 4:b521815f2657 78 drawingManager.ShowLeds();
Bobty 4:b521815f2657 79 return generalRespStr;
Bobty 4:b521815f2657 80 }
Bobty 4:b521815f2657 81
Bobty 1:362331cec9b7 82 // Create, configure and run the web server
Bobty 4:b521815f2657 83 void http_server(void const* arg)
Bobty 0:887096209439 84 {
Bobty 2:99eb4c6e9ea4 85 // Init the web server
Bobty 1:362331cec9b7 86 pc.printf("Starting web server\r\n");
Bobty 1:362331cec9b7 87 char* baseWebFolder = "/sd/"; // should be /sd/ for SDcard files - not used for local file system
Bobty 1:362331cec9b7 88 RdWebServer webServer;
Bobty 2:99eb4c6e9ea4 89
Bobty 2:99eb4c6e9ea4 90 // Add commands to handle the home page and favicon
Bobty 1:362331cec9b7 91 webServer.addCommand("", RdWebServerCmdDef::CMD_LOCALFILE, NULL, "index.htm", true);
Bobty 1:362331cec9b7 92 webServer.addCommand("favicon.ico", RdWebServerCmdDef::CMD_LOCALFILE, NULL, NULL, true);
Bobty 2:99eb4c6e9ea4 93
Bobty 2:99eb4c6e9ea4 94 // Add the lightwall control commands
Bobty 2:99eb4c6e9ea4 95 webServer.addCommand("name", RdWebServerCmdDef::CMD_CALLBACK, &lightwallGetSystemName);
Bobty 4:b521815f2657 96 webServer.addCommand("clear", RdWebServerCmdDef::CMD_CALLBACK, &lightwallClear);
Bobty 4:b521815f2657 97 webServer.addCommand("rawfill", RdWebServerCmdDef::CMD_CALLBACK, &lightwallRawFill);
Bobty 4:b521815f2657 98 webServer.addCommand("fill", RdWebServerCmdDef::CMD_CALLBACK, &lightwallFill);
Bobty 4:b521815f2657 99 webServer.addCommand("showleds", RdWebServerCmdDef::CMD_CALLBACK, &lightwallShowLeds);
Bobty 2:99eb4c6e9ea4 100
Bobty 2:99eb4c6e9ea4 101 // Start the server
Bobty 1:362331cec9b7 102 webServer.init(WEBPORT, &led4, baseWebFolder);
Bobty 1:362331cec9b7 103 webServer.run();
Bobty 0:887096209439 104 }
Bobty 0:887096209439 105
Bobty 2:99eb4c6e9ea4 106 void getSystemConfig()
Bobty 2:99eb4c6e9ea4 107 {
Bobty 2:99eb4c6e9ea4 108 printf("LightWall - Configured for ");
Bobty 2:99eb4c6e9ea4 109 // Check for a config file on the local file system
Bobty 2:99eb4c6e9ea4 110 LocalFileSystem local("local");
Bobty 2:99eb4c6e9ea4 111 FILE* fp = fopen("/local/lights.txt", "r");
Bobty 2:99eb4c6e9ea4 112 if (fp != NULL)
Bobty 2:99eb4c6e9ea4 113 {
Bobty 2:99eb4c6e9ea4 114 char buf[201];
Bobty 2:99eb4c6e9ea4 115 buf[sizeof(buf)-1] = 0;
Bobty 2:99eb4c6e9ea4 116 int nread = fread(buf, 1, sizeof(buf), fp);
Bobty 2:99eb4c6e9ea4 117 if (nread > 0 && nread <= sizeof(buf))
Bobty 2:99eb4c6e9ea4 118 {
Bobty 2:99eb4c6e9ea4 119 buf[nread] = 0;
Bobty 2:99eb4c6e9ea4 120 // Read config details from the file
Bobty 2:99eb4c6e9ea4 121 sscanf(buf, "%s %d %d", systemName, &systemNumLEDS, &systemLEDSSplitPoint);
Bobty 2:99eb4c6e9ea4 122 }
Bobty 2:99eb4c6e9ea4 123 fclose(fp);
Bobty 2:99eb4c6e9ea4 124 printf("%s (%d LEDs, Split at %d)", systemName, systemNumLEDS, systemLEDSSplitPoint);
Bobty 2:99eb4c6e9ea4 125 printf("\r\n");
Bobty 2:99eb4c6e9ea4 126 }
Bobty 2:99eb4c6e9ea4 127 }
Bobty 2:99eb4c6e9ea4 128
Bobty 1:362331cec9b7 129 int main()
Bobty 0:887096209439 130 {
Bobty 1:362331cec9b7 131 // Init
Bobty 1:362331cec9b7 132 pc.baud(115200);
Bobty 1:362331cec9b7 133 pc.printf("Light Wall - Rob Dobson 2015\r\n");
Bobty 2:99eb4c6e9ea4 134
Bobty 2:99eb4c6e9ea4 135 // Get the configuration of the system
Bobty 2:99eb4c6e9ea4 136 getSystemConfig();
Bobty 2:99eb4c6e9ea4 137
Bobty 2:99eb4c6e9ea4 138 // Drawing manager controls the LEDs
Bobty 4:b521815f2657 139 drawingManager.Init(systemNumLEDS, systemLEDSSplitPoint);
Bobty 1:362331cec9b7 140
Bobty 1:362331cec9b7 141 // Setup ethernet interface
Bobty 1:362331cec9b7 142 char macAddr[6];
Bobty 1:362331cec9b7 143 mbed_mac_address(macAddr);
Bobty 1:362331cec9b7 144 pc.printf("Ethernet MAC address: %02x:%02x:%02x:%02x:%02x:%02x\r\n", macAddr[0], macAddr[1], macAddr[2], macAddr[3], macAddr[4], macAddr[5]);
Bobty 1:362331cec9b7 145 pc.printf("Connecting to ethernet ...\r\n");
Bobty 3:e5ea80fae61d 146
Bobty 3:e5ea80fae61d 147 // Init ethernet
Bobty 1:362331cec9b7 148 EthernetInterface::init();
Bobty 1:362331cec9b7 149
Bobty 3:e5ea80fae61d 150 // Using code described here https://developer.mbed.org/questions/1602/How-to-set-the-TCPIP-stack-s-hostname-pr/
Bobty 3:e5ea80fae61d 151 // to setName on the ethernet interface
Bobty 3:e5ea80fae61d 152 EthernetInterface::setName(systemName);
Bobty 0:887096209439 153
Bobty 3:e5ea80fae61d 154 // Connect ethernet
Bobty 3:e5ea80fae61d 155 EthernetInterface::connect();
Bobty 3:e5ea80fae61d 156 pc.printf("IP Address: %s HostName %s\r\n", EthernetInterface::getIPAddress(), EthernetInterface::getName());
Bobty 3:e5ea80fae61d 157
Bobty 3:e5ea80fae61d 158 // Web Server used to run in a thread - but I've found this slows performance a lot as described here:
Bobty 3:e5ea80fae61d 159 // http://robdobson.com/2015/08/a-reliable-mbed-webserver/
Bobty 3:e5ea80fae61d 160 // Fortunately it doesn't matter as the LED code is all interrupt driven
Bobty 3:e5ea80fae61d 161 // This is the previous code...
Bobty 4:b521815f2657 162 // Thread httpServer(&http_server, NULL, osPriorityNormal, (DEFAULT_STACK_SIZE * 3));
Bobty 4:b521815f2657 163 http_server("");
Bobty 3:e5ea80fae61d 164
Bobty 3:e5ea80fae61d 165 // Forever - actually it won't even get here as the server has a forever loop in it too
Bobty 1:362331cec9b7 166 while(true)
Bobty 1:362331cec9b7 167 {
Bobty 1:362331cec9b7 168 }
Bobty 0:887096209439 169 }