Beaglebone and ExtJs Web App

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):

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s