I was working on a Web Scada based on Beaglebone. Here is my first test. It’s really easy to create a web app using Cloud9 and Node.Js.
Here is a short demo video. In the future I’ll publish more details.
Here is the code to start a server
var bb = require('./bonescript');
setup = function() {
var server = new bb.Server(82, "myserver");
server.begin();
};
bb.run();
The folder myserver contains all js and html resources.
bonescript.js is a library provided by default. You can implement your using node.js and websockets.
If you want more information check these links (there are also links about Texas Instruments Linux distro):
- Web Matrix: http://processors.wiki.ti.com/index.php/Matrix_Users_Guide
- Sitara download: http://software-dl.ti.com/dsps/dsps_public_sw/am_bu/sdk/AM335xSDK/latest/index_FDS.html
- HW: http://beagleboard.org/static/beaglebone/a3/Docs/Hardware/BONE_SRM.pdf
- Home BB: http://beagleboard.org/static/beaglebone/latest/README.htm
- Change the IP on BB Amstrong:
http://www.gigamegablog.com/2012/01/29/beaglebone-linux-101-configuring-angstrom-linux/ - Linaro distribution: http://releases.linaro.org/12.03/android/leb-imx53/
- Quick start: http://blog.makezine.com/2012/03/14/how-to-get-started-with-the-beaglebone/
- Serial programming: http://www.jpeterson.com/projects/project-weblightswitch/
- Led on/off: http://www.gigamegablog.com/2012/01/05/beaglebone-coding-101-blinking-an-led/
