UNPKG

262 BJavaScriptView Raw
1'use strict';
2
3var WiFli = require('../index');
4
5var kontroller = new WiFli();
6kontroller.connect(function () {
7 kontroller.sendCommand({rotorSpeed : 16, pitch : 8});
8
9 setTimeout(function () {
10 kontroller.sendReset();
11 kontroller.end();
12 }, 1000);
13});