We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var MikroNode = require('mikronode'); var device = new MikroNode('192.168.43.182'); device.setDebug(MikroNode.DEBUG); device.connect('admin', 'admin').then(function (conn) { conn.closeOnDone(true); let chan = conn.openChannel('1') //chan.sync(true); chan.sync(true) chan.write('/tool/user/user/add',{ 'customer':'admin', 'username':'user', 'password':'user' }) chan.write('/tool/user/user/print') });
will not complete it gets stuck creating channel 1
but without it it works
var MikroNode = require('mikronode'); var device = new MikroNode('192.168.43.182'); device.setDebug(MikroNode.DEBUG); device.connect('admin', 'admin').then(function (conn) { conn.closeOnDone(true); let chan = conn.openChannel('1') //chan.sync(true) chan.write('/tool/user/user/add',{ 'customer':'admin', 'username':'user', 'password':'user' }) chan.write('/tool/user/user/print') });
The text was updated successfully, but these errors were encountered:
Published version 2.1.0
Sorry, something went wrong.
No branches or pull requests
will not complete it gets stuck creating channel 1
but without it it works
The text was updated successfully, but these errors were encountered: