-
-
Notifications
You must be signed in to change notification settings - Fork 190
New issue
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
Map test #2240
Map test #2240
Conversation
Offer the option to disable physics on the network map
Additonal logging - toZigbee empty or undefined
fix bug
Bugfix
keycheck
special logging
Extra logging new method of selecting converter
bugfix
bugfix
bump converters
bump converters
for (const c of mappedModel.toZigbee) { | ||
|
||
if (!c.hasOwnProperty('convertSet')) continue; | ||
this.log.debug(`Type of toZigbee is '${typeof c}', Contains key ${(c.hasOwnProperty('key')?JSON.stringify(c.key):'false ')}`) |
Check notice
Code scanning / CodeQL
Semicolon insertion Note
the enclosing function
if (!c.hasOwnProperty('key') && c.hasOwnProperty('convertSet') && converter === undefined) | ||
{ | ||
converter = c; | ||
this.log.debug('setting converter to keyless converter') |
Check notice
Code scanning / CodeQL
Semicolon insertion Note
the enclosing function
} | ||
if (c.key.includes(stateDesc.prop) || c.key.includes(stateDesc.setattr) || c.key.includes(stateDesc.id)) | ||
{ | ||
this.log.debug(`${(converter===undefined?'Setting':'Overriding')}' converter to converter with key(s)'${JSON.stringify(c.key)}}`) |
Check notice
Code scanning / CodeQL
Semicolon insertion Note
No description provided.