Driveweb Interface
With yarn:
yarn add @a1motion/driveweb
or with npm:
npm i -S @a1motion/drivewebBasic Example
constdriveweb=require('driveweb');// Create an instance by passing the device's ip.constsmarty=driveweb('192.168.51.2');// Get a paramter by passing its ids or an array of ids:constspeed=awaitsmarty.getParameter(5026);// Set an parameter:constnewSpeed=awaitsmarty.setParameter(5026,100);