IoT

I wanted to learn what all Node.js could do so I made this small project that toggles LED's from a webpage. Below I've pasted three different blocks of code. The first is a small Arduino sketch, this sketch starts up a serial connection and listens for a string such as "led11:toogle" and then toggles the LED. The serial connection is connected to a laptop with a Node.js server running on Ubuntu. This leads to the next chunk of code. This piece is the Node.js server that could actually be simplified but the concept worked perfectly. The server was simply a pass-through, the server received some string from a client and passed it to the serial port. The last paste is just a snippet for the script that runs on the client. The picture above shows a couple buttons, the buttons are linked to jQuery and sends a toggle command to our server whenever pressed.

...

Arduino

Server

Client