Go to file
casperlamboo 6af01a0f27 removed jquery and installed fetch
solves https://github.com/Doodle3D/Doodle3D-API/issues/1
2015-07-23 19:12:50 +02:00
example removed jquery and installed fetch 2015-07-23 19:12:50 +02:00
src removed jquery and installed fetch 2015-07-23 19:12:50 +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 removed jquery and installed fetch 2015-07-23 19:12:50 +02:00
package.json removed jquery and installed fetch 2015-07-23 19:12:50 +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();