0
0
mirror of https://github.com/Doodle3D/Doodle3D-API synced 2024-11-05 04:33:24 +01:00
Go to file
2015-07-23 16:12:11 +02:00
example updated paths for local imports 2015-07-23 16:12:11 +02:00
src updated paths for local imports 2015-07-23 16:12:11 +02:00
.gitignore added gitignore 2015-07-15 15:49:46 +02:00
config.js updated paths for local imports 2015-07-23 16:12:11 +02:00
package.json updated paths for local imports 2015-07-23 16:12:11 +02:00
README.md Update README.md 2015-07-15 15:32:01 +02:00

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();