UNPKG

wifli

Version:

Simple API for WiFli programmable helicopters. Nodecopter for the common (read: cheap) hacker.

14 lines (10 loc) 262 B
'use strict'; var WiFli = require('../index'); var kontroller = new WiFli(); kontroller.connect(function () { kontroller.sendCommand({rotorSpeed : 16, pitch : 8}); setTimeout(function () { kontroller.sendReset(); kontroller.end(); }, 1000); });