Created
July 29, 2013 14:47
-
-
Save mrichardson23/6104832 to your computer and use it in GitHub Desktop.
Node http server and BoneScript's analogRead
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/node | |
// Load the http module to create an http server. | |
var http = require('http'); | |
var b = require('bonescript'); | |
var inputPin = "P9_33"; | |
// Configure our HTTP server to respond to requests | |
// with the value of the analog input as a percentage | |
// of 1.8v. | |
var server = http.createServer(function (request, response) { | |
value = Math.round(b.analogRead(inputPin) * 100); | |
response.writeHead(200, {"Content-Type": "text/plain"}); | |
response.end("The value of the pot is: " + value + "%\n"); | |
}); | |
// Listen on port 8000, IP defaults to 127.0.0.1 | |
server.listen(8000); | |
// Put a friendly message on the terminal | |
console.log("Server running at http://127.0.0.1:8000/"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment