tuyapi 5.1.x and protocol 3.3

Initial update to work with tuyapi 5.1.x and support for Tuya protocol ver 3.3 via device discovery.
This commit is contained in:
tsightler
2019-06-18 22:32:18 -04:00
parent 825b9f97ce
commit 3b72a000c8
4 changed files with 80 additions and 71 deletions

View File

@@ -15,7 +15,8 @@ const debugColor = require('debug')('TuyAPI:device:color');
*/
// Helpers
const Parser = require('tuyapi/lib/message-parser');
const MessageParser = require('tuyapi/lib/message-parser').MessageParser;
const Parser = new MessageParser()
/**
* Extends default TuyAPI-Class to add some more error handlers
@@ -318,4 +319,4 @@ var TuyaDevice = (function () {
return TuyaDevice;
}());
module.exports = TuyaDevice;
module.exports = TuyaDevice;