Let`s face the truth, "The Internet of Things" (or IoT like the all the cool cats say) isn't more than a fancy buzzword. Interestingly though, it is used by two different groups of people, one wants to "shove big data into the cloud" and the other group builds DIY software & hardware to control their coffee machine using a Tessel backed up by an Raspberry PI.
If we dive deeper into this topic, looking for a common ground both groups build upon, we see the same questions bubbling up: Is my battery powered motion detector really connected to the internet? If all these devices belong to the category "Internet of Things", why do I need a vendor specific access point to control them? Does my cloudy big data lightbulb producer know when I turn on the lights? And very important: Why doesn't this "Internet of Things" work in my browser? Do I really need 20 iPhone apps to turn stuff on and off?
On the meta level, all these questions could be answered with: "open source"! And that´s what we´re going to do, we reverse engineer one of the most used "closed source consumer electronics homeautomation protocols" (say that 5 times in a row) and build a JavaScript based open source module for it. Using that module we´re then able to control the privacy of our data (because now we truly own it), combine these former vendor locked in devices with DIY components (to build the use cases we need, not the ones the industry wants us to), control that devices from our own browser app (our goodbye to the world of "IPhone Apps of Things") and as a byproduct explain why JavaScript should be the language of choice for this "IoT" thingy (and of course, have some fun time hacking on hardware).
I agree, if you really go into detail, this could be expanded to fill a whole day.
The ideas is to give a rough & short overview of the current state of things;
This is more of a summary. Why did I code that protocol adapter in JavaScript. What possibilities gives that to me (In terms of reusing the code cross plattform/cross app/cross type - Smartphone App, Serverside, Desktop App, Browser "App" -)
It basically allows me even to decide dynamically where to evaluate the code. These exampels are aimed to show what the future could look like. Modern Browsers can deal well with binary data (Node, as you mentioned, can do too). Using Chrome & Firefox, I can establish a P2P binary socket connection & parse that data in the browser if I want to - see browser-buffer or binary.js as examples of existing tools that allow us to do exactly that.
Each of this topics has a complexity of its own, and I´m planning to give hints on further readings etc. if someone is interested to dive deeper into a specific topic. But overall, 35 to 45 minutes should be enough to give people an idea on what is really the current state of "The Internet of Things" and why nearly every vendor that claims to do "IoT" stuff makes it worse even more.