josejuansanchez / protocoder-mvd

protocoder-mvd

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Protocoder

Build Status

Protocoder is a self-contained coding environment + framework in Javascript for quick prototyping on Android devices.

Just install the app in your Android device and access the web IDE from your computer using the minicloud created in your phone. Code in javascript using the protocoder framework. No needs to write dozends of lines to access sensors or write an UI, simple to use, fast to code.

//how to get sensor data
sensors.accelerometer.onChange(function(x, y, z)) { 
	console.log(x + " " + " " + y + " " + z); 
}

//send and sms
android.sendSMS(number, "text");

//play a video
ui.addVideoView("fileName", 0, 0, 500, 200);

It uses a webserver and a websockets server inside the project to do some of the magic.

It has support of most android hardware functionality, networking using OSC and websockets, audio synthesis and processing using Pure Data though libPd, OSMmaps, IOIO support and muuuuuuuch more.

How to compile

Clone the project, import it in Android Studio, make sure the API version you are using to compile is 21 or greater.

About

protocoder-mvd

License:GNU Lesser General Public License v3.0


Languages

Language:Java 68.7%Language:JavaScript 24.5%Language:CSS 4.2%Language:HTML 2.1%Language:Pure Data 0.4%Language:Shell 0.0%Language:Arduino 0.0%Language:PHP 0.0%