Skip to content

Commit 3406628

Browse files
committed
Update usage example, fix style error
1 parent b92f73c commit 3406628

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Currently only supports smart plugs, but it should be fairly trivial to add othe
1515
id: 'xxxxxxxxxxxxxxxxxxxx',
1616
key: 'xxxxxxxxxxxxxxxx'});
1717

18+
tuya.resolveIds().then(() => {
1819
tuya.get().then(status => {
1920
console.log('Status: ' + status);
2021

@@ -27,6 +28,7 @@ Currently only supports smart plugs, but it should be fairly trivial to add othe
2728
});
2829
});
2930
});
31+
});
3032

3133

3234
This should report the current status, set the device to the opposite of what it currently is, then report the changed status.

index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ TuyaDevice.prototype.get = function (options) {
164164
} else {
165165
resolve(data.dps['1']);
166166
}
167-
}).catch(error => {
168-
reject(error);
167+
}).catch(err => {
168+
reject(err);
169169
});
170170
});
171171
};
@@ -271,7 +271,7 @@ TuyaDevice.prototype._send = function (ip, buffer) {
271271
resolve(data);
272272
});
273273
client.on('error', error => {
274-
error.message = "Error communicating with device. Make sure nothing else is trying to control it or connected to it."
274+
error.message = 'Error communicating with device. Make sure nothing else is trying to control it or connected to it.';
275275
reject(error);
276276
});
277277
});

0 commit comments

Comments
 (0)