X10 Server - IOT device to leverage a collection of old X10 devices for home automation and lighting control.

Dependencies:   IniManager mbed HTTPClient SWUpdate mbed-rtos Watchdog X10 SW_HTTPServer SW_String EthernetInterface TimeInterface SSDP

X10 Server

See the X10 Server Nodebook page

Committer:
WiredHome
Date:
Tue Jul 03 02:10:23 2018 +0000
Revision:
0:de1dfa2ab813
Child:
7:16129d213e6a
An example program demonstrating the SSDP-based discovery and a companion Web Server to interact with the mbed device. Scan the network (e.g. in Windows Explorer) to identify the node. Click to open its web page to interact with it.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
WiredHome 0:de1dfa2ab813 1
WiredHome 0:de1dfa2ab813 2 #ifndef WEBPAGES_H
WiredHome 0:de1dfa2ab813 3 #define WEBPAGES_H
WiredHome 0:de1dfa2ab813 4
WiredHome 0:de1dfa2ab813 5 #include "SW_HTTPServer.h"
WiredHome 0:de1dfa2ab813 6
WiredHome 0:de1dfa2ab813 7
WiredHome 0:de1dfa2ab813 8 HTTPServer::CallBackResults Setup_xml(HTTPServer *svr, HTTPServer::CallBackType type, char * path,
WiredHome 0:de1dfa2ab813 9 const HTTPServer::namevalue *queryParams, int queryParamCount);
WiredHome 0:de1dfa2ab813 10
WiredHome 0:de1dfa2ab813 11 HTTPServer::CallBackResults RootPage(HTTPServer *svr, HTTPServer::CallBackType type, char * path,
WiredHome 0:de1dfa2ab813 12 const HTTPServer::namevalue *queryParams, int queryParamCount);
WiredHome 0:de1dfa2ab813 13
WiredHome 0:de1dfa2ab813 14 #endif // WEBPAGES_H