Merge branch 'master' of github.com:KevinMidboe/fanController

Conflicts:
	index.html
	public/index.html
This commit is contained in:
2017-02-19 10:38:05 +01:00
300 changed files with 56 additions and 47285 deletions

6
v0.1/server.js Executable file
View File

@@ -0,0 +1,6 @@
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(8124, "10.0.0.70");
console.log('Server running at http://10.0.0.70:8124/');