@a1motion/driveweb 中文文档教程

发布于 5年前 浏览 22 项目主页 更新于 3年前

driveweb

的Driveweb 接口

Install

使用 yarn

yarn add @a1motion/driveweb

:或使用 npm

npm i -S @a1motion/driveweb

Usage

基本示例

const driveweb = require('driveweb');

// Create an instance by passing the device's ip.
const smarty = driveweb('192.168.51.2');

// Get a paramter by passing its ids or an array of ids:
const speed = await smarty.getParameter(5026);

// Set an parameter:
const newSpeed = await smarty.setParameter(5026, 100);

driveweb

Driveweb Interface

Install

With yarn:

yarn add @a1motion/driveweb

or with npm:

npm i -S @a1motion/driveweb

Usage

Basic Example

const driveweb = require('driveweb');

// Create an instance by passing the device's ip.
const smarty = driveweb('192.168.51.2');

// Get a paramter by passing its ids or an array of ids:
const speed = await smarty.getParameter(5026);

// Set an parameter:
const newSpeed = await smarty.setParameter(5026, 100);
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文