From 7f98cf42c6dd5e1af1a69980afe1d55701aa8c37 Mon Sep 17 00:00:00 2001 From: Neeraj Baid Date: Tue, 14 Feb 2023 00:31:25 +0900 Subject: [PATCH] Add some noisy logging for now. --- lib/accessory-light.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/accessory-light.js b/lib/accessory-light.js index 8de9c63..738e9a6 100644 --- a/lib/accessory-light.js +++ b/lib/accessory-light.js @@ -2,8 +2,8 @@ module.exports = async (hap, accessory, el, address, eoj) => { const service = accessory.getService(hap.Service.Lightbulb) || accessory.addService(hap.Service.Lightbulb) const propertyValue = (await el.getPropertyValue(address, eoj, 0x80)) -// console.log("Log1") -// console.log(propertyValue.message) + console.log("Log1") + console.log(propertyValue.message.data) let {status} = propertyValue.message.data service.updateCharacteristic(hap.Characteristic.On, status)