Go to file
casperlamboo 2b7cedfcf6 removed chaining in sub api's
made no sense to be able to chain sub api’s
2015-07-17 16:02:27 +02:00
example removed chaining in sub api's 2015-07-17 16:02:27 +02:00
src removed chaining in sub api's 2015-07-17 16:02:27 +02:00
.gitignore added gitignore 2015-07-15 15:49:46 +02:00
README.md Update README.md 2015-07-15 15:32:01 +02:00
config.js added config for local dependencies 2015-07-15 17:11:14 +02:00
package.json removed dependencies 2015-07-16 16:08:31 +02:00

README.md

Doodle3D-API

Doodle3D API for communication with the Doodle3D WiFi-Box

import Doodle3DAPI from 'doodle3dapi';

var localIP = "192.168.5.1";
var doodle3DAPI = new Doodle3DAPI(localIP);
doodle3DAPI.onconnect = function () {

};
doodle3DAPI.ondisconnect = function () {

};
doodle3DAPI.onupdate = function (data) {

};
doodle3DAPI.startUpdateLoop();