UNPKG

dynamixel

Version:

Node.js library for controlling DYNAMIXEL servo motors via U2D2 interface with Protocol 2.0 support

15 lines (12 loc) 338 B
/** * DYNAMIXEL Layer Index (CommonJS) * Exports all DYNAMIXEL protocol, device, and constant definitions */ const { Protocol2 } = require('./Protocol2.js'); const { DynamixelDevice } = require('./DynamixelDevice.js'); const constants = require('./constants.js'); module.exports = { Protocol2, DynamixelDevice, ...constants };