Apollon77 / hap-controller-node

Node.js library to implement a HAP (HomeKit) controller
Mozilla Public License 2.0
54 stars 16 forks source link

Tado getAccessories problem #61

Closed NebzHB closed 2 years ago

NebzHB commented 2 years ago

Hi,

i have a problem with the Tado thermostat.

when i pair, it's ok, i receive the longPairing datas, but once i try to getAccessories nothing happens (i've learned since my last issue, i've used your example with a but more infos) :

here is my script :

const {HttpClient, IPDiscovery} = require('hap-controller');

var pairingData={
    AccessoryPairingID: '37aaaa7373a39643a62663a66393a6262',
    AccessoryLTPK: '2d1559baaaa8d496630a67640b01e9d9c502cd730420ed48cdbb1f6a7676c',
    iOSDevicePairingID: '333261366aaaad373834362d343162332d383639612d333839333835356536316630',
    iOSDeviceLTSK: '452201c408a41faa94296035aaaacea0f91d64b3e5b92e9b20edf6c0e00d21c90622b0cfee8a324eb1001d2e74342ec15563cd2e71adf8cb2ecac1a45427c',
    iOSDeviceLTPK: '1c90622b0cfaaaaaa342ec15563cd2e71adf8cb2ecac1a45427c'
};

const discovery = new IPDiscovery();

discovery.on('serviceUp', (service) => {
  if(service.address == "192.168.1.73") {
    console.log('Found device! ',service.id,service.address);

    const client = new HttpClient(service.id, service.address, service.port, pairingData);

    client
        .getAccessories()
        .then((acc) => {
            console.log("accessory:",acc);
        })
        .catch((e) => console.error("error:",e));
  }
});
discovery.start();

and the result is :

node --trace-warnings hk.js
Found device!  7a:77:9d:aa:f9:bb 192.168.1.73

and that's all... no "accessory" no "error", just nothing happens... any other way to enable full debug than --trace-warnings ?

Apollon77 commented 2 years ago

Can you provide me with a "enhanced" debug log of latest version?

Apollon77 commented 2 years ago

(and also for "without persistent connection log would be interesting)

NebzHB commented 2 years ago

here is the "without persistent connection log" (sorry not translated) :


[10-05-2022 16:09:33][INFO] : Démarrage démon hkControl...
[10-05-2022 16:09:33][DEBUG] : urlJeedom = http://192.168.1.53/core/api/jeeApi.php
[10-05-2022 16:09:33][DEBUG] : apiKey = harQHSAb5bRuth56KXeeLu4Bh4AqSLZf
[10-05-2022 16:09:33][DEBUG] : serverPort = 55073
[10-05-2022 16:09:33][DEBUG] : logLevel = debug
[10-05-2022 16:09:33][DEBUG] : pairingFile = /var/www/html/plugins/hkControl/data/pairings.json
[10-05-2022 16:09:33][DEBUG] : jeedom42 = 1
[10-05-2022 16:09:33][DEBUG] : pairings = {"AE:44:A6:10:F4:A4":{"name":"Prise Control","pin":"433-61-650","address":"192.168.1.71","port":"5001","type":"2","pairing":{"AccessoryPairingID":"41453a34343a41363a31303a46343a4134","AccessoryLTPK":"22e8a110fe5b30d717e43b2e2dd40b0fe1537b12c74b83aaa46c0ff3112e4f23","iOSDevicePairingID":"35613730393333342d366361352d346230312d386565382d356231353833333630303834","iOSDeviceLTSK":"bd093e16bc64fe44095721ae4632a82eba9019f3fc0070f95ea0159205b418839a3f1da3c6c807dea06a56b05bbae4205c8844f4097b7d2e422caa36365881b3","iOSDeviceLTPK":"9a3f1da3c6c807dea06a56b05bbae4205c8844f4097b7d2e422caa36365881b3"},"accessories":["TOO LONG FOR GITHUB"],"client":null}}
[10-05-2022 16:09:33][INFO] : Démon prêt et à l'écoute !
[10-05-2022 16:09:34][DEBUG] : Bonjour reçu : {"name":"tado Internet Bridge IB3005030144","address":"192.168.1.73","port":80,"c#":5,"ff":1,"id":"1b:dc:8a:61:e7:14","md":"tado Internet Bridge","pv":"1.0","s#":1,"sf":0,"ci":2,"availableToPair":false}
[10-05-2022 16:09:34][DEBUG] : Bonjour reçu : {"name":"tado Internet Bridge IB3005030144","address":"192.168.1.73","port":80,"c#":5,"ff":1,"id":"1b:dc:8a:61:e7:14","md":"tado Internet Bridge","pv":"1.0","s#":1,"sf":0,"ci":2,"availableToPair":false}
[10-05-2022 16:09:34][INFO] : Connexion à l'accessoire tado Internet Bridge IB3005030144(1b:dc:8a:61:e7:14) sur 192.168.1.73:80 avec {"AccessoryPairingID":"31623a64633a38613a36313a65373a3134","AccessoryLTPK":"e0e7ce02273c27ced794e5b9402a8abd7ab2f134301fb759f88ebb8e108ea0b0","iOSDevicePairingID":"61313466666331622d346361342d346166352d396334662d383361363931643265333666","iOSDeviceLTSK":"de761f61b658434e7b1f5ecbca8af1235eebd7305f2f22a185d83c1e68c24c9c8354be6a3f998bba7626b526b57d2a15e4e90c3a9af3b4c669d9a365d6b1ee4c","iOSDeviceLTPK":"8354be6a3f998bba7626b526b57d2a15e4e90c3a9af3b4c669d9a365d6b1ee4c"}
[10-05-2022 16:09:34][DEBUG] : Ajout d'un écouteur d'évenements pour tado Internet Bridge IB3005030144
[10-05-2022 16:09:34][DEBUG] : Analyse de l'accessoire tado Internet Bridge IB3005030144 ...
[10-05-2022 16:09:34][DEBUG] : Récupération en cours de la description de l'accessoire...
2022-05-10T14:09:34.025Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:09:34.027Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:09:34.027Z hap-controller:tlv Add 32 bytes for tag 3: 3dec94128db4f650fd289b0aec929d6e4dee8aea4cb035f04454c1ab8976992d
2022-05-10T14:09:34.027Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 06010103203dec94128db4f650fd289b0aec929d6e4dee8aea4cb035f04454c1ab8976992d (application/pairing+tlv8)
2022-05-10T14:09:34.092Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 140 byte data
2022-05-10T14:09:34.093Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:09:34.093Z hap-controller:tlv Read 32 bytes for tag 3: eaf99ef1518af22f16ed13ce907a88da0ff0925fb1000231417638e968b57f2d
2022-05-10T14:09:34.093Z hap-controller:tlv Read 101 bytes for tag 5: 7bb3db25b1e1fdc689dac949c397239ba99f58ac7d070e1ae52f9da60b3604a9f7c6e1651a2939bf615fb6bc729bf82402e08d1f635d6d70ca072f3f32f57ff2f360126af05968b6ba8df35b5aeed3eb5d984eccd3808e9cb62c2bece2633aa95dea08d58e
2022-05-10T14:09:34.101Z hap-controller:tlv Read 17 bytes for tag 1: 31623a64633a38613a36313a65373a3134
2022-05-10T14:09:34.101Z hap-controller:tlv Read 64 bytes for tag 10: dd9ee19936f4b958ff3380e62df20786bd8fc16b4c4f93738b5e40d505abd2f4393ebc59aef8f27a9b04478afdc318b461de9ff69ddd411972ffed4aaf282608
2022-05-10T14:09:34.103Z hap-controller:tlv Add 36 bytes for tag 1: 61313466666331622d346361342d346166352d396334662d383361363931643265333666
2022-05-10T14:09:34.103Z hap-controller:tlv Add 64 bytes for tag 10: ff6a6933bc0ed1f9d1e44b4b0e8b8378391ab923cad18d5473ea689452d73b96a646704fb7b773a234ec22d8aaae6c5522a871b0693ab9d0ce5bb87e7687bf0a
2022-05-10T14:09:34.104Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:09:34.104Z hap-controller:tlv Add 120 bytes for tag 5: bc7522559f403bf03de1f93b9c7275bb6a7817e0d286f0a47fa6d9ea176f268e4097d1932c5ba1fd72bd6e3d17c8fbfaae6f6606c4935e060586ac39020c746a8238a07aeed44bdf8a5c23301af6831755aa90148a764ceda64bee04e52e13235bdbce9561bf2762e4d7e664adb145924655a0cbfb4641b2
2022-05-10T14:09:34.104Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 0601030578bc7522559f403bf03de1f93b9c7275bb6a7817e0d286f0a47fa6d9ea176f268e4097d1932c5ba1fd72bd6e3d17c8fbfaae6f6606c4935e060586ac39020c746a8238a07aeed44bdf8a5c23301af6831755aa90148a764ceda64bee04e52e13235bdbce9561bf2762e4d7e664adb145924655a0cbfb4641b2 (application/pairing+tlv8)
[10-05-2022 16:09:34][DEBUG] : Bonjour reçu : {"name":"Aqara-Hub-M1S-3774","address":"192.168.1.72","port":49668,"c#":129,"ff":2,"id":"AB:15:76:41:4A:FD","md":"HM1S-G01","pv":"1.1","s#":261,"sf":0,"ci":2,"availableToPair":false}
[10-05-2022 16:09:34][DEBUG] : Bonjour reçu : {"name":"Aqara-Hub-M1S-3774","address":"192.168.1.72","port":49668,"c#":129,"ff":2,"id":"AB:15:76:41:4A:FD","md":"HM1S-G01","pv":"1.1","s#":261,"sf":0,"ci":2,"availableToPair":false}
[10-05-2022 16:09:34][INFO] : Connexion à l'accessoire Aqara-Hub-M1S-3774(AB:15:76:41:4A:FD) sur 192.168.1.72:49668 avec {"AccessoryPairingID":"41423a31353a37363a34313a34413a4644","AccessoryLTPK":"0b9f1522b0357693faebe5e5fa2cd07aff7f34719c0c229044964a723f1509e3","iOSDevicePairingID":"36663033336234322d636166392d346666642d623430392d373866666163326637303939","iOSDeviceLTSK":"697888ddef41e861b07b09e4fda919fc6feb3eb041dc38c1989b4832cd3fff57724c16f70e9d0aee0744952380d1e4c4beed3f1568286cab4521082d51977175","iOSDeviceLTPK":"724c16f70e9d0aee0744952380d1e4c4beed3f1568286cab4521082d51977175"}
[10-05-2022 16:09:34][DEBUG] : Ajout d'un écouteur d'évenements pour Aqara-Hub-M1S-3774
[10-05-2022 16:09:34][DEBUG] : Analyse de l'accessoire Aqara-Hub-M1S-3774 ...
[10-05-2022 16:09:34][DEBUG] : Récupération en cours de la description de l'accessoire...
2022-05-10T14:09:34.109Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:09:34.110Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:09:34.110Z hap-controller:tlv Add 32 bytes for tag 3: 4c136914c521154e49ba7ffbfd6f63435344dba65a256ece803b45308f2a5830
2022-05-10T14:09:34.110Z hap-controller:http-connection 192.168.1.72:49668 POST /pair-verify 06010103204c136914c521154e49ba7ffbfd6f63435344dba65a256ece803b45308f2a5830 (application/pairing+tlv8)
2022-05-10T14:09:34.128Z hap-controller:http-connection 192.168.1.72:49668 Response 200 with 140 byte data
2022-05-10T14:09:34.128Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:09:34.128Z hap-controller:tlv Read 32 bytes for tag 3: c7f42ef153274ec175ac35508e8196ef1f1ca95da43f5cf4bed72623cc56af65
2022-05-10T14:09:34.128Z hap-controller:tlv Read 101 bytes for tag 5: f5d062a7268976da05e007a319f1740613f50981077de85011789634019289acc9e15c5c943dabf441e428ce47072f9aec5de87ec3851e91ffc1b8bcd984488bdbb63c2801d551862b8fd3b2372cc29b7c30c3f4a48cf2718ffabe082b13aec0ca0af67ee3
2022-05-10T14:09:34.130Z hap-controller:tlv Read 17 bytes for tag 1: 41423a31353a37363a34313a34413a4644
2022-05-10T14:09:34.130Z hap-controller:tlv Read 64 bytes for tag 10: b90001b095b6647c7832c3952c9f3b43b56580028e5f88be7189b56b28d5bf5c4108373aae3ae05b29767ef83ec6de93ed61e9e9bb8e02e88b470c1a39f53005
2022-05-10T14:09:34.131Z hap-controller:tlv Add 36 bytes for tag 1: 36663033336234322d636166392d346666642d623430392d373866666163326637303939
2022-05-10T14:09:34.132Z hap-controller:tlv Add 64 bytes for tag 10: 3141b603877cc3dd9370a6afb103710723f16937d7015b471caf416e2ea28a2c04eb451334f63e00b2b89294c84a00ad422ec3ffdd7c8239182976f5c20c5c08
2022-05-10T14:09:34.132Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:09:34.132Z hap-controller:tlv Add 120 bytes for tag 5: 71cf0d1861f0445df815a51476c2ffd716ab63fa08045555f0ff9d8d1930204c9f8174ea33722f7de6f932002aa64c625ec0cfb57b33a76f0972c545b3e5e6aa955c5c912330531ab42a91fd61ff50b3280a6afb5247fd102b0c811918b75d40bc4518f7d1516ef8d03445c922af001999de84a493aa6eb7
2022-05-10T14:09:34.132Z hap-controller:http-connection 192.168.1.72:49668 POST /pair-verify 060103057871cf0d1861f0445df815a51476c2ffd716ab63fa08045555f0ff9d8d1930204c9f8174ea33722f7de6f932002aa64c625ec0cfb57b33a76f0972c545b3e5e6aa955c5c912330531ab42a91fd61ff50b3280a6afb5247fd102b0c811918b75d40bc4518f7d1516ef8d03445c922af001999de84a493aa6eb7 (application/pairing+tlv8)
2022-05-10T14:09:34.141Z hap-controller:http-connection 192.168.1.72:49668 Response 200 with 3 byte data
2022-05-10T14:09:34.142Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:09:34.142Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:09:34.144Z hap-controller:http-client New new connection client initialized
2022-05-10T14:09:34.144Z hap-controller:http-connection 192.168.1.72:49668 GET /accessories
2022-05-10T14:09:34.198Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 3 byte data
2022-05-10T14:09:34.198Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:09:34.199Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:09:34.199Z hap-controller:http-client New new connection client initialized
2022-05-10T14:09:34.200Z hap-controller:http-connection 192.168.1.73:80 GET /accessories
2022-05-10T14:09:34.213Z hap-controller:http-connection 192.168.1.72:49668 Response 200 with 79251 byte data
2022-05-10T14:09:34.219Z hap-controller:http-client Close client connection
addTypeLabels: 4.992ms
[10-05-2022 16:09:34][INFO] : Description de l'accessoire reçue : {"accessories":[{"aid":1,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"HM1S-G01","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Aqara-Hub-M1S-3774","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"54ef44323774","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3.4.0","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"},{"iid":65544,"type":"34AB8811-AC7F-4340-BAC3-FD6A85F9943B","format":"string","value":"5.0;dfeceb3a","perms":["pr","hd"],"ev":false,"typeLabel":"34AB8811-AC7F-4340-BAC3-FD6A85F9943B"},{"iid":65545,"type":"00000220-0000-1000-8000-0026BB765291","format":"data","value":"xDsGOxqDUtY=","perms":["pr"],"ev":false,"maxDataLen":8,"typeLabel":"product-data"}],"typeLabel":"accessory-information"},{"iid":2,"type":"000000A2-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":131074,"type":"00000037-0000-1000-8000-0026BB765291","format":"string","value":"1.1.0","perms":["pr"],"ev":false,"typeLabel":"version"}],"typeLabel":"protocol.information.service"},{"iid":4,"type":"0000022A-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":262145,"type":"0000022B-0000-1000-8000-0026BB765291","format":"bool","value":1,"perms":["pr"],"ev":false,"typeLabel":"current-transport"},{"iid":262146,"type":"0000022C-0000-1000-8000-0026BB765291","format":"uint32","value":9,"perms":["pr"],"ev":false,"minValue":0,"maxValue":15,"minStep":1,"typeLabel":"wifi-capabilities"},{"iid":262147,"type":"0000022D-0000-1000-8000-0026BB765291","format":"tlv8","value":"","perms":["pr","pw","ev","tw","wr"],"ev":false,"typeLabel":"wifi-configuration-control"}],"typeLabel":"wifi-transport"},{"iid":5,"type":"00000239-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327681,"type":"0000023C-0000-1000-8000-0026BB765291","format":"data","value":"","perms":["pr"],"ev":false,"maxDataLen":0,"typeLabel":"ping"}],"typeLabel":"accessory-runtime-information"},{"iid":16,"type":"00000043-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":1048578,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Lightbulb","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":1048579,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":1048580,"type":"00000008-0000-1000-8000-0026BB765291","format":"int","value":100,"perms":["pr","pw","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"brightness"},{"iid":1048581,"type":"00000013-0000-1000-8000-0026BB765291","format":"float","value":277,"perms":["pr","pw","ev"],"ev":false,"unit":"arcdegrees","minValue":0,"maxValue":360,"minStep":1,"typeLabel":"hue"},{"iid":1048582,"type":"0000002F-0000-1000-8000-0026BB765291","format":"float","value":86,"perms":["pr","pw","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"saturation"}],"typeLabel":"lightbulb"},{"iid":17,"type":"0000007E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":1114114,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Security System","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":1114115,"type":"00000066-0000-1000-8000-0026BB765291","format":"uint8","value":3,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":4,"minStep":1,"valid-values":[0,1,2,3,4],"typeLabel":"security-system-state.current"},{"iid":1114116,"type":"00000067-0000-1000-8000-0026BB765291","format":"uint8","value":3,"perms":["pr","pw","ev"],"ev":false,"minValue":0,"maxValue":3,"minStep":1,"valid-values":[0,1,2,3],"typeLabel":"security-system-state.target"},{"iid":1114117,"type":"60CDDE6C-42B6-4C72-9719-AB2740EABE2A","format":"tlv8","value":"","perms":["pr","pw"],"ev":false,"description":"Stay Arm Trigger Devices","typeLabel":"Stay Arm Trigger Devices"},{"iid":1114118,"type":"4AB2460A-41E4-4F05-97C3-CCFDAE1BE324","format":"tlv8","value":"","perms":["pr","pw"],"ev":false,"description":"Alarm Trigger Devices","typeLabel":"Alarm Trigger Devices"},{"iid":1114119,"type":"F8296386-5A30-4AA7-838C-ED0DA9D807DF","format":"tlv8","value":"","perms":["pr","pw"],"ev":false,"description":"Night Arm Trigger Devices","typeLabel":"Night Arm Trigger Devices"}],"typeLabel":"security-system"},{"iid":18,"type":"9715BF53-AB63-4449-8DC7-2785D617390A","primary":false,"hidden":true,"characteristics":[{"iid":1179650,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Gateway","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":1179653,"type":"B1C09E4C-E202-4827-B863-B0F32F727CFF","format":"bool","value":0,"perms":["pr","pw","ev","hd"],"ev":false,"description":"New Accessory Permission","typeLabel":"New Accessory Permission"},{"iid":1179655,"type":"75D19FA9-218B-4943-997E-341E5D1C60CC","format":"string","perms":["pw","hd"],"description":"Remove Accessory","typeLabel":"Remove Accessory"},{"iid":1179656,"type":"7D943F6A-E052-4E96-A176-D17BF00E32CB","format":"int","value":-1,"perms":["pr","ev","hd"],"ev":false,"description":"Firmware Update Status","minValue":-65535,"maxValue":65535,"minStep":1,"typeLabel":"Firmware Update Status"},{"iid":1179657,"type":"A45EFD52-0DB5-4C1A-9727-513FBCD8185F","format":"string","perms":["pw","hd"],"description":"Firmware Update URL","maxLen":256,"typeLabel":"Firmware Update URL"},{"iid":1179658,"type":"40F0124A-579D-40E4-865E-0EF6740EA64B","format":"string","perms":["pw","hd"],"description":"Firmware Update Checksum","typeLabel":"Firmware Update Checksum"},{"iid":1179705,"type":"96BF5F20-2996-4DB6-8D65-0E36314BCB6D","format":"string","value":"3.4.0_0004.0616","perms":["pr","hd"],"ev":false,"description":"Firmware Version","typeLabel":"Firmware Version"},{"iid":1179706,"type":"36B7A28B-3200-4783-A3FB-6714F11B1417","format":"string","value":"lumi.gateway.aeu01","perms":["pr","hd"],"ev":false,"description":"Device Model","typeLabel":"Device Model"},{"iid":1179707,"type":"F5329CB1-A50B-4225-BA9B-331449E7F7A9","format":"uint8","value":1,"perms":["pr","hd"],"ev":false,"description":"Selected IoT Platform","minValue":0,"maxValue":4,"minStep":1,"typeLabel":"Selected IoT Platform"}],"typeLabel":"Gateway"},{"iid":19,"type":"F49132D1-12DF-4119-87D3-A93E8D68531E","primary":false,"hidden":true,"characteristics":[{"iid":1245186,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"AIOT","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":1245187,"type":"25D889CB-7135-4A29-B5B4-C1FFD6D2DD5C","format":"string","value":"","perms":["pr","pw","hd"],"ev":false,"description":"Country Domain","typeLabel":"Country Domain"},{"iid":1245188,"type":"C7EECAA7-91D9-40EB-AD0C-FFDDE3143CB9","format":"string","value":"lumi1.54ef44323774","perms":["pr","hd"],"ev":false,"description":"Lumi Did","typeLabel":"Lumi Did"},{"iid":1245189,"type":"80FA747E-CB45-45A4-B7BE-AA7D9964859E","format":"string","perms":["pw","hd"],"description":"Lumi Bindkey","typeLabel":"Lumi Bindkey"},{"iid":1245190,"type":"C3B8A329-EF0C-4739-B773-E5B7AEA52C71","format":"bool","value":1,"perms":["pr","hd"],"ev":false,"description":"Lumi Bindstate","typeLabel":"Lumi Bindstate"}],"typeLabel":"AIOT"}]},{"aid":34,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AR005","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00048480b3","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"9","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"linked":[6],"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":262148,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000089-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"linked":[6],"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":327684,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":6,"type":"000000CC-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Service Lable","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"000000CD-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":1,"minStep":1,"valid-values":[1],"typeLabel":"service-label-namespace"}],"typeLabel":"service-label"},{"iid":7,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":458754,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":458755,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":458757,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":458756,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":35,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MK001","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d000152d75e","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"10","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":39,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MS005","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Smoke Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0003537b23","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"4","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000087-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Smoke Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000076-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"smoke-detected"},{"iid":262148,"type":"00000077-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-fault"}],"typeLabel":"sensor.smoke"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":40,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MS009","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Light Detection Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"4cf8cdf3c772b56","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"0021","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000084-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Light Detection Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"0000006B-0000-1000-8000-0026BB765291","format":"float","value":8072,"perms":["pr","ev"],"ev":false,"unit":"lux","minValue":0,"maxValue":100000,"minStep":1,"typeLabel":"light-level.current"}],"typeLabel":"sensor.light"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":41,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MP001","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00035506ce","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"92","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","ev"],"ev":false,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]},{"aid":42,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK001","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00023e65c1","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"input-event"},{"iid":262148,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":44,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK027","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Relay controler","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00058dbdae","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"47","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":5,"type":"00000049-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Switch1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":327684,"type":"C257C476-9655-48B2-9425-93DE70BA75B8","format":"uint8","value":0,"perms":["pr","hd"],"ev":false,"description":"switch-index","minValue":0,"maxValue":5,"minStep":1,"typeLabel":"switch-index"}],"typeLabel":"switch"},{"iid":6,"type":"00000049-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Switch2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":1,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":393220,"type":"C257C476-9655-48B2-9425-93DE70BA75B8","format":"uint8","value":1,"perms":["pr","hd"],"ev":false,"description":"switch-index","minValue":0,"maxValue":5,"minStep":1,"typeLabel":"switch-index"}],"typeLabel":"switch"}]},{"aid":47,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MP003","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"4cf8cdf3c77d9a7","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"24","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":1,"perms":["pr","ev"],"ev":false,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]},{"aid":48,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS008","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0001a4b777","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"0000008A-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000011-0000-1000-8000-0026BB765291","format":"float","value":21.6,"perms":["pr","ev"],"ev":false,"unit":"celsius","minValue":-50,"maxValue":100,"minStep":0.1,"typeLabel":"temperature.current"}],"typeLabel":"sensor.temperature"},{"iid":5,"type":"00000082-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Humidity Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000010-0000-1000-8000-0026BB765291","format":"float","value":56,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"relative-humidity.current"}],"typeLabel":"sensor.humidity"},{"iid":6,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":393221,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":393220,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":49,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK010","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0001e83c46","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"2","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":50,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AR005","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0004050622","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"9","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"linked":[6],"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":262148,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000089-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"linked":[6],"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":327684,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":6,"type":"000000CC-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Service Lable","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"000000CD-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":1,"minStep":1,"valid-values":[1],"typeLabel":"service-label-namespace"}],"typeLabel":"service-label"},{"iid":7,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":458754,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":458755,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":458757,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":458756,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":51,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS006","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Contact Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0004a029ca","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000080-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Contact Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"0000006A-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"contact-state"}],"typeLabel":"sensor.contact"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":52,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS007","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Motion Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0003f40aa0","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"5","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000085-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Motion Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000022-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","ev"],"ev":false,"typeLabel":"motion-detected"}],"typeLabel":"sensor.motion"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":53,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS006","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Contact Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0004a04a70","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000080-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Contact Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"0000006A-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"contact-state"}],"typeLabel":"sensor.contact"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":92,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":54,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS009","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Vibration Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0002b61434","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"8","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000085-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Vibration Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000022-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","ev"],"ev":false,"typeLabel":"motion-detected"}],"typeLabel":"sensor.motion"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":88,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":56,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AR005","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00054b1a05","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"9","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"linked":[6],"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":262148,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000089-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"linked":[6],"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":327684,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":6,"type":"000000CC-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Service Lable","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"000000CD-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":1,"minStep":1,"valid-values":[1],"typeLabel":"service-label-namespace"}],"typeLabel":"service-label"},{"iid":7,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":458754,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":458755,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":92,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":458757,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":458756,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":58,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS008","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0001a1f922","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"0000008A-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000011-0000-1000-8000-0026BB765291","format":"float","value":20.8,"perms":["pr","ev"],"ev":false,"unit":"celsius","minValue":-50,"maxValue":100,"minStep":0.1,"typeLabel":"temperature.current"}],"typeLabel":"sensor.temperature"},{"iid":5,"type":"00000082-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Humidity Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000010-0000-1000-8000-0026BB765291","format":"float","value":54,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"relative-humidity.current"}],"typeLabel":"sensor.humidity"},{"iid":6,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":393221,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":393220,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":59,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS008","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0001720080","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"0000008A-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000011-0000-1000-8000-0026BB765291","format":"float","value":21.8,"perms":["pr","ev"],"ev":false,"unit":"celsius","minValue":-50,"maxValue":100,"minStep":0.1,"typeLabel":"temperature.current"}],"typeLabel":"sensor.temperature"},{"iid":5,"type":"00000082-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Humidity Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000010-0000-1000-8000-0026BB765291","format":"float","value":56,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"relative-humidity.current"}],"typeLabel":"sensor.humidity"},{"iid":6,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":393221,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":393220,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":60,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MP003","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"4cf8cdf3c77d9ed","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"24","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":null,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":null,"perms":["pr","ev"],"ev":false,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]},{"aid":61,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS008","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0001a2304a","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"0000008A-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000011-0000-1000-8000-0026BB765291","format":"float","value":20.4,"perms":["pr","ev"],"ev":false,"unit":"celsius","minValue":-50,"maxValue":100,"minStep":0.1,"typeLabel":"temperature.current"}],"typeLabel":"sensor.temperature"},{"iid":5,"type":"00000082-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Humidity Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000010-0000-1000-8000-0026BB765291","format":"float","value":58,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"relative-humidity.current"}],"typeLabel":"sensor.humidity"},{"iid":6,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":393221,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":393220,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":63,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MP001","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d000355aa40","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"92","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","ev"],"ev":false,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]},{"aid":64,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK010","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d000213627c","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"2","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":92,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":65,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK010","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d000424cdd7","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"2","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":66,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS007","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Motion Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00041447ef","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"5","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000085-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Motion Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000022-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","ev"],"ev":false,"typeLabel":"motion-detected"}],"typeLabel":"sensor.motion"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":67,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS008","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0006b27c8b","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"5","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"0000008A-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000011-0000-1000-8000-0026BB765291","format":"float","value":26.3,"perms":["pr","ev"],"ev":false,"unit":"celsius","minValue":-50,"maxValue":100,"minStep":0.1,"typeLabel":"temperature.current"}],"typeLabel":"sensor.temperature"},{"iid":5,"type":"00000082-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Humidity Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000010-0000-1000-8000-0026BB765291","format":"float","value":39,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"relative-humidity.current"}],"typeLabel":"sensor.humidity"},{"iid":6,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":393221,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":393220,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":68,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK027","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Relay controler","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0003cbe60e","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"47","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":5,"type":"00000049-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Switch1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":327684,"type":"C257C476-9655-48B2-9425-93DE70BA75B8","format":"uint8","value":0,"perms":["pr","hd"],"ev":false,"description":"switch-index","minValue":0,"maxValue":5,"minStep":1,"typeLabel":"switch-index"}],"typeLabel":"switch"},{"iid":6,"type":"00000049-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Switch2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":1,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":393220,"type":"C257C476-9655-48B2-9425-93DE70BA75B8","format":"uint8","value":1,"perms":["pr","hd"],"ev":false,"description":"switch-index","minValue":0,"maxValue":5,"minStep":1,"typeLabel":"switch-index"}],"typeLabel":"switch"}]},{"aid":72,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS008","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0001a35b9d","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"0000008A-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000011-0000-1000-8000-0026BB765291","format":"float","value":20.200006,"perms":["pr","ev"],"ev":false,"unit":"celsius","minValue":-50,"maxValue":100,"minStep":0.1,"typeLabel":"temperature.current"}],"typeLabel":"sensor.temperature"},{"iid":5,"type":"00000082-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Humidity Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000010-0000-1000-8000-0026BB765291","format":"float","value":65,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"relative-humidity.current"}],"typeLabel":"sensor.humidity"},{"iid":6,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":84,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":393221,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":393220,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":73,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AL002","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Lightbulb","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0007751504","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"34","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000043-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Lightbulb","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":262148,"type":"00000008-0000-1000-8000-0026BB765291","format":"int","value":49,"perms":["pr","pw","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"brightness"},{"iid":262149,"type":"000000CE-0000-1000-8000-0026BB765291","format":"uint32","value":370,"perms":["pr","pw","ev"],"ev":false,"minValue":153,"maxValue":370,"minStep":1,"typeLabel":"color-temperature"},{"iid":262153,"type":"00000144-0000-1000-8000-0026BB765291","format":"tlv8","value":"AQwBBAQABAACBAEAAAAAAAEMAQQFAAQAAgQCAAAA","perms":["pr"],"ev":false,"typeLabel":"supported-characteristic-value-transition-configuration"},{"iid":262154,"type":"00000143-0000-1000-8000-0026BB765291","format":"tlv8","value":"","perms":["pr","pw","wr"],"ev":false,"typeLabel":"characteristic-value-transition-control"},{"iid":262155,"type":"0000024B-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"typeLabel":"characteristic-value-active-transition-count"}],"typeLabel":"lightbulb"}]},{"aid":74,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AL002","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Lightbulb","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0007751357","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"34","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000043-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Lightbulb","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":262148,"type":"00000008-0000-1000-8000-0026BB765291","format":"int","value":30,"perms":["pr","pw","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"brightness"},{"iid":262149,"type":"000000CE-0000-1000-8000-0026BB765291","format":"uint32","value":370,"perms":["pr","pw","ev"],"ev":false,"minValue":153,"maxValue":370,"minStep":1,"typeLabel":"color-temperature"},{"iid":262153,"type":"00000144-0000-1000-8000-0026BB765291","format":"tlv8","value":"AQwBBAQABAACBAEAAAAAAAEMAQQFAAQAAgQCAAAA","perms":["pr"],"ev":false,"typeLabel":"supported-characteristic-value-transition-configuration"},{"iid":262154,"type":"00000143-0000-1000-8000-0026BB765291","format":"tlv8","value":"","perms":["pr","pw","wr"],"ev":false,"typeLabel":"characteristic-value-transition-control"},{"iid":262155,"type":"0000024B-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"typeLabel":"characteristic-value-active-transition-count"}],"typeLabel":"lightbulb"}]},{"aid":75,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AP007","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"4cf8cdf3c89d59f","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"0041","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":null,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":null,"perms":["pr","ev"],"ev":false,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]},{"aid":76,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS006","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Contact Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0003cebb57","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000080-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Contact Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"0000006A-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"contact-state"}],"typeLabel":"sensor.contact"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":77,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AU002","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Relay controler","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"54ef44100041d7fb","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"0024","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":5,"type":"00000049-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Switch","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":327684,"type":"C257C476-9655-48B2-9425-93DE70BA75B8","format":"uint8","value":0,"perms":["pr","hd"],"ev":false,"description":"switch-index","minValue":0,"maxValue":5,"minStep":1,"typeLabel":"switch-index"}],"typeLabel":"switch"}]},{"aid":78,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AR005","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d000533c736","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"9","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"linked":[6],"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":262148,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000089-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"linked":[6],"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":327684,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":6,"type":"000000CC-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Service Lable","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"000000CD-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":1,"minStep":1,"valid-values":[1],"typeLabel":"service-label-namespace"}],"typeLabel":"service-label"},{"iid":7,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":458754,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":458755,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":458757,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":458756,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":79,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AR009","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"54ef4410002a1f36","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"0021","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"linked":[6],"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":0,"minStep":1,"valid-values":[0],"typeLabel":"input-event"},{"iid":262148,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000089-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"linked":[6],"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":0,"minStep":1,"valid-values":[0],"typeLabel":"input-event"},{"iid":327684,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":6,"type":"000000CC-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Service Lable","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"000000CD-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":1,"minStep":1,"valid-values":[1],"typeLabel":"service-label-namespace"}],"typeLabel":"service-label"},{"iid":7,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":458754,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":458755,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":458757,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":458756,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":80,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK071","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Wall Switch","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"54ef441000368d95","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"1411","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000049-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Switch","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":262148,"type":"C257C476-9655-48B2-9425-93DE70BA75B8","format":"uint8","value":0,"perms":["pr","hd"],"ev":false,"description":"switch-index","minValue":0,"maxValue":5,"minStep":1,"typeLabel":"switch-index"}],"typeLabel":"switch"}]},{"aid":81,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK072","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Wall Switch","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"54ef4410000f5c9c","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"1411","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000049-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Switch1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":262148,"type":"C257C476-9655-48B2-9425-93DE70BA75B8","format":"uint8","value":0,"perms":["pr","hd"],"ev":false,"description":"switch-index","minValue":0,"maxValue":5,"minStep":1,"typeLabel":"switch-index"}],"typeLabel":"switch"},{"iid":5,"type":"00000049-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Switch2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":327684,"type":"C257C476-9655-48B2-9425-93DE70BA75B8","format":"uint8","value":1,"perms":["pr","hd"],"ev":false,"description":"switch-index","minValue":0,"maxValue":5,"minStep":1,"typeLabel":"switch-index"}],"typeLabel":"switch"}]},{"aid":82,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AR009","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"54ef4410002686bc","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"0021","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":6,"type":"000000CC-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Service Lable","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"000000CD-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":1,"minStep":1,"valid-values":[1],"typeLabel":"service-label-namespace"}],"typeLabel":"service-label"},{"iid":7,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":458754,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":458755,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":458757,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":458756,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"},{"iid":9,"type":"00000089-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"linked":[6],"characteristics":[{"iid":589826,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":589827,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":589828,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":10,"type":"00000089-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"linked":[6],"characteristics":[{"iid":655362,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":655363,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":655364,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"}]},{"aid":83,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AL010","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Lightbulb","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"54ef4410003f3cdb","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"0021","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":24,"type":"00000043-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":1572866,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Lightbulb1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":1572867,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":1,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":1572868,"type":"00000008-0000-1000-8000-0026BB765291","format":"int","value":100,"perms":["pr","pw","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"brightness"},{"iid":1572869,"type":"000000CE-0000-1000-8000-0026BB765291","format":"uint32","value":370,"perms":["pr","pw","ev"],"ev":false,"minValue":153,"maxValue":370,"minStep":1,"typeLabel":"color-temperature"},{"iid":1572873,"type":"00000144-0000-1000-8000-0026BB765291","format":"tlv8","value":"AQwBBAQAGAACBAEAAAAAAAEMAQQFABgAAgQCAAAA","perms":["pr"],"ev":false,"typeLabel":"supported-characteristic-value-transition-configuration"},{"iid":1572874,"type":"00000143-0000-1000-8000-0026BB765291","format":"tlv8","value":"","perms":["pr","pw","wr"],"ev":false,"typeLabel":"characteristic-value-transition-control"},{"iid":1572875,"type":"0000024B-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"typeLabel":"characteristic-value-active-transition-count"}],"typeLabel":"lightbulb"},{"iid":25,"type":"00000043-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":1638402,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Lightbulb2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":1638403,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":1,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":1638404,"type":"00000008-0000-1000-8000-0026BB765291","format":"int","value":1,"perms":["pr","pw","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"brightness"},{"iid":1638405,"type":"000000CE-0000-1000-8000-0026BB765291","format":"uint32","value":370,"perms":["pr","pw","ev"],"ev":false,"minValue":153,"maxValue":370,"minStep":1,"typeLabel":"color-temperature"},{"iid":1638406,"type":"00000144-0000-1000-8000-0026BB765291","format":"tlv8","value":"AQwBBAQAGQACBAEAAAAAAAEMAQQFABkAAgQCAAAA","perms":["pr"],"ev":false,"typeLabel":"supported-characteristic-value-transition-configuration"},{"iid":1638407,"type":"00000143-0000-1000-8000-0026BB765291","format":"tlv8","value":"","perms":["pr","pw","wr"],"ev":false,"typeLabel":"characteristic-value-transition-control"},{"iid":1638408,"type":"0000024B-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"typeLabel":"characteristic-value-active-transition-count"}],"typeLabel":"lightbulb"}]},{"aid":84,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS010","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Water Leak Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0005cfec21","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"4","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000083-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Water Leak Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000070-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"leak-detected"},{"iid":262148,"type":"00000077-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-fault"}],"typeLabel":"sensor.leak"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":85,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS006","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Contact Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00025f1485","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000080-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Contact Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"0000006A-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"contact-state"}],"typeLabel":"sensor.contact"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":86,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MP001","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00019c9fe9","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"22","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","ev"],"ev":false,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]},{"aid":87,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MP001","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00019cff06","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"22","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","ev"],"ev":false,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]},{"aid":88,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MP001","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0001f58eb6","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"22","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","ev"],"ev":false,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]},{"aid":89,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK010","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00021366ef","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"2","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":false,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":false,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":false,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":90,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MP003","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"4cf8cdf3c777ce9","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"24","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":null,"perms":["pr","pw","ev"],"ev":false,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":null,"perms":["pr","ev"],"ev":false,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]}]}
[10-05-2022 16:09:34][DEBUG] : Envoi de l'Accessory brut : {"eventType":"getAccessories","id":"AB:15:76:41:4A:FD","refresh":false}
[10-05-2022 16:09:34][DEBUG] : Souscription pour Aqara-Hub-M1S-3774
[10-05-2022 16:09:34][DEBUG] : Souscription en cours à Aqara-Hub-M1S-3774 sur 1.262147,1.1048579,1.1048580,1.1048581,1.1048582,1.1114115,1.1114116,1.1179653,1.1179656,34.262147,34.327683,34.458755,34.458757,34.458756,35.262147,35.327683,35.327685,35.327684,39.262147,39.262148,39.327683,39.327685,39.327684,40.262147,40.327683,40.327685,40.327684,41.262147,41.262148,42.262147,42.327683,42.327685,42.327684,44.327683,44.393219,47.262147,47.262148,48.262147,48.327683,48.393219,48.393221,48.393220,49.262147,49.327683,49.327685,49.327684,50.262147,50.327683,50.458755,50.458757,50.458756,51.262147,51.327683,51.327685,51.327684,52.262147,52.327683,52.327685,52.327684,53.262147,53.327683,53.327685,53.327684,54.262147,54.327683,54.327685,54.327684,56.262147,56.327683,56.458755,56.458757,56.458756,58.262147,58.327683,58.393219,58.393221,58.393220,59.262147,59.327683,59.393219,59.393221,59.393220,60.262147,60.262148,61.262147,61.327683,61.393219,61.393221,61.393220,63.262147,63.262148,64.262147,64.327683,64.327685,64.327684,65.262147,65.327683,65.327685,65.327684,66.262147,66.327683,66.327685,66.327684,67.262147,67.327683,67.393219,67.393221,67.393220,68.327683,68.393219,72.262147,72.327683,72.393219,72.393221,72.393220,73.262147,73.262148,73.262149,73.262155,74.262147,74.262148,74.262149,74.262155,75.262147,75.262148,76.262147,76.327683,76.327685,76.327684,77.327683,78.262147,78.327683,78.458755,78.458757,78.458756,79.262147,79.327683,79.458755,79.458757,79.458756,80.262147,81.262147,81.327683,82.458755,82.458757,82.458756,82.589827,82.655363,83.1572867,83.1572868,83.1572869,83.1572875,83.1638403,83.1638404,83.1638405,83.1638408,84.262147,84.262148,84.327683,84.327685,84.327684,85.262147,85.327683,85.327685,85.327684,86.262147,86.262148,87.262147,87.262148,88.262147,88.262148,89.262147,89.327683,89.327685,89.327684,90.262147,90.262148...
2022-05-10T14:09:34.237Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:09:34.238Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:09:34.238Z hap-controller:tlv Add 32 bytes for tag 3: ff953a754b31c68fe1a187bc7e358f48e369b139c371c152b32a92734d30871a
2022-05-10T14:09:34.238Z hap-controller:http-connection 192.168.1.72:49668 POST /pair-verify 0601010320ff953a754b31c68fe1a187bc7e358f48e369b139c371c152b32a92734d30871a (application/pairing+tlv8)
2022-05-10T14:09:34.256Z hap-controller:http-connection 192.168.1.72:49668 Response 200 with 140 byte data
2022-05-10T14:09:34.256Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:09:34.256Z hap-controller:tlv Read 32 bytes for tag 3: d8f2c455a2cef51f8d55332561dd3d1bd94ba7ef45e9cf6546bd24d959796439
2022-05-10T14:09:34.256Z hap-controller:tlv Read 101 bytes for tag 5: 84d21294faa603631300f54c0dd97b2da45c1023f9d296a3fc53618cf154e12a793d2fc1d86b2087fcacd5fed40c29188ce983ef8aa27c9a0731633bf1a1619c04213d8e3eb0a3b77e1424d76531e728f62b7b0f9fb7f3e2570fa14bf147a5476ca019bc41
2022-05-10T14:09:34.258Z hap-controller:tlv Read 17 bytes for tag 1: 41423a31353a37363a34313a34413a4644
2022-05-10T14:09:34.258Z hap-controller:tlv Read 64 bytes for tag 10: 1bf9584a5abd69617d1b6f9207cbdf36284eccced9aad036b2f345e32e618778372ea598cc3e422248f08c16afa47a73364a4a8fb7ae020736ed8696870b2c05
2022-05-10T14:09:34.259Z hap-controller:tlv Add 36 bytes for tag 1: 36663033336234322d636166392d346666642d623430392d373866666163326637303939
2022-05-10T14:09:34.259Z hap-controller:tlv Add 64 bytes for tag 10: 3a6439ae6edababeb0dc17ebaf2eb20352aee342f0fda5f6767158c85bd6b9585db48f9669ff52ce8f894ff5d08af8abca34d7f234ac5974b50c72b288eb400e
2022-05-10T14:09:34.259Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:09:34.259Z hap-controller:tlv Add 120 bytes for tag 5: bcf43f087344215fff6d5ccd0ab26eac67880e1295d1fc0b8037bfdcb7a059f6c2e8bb43083fd3b6be83de682f9a585f0d421eb40ab3cb847b093697bc65051975f1884617f83f00404956a27134722587898735acd5f831d26870191a2be9e3cd3abb503cbaa2859a612eac5314a6b0e74b098b8c19760d
2022-05-10T14:09:34.259Z hap-controller:http-connection 192.168.1.72:49668 POST /pair-verify 0601030578bcf43f087344215fff6d5ccd0ab26eac67880e1295d1fc0b8037bfdcb7a059f6c2e8bb43083fd3b6be83de682f9a585f0d421eb40ab3cb847b093697bc65051975f1884617f83f00404956a27134722587898735acd5f831d26870191a2be9e3cd3abb503cbaa2859a612eac5314a6b0e74b098b8c19760d (application/pairing+tlv8)
2022-05-10T14:09:34.268Z hap-controller:http-connection 192.168.1.72:49668 Response 200 with 3 byte data
2022-05-10T14:09:34.268Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:09:34.268Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:09:34.271Z hap-controller:http-connection 192.168.1.72:49668 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a312c22696964223a3236323134372c226576223a747275657d2c7b22616964223a312c22696964223a313034383537392c226576223a747275657d2c7b22616964223a312c22696964223a313034383538302c226576223a747275657d2c7b22616964223a312c22696964223a313034383538312c226576223a747275657d2c7b22616964223a312c22696964223a313034383538322c226576223a747275657d2c7b22616964223a312c22696964223a313131343131352c226576223a747275657d2c7b22616964223a312c22696964223a313131343131362c226576223a747275657d2c7b22616964223a312c22696964223a313137393635332c226576223a747275657d2c7b22616964223a312c22696964223a313137393635362c226576223a747275657d2c7b22616964223a33342c22696964223a3236323134372c226576223a747275657d2c7b22616964223a33342c22696964223a3332373638332c226576223a747275657d2c7b22616964223a33342c22696964223a3435383735352c226576223a747275657d2c7b22616964223a33342c22696964223a3435383735372c226576223a747275657d2c7b22616964223a33342c22696964223a3435383735362c226576223a747275657d2c7b22616964223a33352c22696964223a3236323134372c226576223a747275657d2c7b22616964223a33352c22696964223a3332373638332c226576223a747275657d2c7b22616964223a33352c22696964223a3332373638352c226576223a747275657d2c7b22616964223a33352c22696964223a3332373638342c226576223a747275657d2c7b22616964223a33392c22696964223a3236323134372c226576223a747275657d2c7b22616964223a33392c22696964223a3236323134382c226576223a747275657d2c7b22616964223a33392c22696964223a3332373638332c226576223a747275657d2c7b22616964223a33392c22696964223a3332373638352c226576223a747275657d2c7b22616964223a33392c22696964223a3332373638342c226576223a747275657d2c7b22616964223a34302c22696964223a3236323134372c226576223a747275657d2c7b22616964223a34302c22696964223a3332373638332c226576223a747275657d2c7b22616964223a34302c22696964223a3332373638352c226576223a747275657d2c7b22616964223a34302c22696964223a3332373638342c226576223a747275657d2c7b22616964223a34312c22696964223a3236323134372c226576223a747275657d2c7b22616964223a34312c22696964223a3236323134382c226576223a747275657d2c7b22616964223a34322c22696964223a3236323134372c226576223a747275657d2c7b22616964223a34322c22696964223a3332373638332c226576223a747275657d2c7b22616964223a34322c22696964223a3332373638352c226576223a747275657d2c7b22616964223a34322c22696964223a3332373638342c226576223a747275657d2c7b22616964223a34342c22696964223a3332373638332c226576223a747275657d2c7b22616964223a34342c22696964223a3339333231392c226576223a747275657d2c7b22616964223a34372c22696964223a3236323134372c226576223a747275657d2c7b22616964223a34372c22696964223a3236323134382c226576223a747275657d2c7b22616964223a34382c22696964223a3236323134372c226576223a747275657d2c7b22616964223a34382c22696964223a3332373638332c226576223a747275657d2c7b22616964223a34382c22696964223a3339333231392c226576223a747275657d2c7b22616964223a34382c22696964223a3339333232312c226576223a747275657d2c7b22616964223a34382c22696964223a3339333232302c226576223a747275657d2c7b22616964223a34392c22696964223a3236323134372c226576223a747275657d2c7b22616964223a34392c22696964223a3332373638332c226576223a747275657d2c7b22616964223a34392c22696964223a3332373638352c226576223a747275657d2c7b22616964223a34392c22696964223a3332373638342c226576223a747275657d2c7b22616964223a35302c22696964223a3236323134372c226576223a747275657d2c7b22616964223a35302c22696964223a3332373638332c226576223a747275657d2c7b22616964223a35302c22696964223a3435383735352c226576223a747275657d2c7b22616964223a35302c22696964223a3435383735372c226576223a747275657d2c7b22616964223a35302c22696964223a3435383735362c226576223a747275657d2c7b22616964223a35312c22696964223a3236323134372c226576223a747275657d2c7b22616964223a35312c22696964223a3332373638332c226576223a747275657d2c7b22616964223a35312c22696964223a3332373638352c226576223a747275657d2c7b22616964223a35312c22696964223a3332373638342c226576223a747275657d2c7b22616964223a35322c22696964223a3236323134372c226576223a747275657d2c7b22616964223a35322c22696964223a3332373638332c226576223a747275657d2c7b22616964223a35322c22696964223a3332373638352c226576223a747275657d2c7b22616964223a35322c22696964223a3332373638342c226576223a747275657d2c7b22616964223a35332c22696964223a3236323134372c226576223a747275657d2c7b22616964223a35332c22696964223a3332373638332c226576223a747275657d2c7b22616964223a35332c22696964223a3332373638352c226576223a747275657d2c7b22616964223a35332c22696964223a3332373638342c226576223a747275657d2c7b22616964223a35342c22696964223a3236323134372c226576223a747275657d2c7b22616964223a35342c22696964223a3332373638332c226576223a747275657d2c7b22616964223a35342c22696964223a3332373638352c226576223a747275657d2c7b22616964223a35342c22696964223a3332373638342c226576223a747275657d2c7b22616964223a35362c22696964223a3236323134372c226576223a747275657d2c7b22616964223a35362c22696964223a3332373638332c226576223a747275657d2c7b22616964223a35362c22696964223a3435383735352c226576223a747275657d2c7b22616964223a35362c22696964223a3435383735372c226576223a747275657d2c7b22616964223a35362c22696964223a3435383735362c226576223a747275657d2c7b22616964223a35382c22696964223a3236323134372c226576223a747275657d2c7b22616964223a35382c22696964223a3332373638332c226576223a747275657d2c7b22616964223a35382c22696964223a3339333231392c226576223a747275657d2c7b22616964223a35382c22696964223a3339333232312c226576223a747275657d2c7b22616964223a35382c22696964223a3339333232302c226576223a747275657d2c7b22616964223a35392c22696964223a3236323134372c226576223a747275657d2c7b22616964223a35392c22696964223a3332373638332c226576223a747275657d2c7b22616964223a35392c22696964223a3339333231392c226576223a747275657d2c7b22616964223a35392c22696964223a3339333232312c226576223a747275657d2c7b22616964223a35392c22696964223a3339333232302c226576223a747275657d2c7b22616964223a36302c22696964223a3236323134372c226576223a747275657d2c7b22616964223a36302c22696964223a3236323134382c226576223a747275657d2c7b22616964223a36312c22696964223a3236323134372c226576223a747275657d2c7b22616964223a36312c22696964223a3332373638332c226576223a747275657d2c7b22616964223a36312c22696964223a3339333231392c226576223a747275657d2c7b22616964223a36312c22696964223a3339333232312c226576223a747275657d2c7b22616964223a36312c22696964223a3339333232302c226576223a747275657d2c7b22616964223a36332c22696964223a3236323134372c226576223a747275657d2c7b22616964223a36332c22696964223a3236323134382c226576223a747275657d2c7b22616964223a36342c22696964223a3236323134372c226576223a747275657d2c7b22616964223a36342c22696964223a3332373638332c226576223a747275657d2c7b22616964223a36342c22696964223a3332373638352c226576223a747275657d2c7b22616964223a36342c22696964223a3332373638342c226576223a747275657d2c7b22616964223a36352c22696964223a3236323134372c226576223a747275657d2c7b22616964223a36352c22696964223a3332373638332c226576223a747275657d2c7b22616964223a36352c22696964223a3332373638352c226576223a747275657d2c7b22616964223a36352c22696964223a3332373638342c226576223a747275657d2c7b22616964223a36362c22696964223a3236323134372c226576223a747275657d2c7b22616964223a36362c22696964223a3332373638332c226576223a747275657d2c7b22616964223a36362c22696964223a3332373638352c226576223a747275657d2c7b22616964223a36362c22696964223a3332373638342c226576223a747275657d2c7b22616964223a36372c22696964223a3236323134372c226576223a747275657d2c7b22616964223a36372c22696964223a3332373638332c226576223a747275657d2c7b22616964223a36372c22696964223a3339333231392c226576223a747275657d2c7b22616964223a36372c22696964223a3339333232312c226576223a747275657d2c7b22616964223a36372c22696964223a3339333232302c226576223a747275657d2c7b22616964223a36382c22696964223a3332373638332c226576223a747275657d2c7b22616964223a36382c22696964223a3339333231392c226576223a747275657d2c7b22616964223a37322c22696964223a3236323134372c226576223a747275657d2c7b22616964223a37322c22696964223a3332373638332c226576223a747275657d2c7b22616964223a37322c22696964223a3339333231392c226576223a747275657d2c7b22616964223a37322c22696964223a3339333232312c226576223a747275657d2c7b22616964223a37322c22696964223a3339333232302c226576223a747275657d2c7b22616964223a37332c22696964223a3236323134372c226576223a747275657d2c7b22616964223a37332c22696964223a3236323134382c226576223a747275657d2c7b22616964223a37332c22696964223a3236323134392c226576223a747275657d2c7b22616964223a37332c22696964223a3236323135352c226576223a747275657d2c7b22616964223a37342c22696964223a3236323134372c226576223a747275657d2c7b22616964223a37342c22696964223a3236323134382c226576223a747275657d2c7b22616964223a37342c22696964223a3236323134392c226576223a747275657d2c7b22616964223a37342c22696964223a3236323135352c226576223a747275657d2c7b22616964223a37352c22696964223a3236323134372c226576223a747275657d2c7b22616964223a37352c22696964223a3236323134382c226576223a747275657d2c7b22616964223a37362c22696964223a3236323134372c226576223a747275657d2c7b22616964223a37362c22696964223a3332373638332c226576223a747275657d2c7b22616964223a37362c22696964223a3332373638352c226576223a747275657d2c7b22616964223a37362c22696964223a3332373638342c226576223a747275657d2c7b22616964223a37372c22696964223a3332373638332c226576223a747275657d2c7b22616964223a37382c22696964223a3236323134372c226576223a747275657d2c7b22616964223a37382c22696964223a3332373638332c226576223a747275657d2c7b22616964223a37382c22696964223a3435383735352c226576223a747275657d2c7b22616964223a37382c22696964223a3435383735372c226576223a747275657d2c7b22616964223a37382c22696964223a3435383735362c226576223a747275657d2c7b22616964223a37392c22696964223a3236323134372c226576223a747275657d2c7b22616964223a37392c22696964223a3332373638332c226576223a747275657d2c7b22616964223a37392c22696964223a3435383735352c226576223a747275657d2c7b22616964223a37392c22696964223a3435383735372c226576223a747275657d2c7b22616964223a37392c22696964223a3435383735362c226576223a747275657d2c7b22616964223a38302c22696964223a3236323134372c226576223a747275657d2c7b22616964223a38312c22696964223a3236323134372c226576223a747275657d2c7b22616964223a38312c22696964223a3332373638332c226576223a747275657d2c7b22616964223a38322c22696964223a3435383735352c226576223a747275657d2c7b22616964223a38322c22696964223a3435383735372c226576223a747275657d2c7b22616964223a38322c22696964223a3435383735362c226576223a747275657d2c7b22616964223a38322c22696964223a3538393832372c226576223a747275657d2c7b22616964223a38322c22696964223a3635353336332c226576223a747275657d2c7b22616964223a38332c22696964223a313537323836372c226576223a747275657d2c7b22616964223a38332c22696964223a313537323836382c226576223a747275657d2c7b22616964223a38332c22696964223a313537323836392c226576223a747275657d2c7b22616964223a38332c22696964223a313537323837352c226576223a747275657d2c7b22616964223a38332c22696964223a313633383430332c226576223a747275657d2c7b22616964223a38332c22696964223a313633383430342c226576223a747275657d2c7b22616964223a38332c22696964223a313633383430352c226576223a747275657d2c7b22616964223a38332c22696964223a313633383430382c226576223a747275657d2c7b22616964223a38342c22696964223a3236323134372c226576223a747275657d2c7b22616964223a38342c22696964223a3236323134382c226576223a747275657d2c7b22616964223a38342c22696964223a3332373638332c226576223a747275657d2c7b22616964223a38342c22696964223a3332373638352c226576223a747275657d2c7b22616964223a38342c22696964223a3332373638342c226576223a747275657d2c7b22616964223a38352c22696964223a3236323134372c226576223a747275657d2c7b22616964223a38352c22696964223a3332373638332c226576223a747275657d2c7b22616964223a38352c22696964223a3332373638352c226576223a747275657d2c7b22616964223a38352c22696964223a3332373638342c226576223a747275657d2c7b22616964223a38362c22696964223a3236323134372c226576223a747275657d2c7b22616964223a38362c22696964223a3236323134382c226576223a747275657d2c7b22616964223a38372c22696964223a3236323134372c226576223a747275657d2c7b22616964223a38372c22696964223a3236323134382c226576223a747275657d2c7b22616964223a38382c22696964223a3236323134372c226576223a747275657d2c7b22616964223a38382c22696964223a3236323134382c226576223a747275657d2c7b22616964223a38392c22696964223a3236323134372c226576223a747275657d2c7b22616964223a38392c22696964223a3332373638332c226576223a747275657d2c7b22616964223a38392c22696964223a3332373638352c226576223a747275657d2c7b22616964223a38392c22696964223a3332373638342c226576223a747275657d2c7b22616964223a39302c22696964223a3236323134372c226576223a747275657d2c7b22616964223a39302c22696964223a3236323134382c226576223a747275657d5d7d
2022-05-10T14:09:34.279Z hap-controller:http-connection 192.168.1.72:49668 Response 204 with 0 byte data
[10-05-2022 16:09:34][DEBUG] : Souscrit à Aqara-Hub-M1S-3774 sur 1.262147,1.1048579,1.1048580,1.1048581,1.1048582,1.1114115,1.1114116,1.1179653,1.1179656,34.262147,34.327683,34.458755,34.458757,34.458756,35.262147,35.327683,35.327685,35.327684,39.262147,39.262148,39.327683,39.327685,39.327684,40.262147,40.327683,40.327685,40.327684,41.262147,41.262148,42.262147,42.327683,42.327685,42.327684,44.327683,44.393219,47.262147,47.262148,48.262147,48.327683,48.393219,48.393221,48.393220,49.262147,49.327683,49.327685,49.327684,50.262147,50.327683,50.458755,50.458757,50.458756,51.262147,51.327683,51.327685,51.327684,52.262147,52.327683,52.327685,52.327684,53.262147,53.327683,53.327685,53.327684,54.262147,54.327683,54.327685,54.327684,56.262147,56.327683,56.458755,56.458757,56.458756,58.262147,58.327683,58.393219,58.393221,58.393220,59.262147,59.327683,59.393219,59.393221,59.393220,60.262147,60.262148,61.262147,61.327683,61.393219,61.393221,61.393220,63.262147,63.262148,64.262147,64.327683,64.327685,64.327684,65.262147,65.327683,65.327685,65.327684,66.262147,66.327683,66.327685,66.327684,67.262147,67.327683,67.393219,67.393221,67.393220,68.327683,68.393219,72.262147,72.327683,72.393219,72.393221,72.393220,73.262147,73.262148,73.262149,73.262155,74.262147,74.262148,74.262149,74.262155,75.262147,75.262148,76.262147,76.327683,76.327685,76.327684,77.327683,78.262147,78.327683,78.458755,78.458757,78.458756,79.262147,79.327683,79.458755,79.458757,79.458756,80.262147,81.262147,81.327683,82.458755,82.458757,82.458756,82.589827,82.655363,83.1572867,83.1572868,83.1572869,83.1572875,83.1638403,83.1638404,83.1638405,83.1638408,84.262147,84.262148,84.327683,84.327685,84.327684,85.262147,85.327683,85.327685,85.327684,86.262147,86.262148,87.262147,87.262148,88.262147,88.262148,89.262147,89.327683,89.327685,89.327684,90.262147,90.262148 !
[10-05-2022 16:09:34][DEBUG] : Bonjour reçu : {"name":"Prise Control","address":"192.168.1.71","port":5001,"c#":16,"ff":1,"id":"AE:44:A6:10:F4:A4","md":"Bubendorff Gateway\u0000","pv":"1.1","s#":1,"sf":0,"ci":2,"availableToPair":false}
[10-05-2022 16:09:34][DEBUG] : Bonjour reçu : {"name":"Prise Control","address":"192.168.1.71","port":5001,"c#":16,"ff":1,"id":"AE:44:A6:10:F4:A4","md":"Bubendorff Gateway\u0000","pv":"1.1","s#":1,"sf":0,"ci":2,"availableToPair":false}
[10-05-2022 16:09:34][INFO] : Connexion à l'accessoire Prise Control(AE:44:A6:10:F4:A4) sur 192.168.1.71:5001 avec {"AccessoryPairingID":"41453a34343a41363a31303a46343a4134","AccessoryLTPK":"22e8a110fe5b30d717e43b2e2dd40b0fe1537b12c74b83aaa46c0ff3112e4f23","iOSDevicePairingID":"35613730393333342d366361352d346230312d386565382d356231353833333630303834","iOSDeviceLTSK":"bd093e16bc64fe44095721ae4632a82eba9019f3fc0070f95ea0159205b418839a3f1da3c6c807dea06a56b05bbae4205c8844f4097b7d2e422caa36365881b3","iOSDeviceLTPK":"9a3f1da3c6c807dea06a56b05bbae4205c8844f4097b7d2e422caa36365881b3"}
[10-05-2022 16:09:34][DEBUG] : Ajout d'un écouteur d'évenements pour Prise Control
[10-05-2022 16:09:34][DEBUG] : Analyse de l'accessoire Prise Control ...
[10-05-2022 16:09:34][DEBUG] : Récupération en cours de la description de l'accessoire...
2022-05-10T14:09:34.378Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:09:34.379Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:09:34.379Z hap-controller:tlv Add 32 bytes for tag 3: db242eec0fe23304b5e7401613de718b949c376e71daa9bb83697655ec465d52
2022-05-10T14:09:34.379Z hap-controller:http-connection 192.168.1.71:5001 POST /pair-verify 0601010320db242eec0fe23304b5e7401613de718b949c376e71daa9bb83697655ec465d52 (application/pairing+tlv8)
2022-05-10T14:09:34.403Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 7347 byte data
2022-05-10T14:09:34.404Z hap-controller:http-client Close client connection
addTypeLabels: 0.627ms
[10-05-2022 16:09:34][INFO] : Description de l'accessoire reçue : {"accessories":[{"aid":1,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"primary":false,"hidden":false,"characteristics":[{"iid":2,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Internet Bridge IB3005030144","format":"string","typeLabel":"name"},{"iid":3,"type":"00000020-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado","format":"string","typeLabel":"manufacturer"},{"iid":4,"type":"00000030-0000-1000-8000-0026BB765291","perms":["pr"],"value":"IB3005030144","format":"string","typeLabel":"serial-number"},{"iid":5,"type":"00000021-0000-1000-8000-0026BB765291","perms":["pr"],"value":"IB01","format":"string","typeLabel":"model"},{"iid":6,"type":"00000052-0000-1000-8000-0026BB765291","perms":["pr"],"value":"92.1","format":"string","typeLabel":"firmware.revision"},{"iid":7,"type":"00000014-0000-1000-8000-0026BB765291","perms":["pw"],"format":"bool","typeLabel":"identify"}],"typeLabel":"accessory-information"},{"type":"E44673A0-247B-4360-8A76-DB9DA69C0100","iid":8,"primary":false,"hidden":true,"characteristics":[{"iid":9,"type":"E44673A0-247B-4360-8A76-DB9DA69C0101","perms":["pw"],"format":"string","typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0101"}],"typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0100"}]},{"aid":2,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"primary":false,"hidden":false,"characteristics":[{"iid":2,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Smart Thermostat SU2817924608","format":"string","typeLabel":"name"},{"iid":3,"type":"00000020-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado","format":"string","typeLabel":"manufacturer"},{"iid":4,"type":"00000030-0000-1000-8000-0026BB765291","perms":["pr"],"value":"SU2817924608","format":"string","typeLabel":"serial-number"},{"iid":5,"type":"00000021-0000-1000-8000-0026BB765291","perms":["pr"],"value":"ST01","format":"string","typeLabel":"model"},{"iid":6,"type":"00000052-0000-1000-8000-0026BB765291","perms":["pr"],"value":"90.1","format":"string","typeLabel":"firmware.revision"},{"iid":7,"type":"00000014-0000-1000-8000-0026BB765291","perms":["pw"],"format":"bool","typeLabel":"identify"}],"typeLabel":"accessory-information"},{"type":"E44673A0-247B-4360-8A76-DB9DA69C0100","iid":8,"primary":false,"hidden":true,"characteristics":[{"iid":9,"type":"E44673A0-247B-4360-8A76-DB9DA69C0101","perms":["pw"],"format":"string","typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0101"}],"typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0100"},{"type":"0000004A-0000-1000-8000-0026BB765291","iid":10,"primary":true,"hidden":false,"characteristics":[{"iid":11,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Smart Thermostat SU2817924608","format":"string","typeLabel":"name"},{"iid":12,"type":"0000000F-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":0,"maxValue":2,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"heating-cooling.current"},{"iid":13,"type":"00000033-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":1,"maxValue":1,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"heating-cooling.target"},{"iid":14,"type":"00000011-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":20.5,"maxValue":100,"minValue":0,"minStep":0.1,"format":"float","unit":"celsius","typeLabel":"temperature.current"},{"iid":15,"type":"00000035-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":17,"maxValue":25,"minValue":5,"minStep":0.1,"format":"float","unit":"celsius","typeLabel":"temperature.target"},{"iid":16,"type":"00000036-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":0,"maxValue":1,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"temperature.units"},{"iid":17,"type":"00000010-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":64,"maxValue":100,"minValue":0,"minStep":1,"format":"float","unit":"percentage","typeLabel":"relative-humidity.current"}],"typeLabel":"thermostat"}]},{"aid":3,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"primary":false,"hidden":false,"characteristics":[{"iid":2,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Smart Radiator Thermostat VA0494611200","format":"string","typeLabel":"name"},{"iid":3,"type":"00000020-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado","format":"string","typeLabel":"manufacturer"},{"iid":4,"type":"00000030-0000-1000-8000-0026BB765291","perms":["pr"],"value":"VA0494611200","format":"string","typeLabel":"serial-number"},{"iid":5,"type":"00000021-0000-1000-8000-0026BB765291","perms":["pr"],"value":"SRT01","format":"string","typeLabel":"model"},{"iid":6,"type":"00000052-0000-1000-8000-0026BB765291","perms":["pr"],"value":"95.1","format":"string","typeLabel":"firmware.revision"},{"iid":7,"type":"00000014-0000-1000-8000-0026BB765291","perms":["pw"],"format":"bool","typeLabel":"identify"}],"typeLabel":"accessory-information"},{"type":"E44673A0-247B-4360-8A76-DB9DA69C0100","iid":8,"primary":false,"hidden":true,"characteristics":[{"iid":9,"type":"E44673A0-247B-4360-8A76-DB9DA69C0101","perms":["pw"],"format":"string","typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0101"}],"typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0100"},{"type":"0000004A-0000-1000-8000-0026BB765291","iid":10,"primary":true,"hidden":false,"characteristics":[{"iid":11,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Smart Radiator Thermostat VA0494611200","format":"string","typeLabel":"name"},{"iid":12,"type":"0000000F-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":0,"maxValue":2,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"heating-cooling.current"},{"iid":13,"type":"00000033-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":1,"maxValue":1,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"heating-cooling.target"},{"iid":14,"type":"00000011-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":19,"maxValue":100,"minValue":0,"minStep":0.1,"format":"float","unit":"celsius","typeLabel":"temperature.current"},{"iid":15,"type":"00000035-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":17,"maxValue":25,"minValue":5,"minStep":0.1,"format":"float","unit":"celsius","typeLabel":"temperature.target"},{"iid":16,"type":"00000036-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":0,"maxValue":1,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"temperature.units"},{"iid":17,"type":"00000010-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":58,"maxValue":100,"minValue":0,"minStep":1,"format":"float","unit":"percentage","typeLabel":"relative-humidity.current"}],"typeLabel":"thermostat"}]},{"aid":4,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"primary":false,"hidden":false,"characteristics":[{"iid":2,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Smart Radiator Thermostat VA1618619136","format":"string","typeLabel":"name"},{"iid":3,"type":"00000020-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado","format":"string","typeLabel":"manufacturer"},{"iid":4,"type":"00000030-0000-1000-8000-0026BB765291","perms":["pr"],"value":"VA1618619136","format":"string","typeLabel":"serial-number"},{"iid":5,"type":"00000021-0000-1000-8000-0026BB765291","perms":["pr"],"value":"SRT01","format":"string","typeLabel":"model"},{"iid":6,"type":"00000052-0000-1000-8000-0026BB765291","perms":["pr"],"value":"95.1","format":"string","typeLabel":"firmware.revision"},{"iid":7,"type":"00000014-0000-1000-8000-0026BB765291","perms":["pw"],"format":"bool","typeLabel":"identify"}],"typeLabel":"accessory-information"},{"type":"E44673A0-247B-4360-8A76-DB9DA69C0100","iid":8,"primary":false,"hidden":true,"characteristics":[{"iid":9,"type":"E44673A0-247B-4360-8A76-DB9DA69C0101","perms":["pw"],"format":"string","typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0101"}],"typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0100"},{"type":"0000004A-0000-1000-8000-0026BB765291","iid":10,"primary":true,"hidden":false,"characteristics":[{"iid":11,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Smart Radiator Thermostat VA1618619136","format":"string","typeLabel":"name"},{"iid":12,"type":"0000000F-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":0,"maxValue":2,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"heating-cooling.current"},{"iid":13,"type":"00000033-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":1,"maxValue":1,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"heating-cooling.target"},{"iid":14,"type":"00000011-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":20.2,"maxValue":100,"minValue":0,"minStep":0.1,"format":"float","unit":"celsius","typeLabel":"temperature.current"},{"iid":15,"type":"00000035-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":17,"maxValue":25,"minValue":5,"minStep":0.1,"format":"float","unit":"celsius","typeLabel":"temperature.target"},{"iid":16,"type":"00000036-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":0,"maxValue":1,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"temperature.units"},{"iid":17,"type":"00000010-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":55,"maxValue":100,"minValue":0,"minStep":1,"format":"float","unit":"percentage","typeLabel":"relative-humidity.current"}],"typeLabel":"thermostat"}]},{"aid":5,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"primary":false,"hidden":false,"characteristics":[{"iid":2,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Smart Radiator Thermostat VA0746269440","format":"string","typeLabel":"name"},{"iid":3,"type":"00000020-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado","format":"string","typeLabel":"manufacturer"},{"iid":4,"type":"00000030-0000-1000-8000-0026BB765291","perms":["pr"],"value":"VA0746269440","format":"string","typeLabel":"serial-number"},{"iid":5,"type":"00000021-0000-1000-8000-0026BB765291","perms":["pr"],"value":"SRT01","format":"string","typeLabel":"model"},{"iid":6,"type":"00000052-0000-1000-8000-0026BB765291","perms":["pr"],"value":"95.1","format":"string","typeLabel":"firmware.revision"},{"iid":7,"type":"00000014-0000-1000-8000-0026BB765291","perms":["pw"],"format":"bool","typeLabel":"identify"}],"typeLabel":"accessory-information"},{"type":"E44673A0-247B-4360-8A76-DB9DA69C0100","iid":8,"primary":false,"hidden":true,"characteristics":[{"iid":9,"type":"E44673A0-247B-4360-8A76-DB9DA69C0101","perms":["pw"],"format":"string","typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0101"}],"typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0100"},{"type":"0000004A-0000-1000-8000-0026BB765291","iid":10,"primary":true,"hidden":false,"characteristics":[{"iid":11,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Smart Radiator Thermostat VA0746269440","format":"string","typeLabel":"name"},{"iid":12,"type":"0000000F-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":0,"maxValue":2,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"heating-cooling.current"},{"iid":13,"type":"00000033-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":1,"maxValue":1,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"heating-cooling.target"},{"iid":14,"type":"00000011-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":21.7,"maxValue":100,"minValue":0,"minStep":0.1,"format":"float","unit":"celsius","typeLabel":"temperature.current"},{"iid":15,"type":"00000035-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":12,"maxValue":25,"minValue":5,"minStep":0.1,"format":"float","unit":"celsius","typeLabel":"temperature.target"},{"iid":16,"type":"00000036-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":0,"maxValue":1,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"temperature.units"},{"iid":17,"type":"00000010-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":53,"maxValue":100,"minValue":0,"minStep":1,"format":"float","unit":"percentage","typeLabel":"relative-humidity.current"}],"typeLabel":"thermostat"}]}]}
[10-05-2022 16:09:34][DEBUG] : Envoi de l'Accessory brut : {"eventType":"getAccessories","id":"1b:dc:8a:61:e7:14","refresh":false}
[10-05-2022 16:09:34][DEBUG] : Souscription pour tado Internet Bridge IB3005030144
[10-05-2022 16:09:34][DEBUG] : Souscription en cours à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17...
2022-05-10T14:09:34.411Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:09:34.412Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:09:34.412Z hap-controller:tlv Add 32 bytes for tag 3: 531e4c7324059f3f7adf1011314065c355fd356cf724012845e7cbd62a30ed1a
2022-05-10T14:09:34.412Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 0601010320531e4c7324059f3f7adf1011314065c355fd356cf724012845e7cbd62a30ed1a (application/pairing+tlv8)
2022-05-10T14:09:34.504Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 140 byte data
2022-05-10T14:09:34.504Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:09:34.504Z hap-controller:tlv Read 32 bytes for tag 3: 235839e3377337234f25a20ed6916b9c95030c226b451c1743f0b70d7291bf74
2022-05-10T14:09:34.504Z hap-controller:tlv Read 101 bytes for tag 5: 39fd62485c7574fb1d38e50813c8e2d396777343a99292daf20fff4bd31854733e0a713ab70bab993ce9dd50061974812e6570d3d78d9c02528d1462ed4571efb67825a46d134d0a59ed629bcd5b0ef1cb52036217fe54f839923159019a1651ac53f2d383
2022-05-10T14:09:34.506Z hap-controller:tlv Read 17 bytes for tag 1: 31623a64633a38613a36313a65373a3134
2022-05-10T14:09:34.506Z hap-controller:tlv Read 64 bytes for tag 10: b139e4bb57be04b7a3282ec27ef923ee0a21ca7f4f804e1c15d7cce34b6b4aeda87504c4adc1a16ad74a6efbe98ae33764fa57169cbd8bab8dcad00fe1a0ee0c
2022-05-10T14:09:34.508Z hap-controller:tlv Add 36 bytes for tag 1: 61313466666331622d346361342d346166352d396334662d383361363931643265333666
2022-05-10T14:09:34.508Z hap-controller:tlv Add 64 bytes for tag 10: d4deab02a114f26e8a20a4d2bfc0f560fe29f7d8d6e715370ea43df62b9a9b3d2d53572a92da5c9b60de2e3cc4e2c64ec18c2014c6a7cc07e1d1398163d1e602
2022-05-10T14:09:34.508Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:09:34.509Z hap-controller:tlv Add 120 bytes for tag 5: ca5e4ba01460bd39f963e3086c0bf5df0a0874a0418f15e1f243685084a3e4e601fffa02745206e58e189880284ee38d9aad63705b48c4f880c15c72497ec6e7de70b74ecaad55b16007c38d018180930169cc405f37acb998c8d401fcce70ec324d17d0c2201fd8d1ee70e42f8250d6dc214a816f51c644
2022-05-10T14:09:34.509Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 0601030578ca5e4ba01460bd39f963e3086c0bf5df0a0874a0418f15e1f243685084a3e4e601fffa02745206e58e189880284ee38d9aad63705b48c4f880c15c72497ec6e7de70b74ecaad55b16007c38d018180930169cc405f37acb998c8d401fcce70ec324d17d0c2201fd8d1ee70e42f8250d6dc214a816f51c644 (application/pairing+tlv8)
2022-05-10T14:09:34.597Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 3 byte data
2022-05-10T14:09:34.598Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:09:34.598Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:09:34.600Z hap-controller:http-connection 192.168.1.73:80 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a322c22696964223a31322c226576223a747275657d2c7b22616964223a322c22696964223a31332c226576223a747275657d2c7b22616964223a322c22696964223a31342c226576223a747275657d2c7b22616964223a322c22696964223a31352c226576223a747275657d2c7b22616964223a322c22696964223a31362c226576223a747275657d2c7b22616964223a322c22696964223a31372c226576223a747275657d2c7b22616964223a332c22696964223a31322c226576223a747275657d2c7b22616964223a332c22696964223a31332c226576223a747275657d2c7b22616964223a332c22696964223a31342c226576223a747275657d2c7b22616964223a332c22696964223a31352c226576223a747275657d2c7b22616964223a332c22696964223a31362c226576223a747275657d2c7b22616964223a332c22696964223a31372c226576223a747275657d2c7b22616964223a342c22696964223a31322c226576223a747275657d2c7b22616964223a342c22696964223a31332c226576223a747275657d2c7b22616964223a342c22696964223a31342c226576223a747275657d2c7b22616964223a342c22696964223a31352c226576223a747275657d2c7b22616964223a342c22696964223a31362c226576223a747275657d2c7b22616964223a342c22696964223a31372c226576223a747275657d2c7b22616964223a352c22696964223a31322c226576223a747275657d2c7b22616964223a352c22696964223a31332c226576223a747275657d2c7b22616964223a352c22696964223a31342c226576223a747275657d2c7b22616964223a352c22696964223a31352c226576223a747275657d2c7b22616964223a352c22696964223a31362c226576223a747275657d2c7b22616964223a352c22696964223a31372c226576223a747275657d5d7d
2022-05-10T14:09:34.628Z hap-controller:http-connection 192.168.1.73:80 Response 204 with 0 byte data
[10-05-2022 16:09:34][DEBUG] : Souscrit à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17 !
2022-05-10T14:09:35.936Z hap-controller:http-connection 192.168.1.71:5001 Response 200 with 140 byte data
2022-05-10T14:09:35.937Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:09:35.937Z hap-controller:tlv Read 32 bytes for tag 3: 149d8e082dddcae82e93edfd39505499170c0acf909e3ca361c6b3bb5fd70267
2022-05-10T14:09:35.937Z hap-controller:tlv Read 101 bytes for tag 5: e9bedf2fecce59c653a349c91e57b4003e20f018f532119610de18eff3f00aa1ace78b374dfcec4318fe979b92b68612ffd7ecdb07299e66993e201b538b3d58d2b8bfb414441343023a2b0837d43a70bdbd9ad7869b4e7912c9ba00aab2def1f09fca9de4
2022-05-10T14:09:35.939Z hap-controller:tlv Read 17 bytes for tag 1: 41453a34343a41363a31303a46343a4134
2022-05-10T14:09:35.940Z hap-controller:tlv Read 64 bytes for tag 10: eec6ee660225b89f84755c55fd50d8d09efe11b8bef2ac2c56412aff66486dcfdb052eed77e291c1c057b99e59a7040b1f4cd9d0e6c8fac307a3c75ad325c50f
2022-05-10T14:09:35.941Z hap-controller:tlv Add 36 bytes for tag 1: 35613730393333342d366361352d346230312d386565382d356231353833333630303834
2022-05-10T14:09:35.942Z hap-controller:tlv Add 64 bytes for tag 10: 7b89e9e0bc37c10e7fc95647dc151ec3d0d95f8fda1bc48389f74146e885868dd85a18030155e2951497cb9d90ce5389cfea430f8c40dc56275c2213407c7a03
2022-05-10T14:09:35.942Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:09:35.942Z hap-controller:tlv Add 120 bytes for tag 5: a880818bda54d1f849f6e682d33e03e3d14665fb65ec1c617a1cc1ab308d1e2708bf306e694d7871b4ac14b14a3b670fe8ca936b3fb155593bfe333d869bda6517be5cfca64a216469b27a2885e2121b38fd14f555a803f3a7863bf5a20f4de6f651985f680cbbf6f006d7af334bf981f502a286cbd7c3f5
2022-05-10T14:09:35.942Z hap-controller:http-connection 192.168.1.71:5001 POST /pair-verify 0601030578a880818bda54d1f849f6e682d33e03e3d14665fb65ec1c617a1cc1ab308d1e2708bf306e694d7871b4ac14b14a3b670fe8ca936b3fb155593bfe333d869bda6517be5cfca64a216469b27a2885e2121b38fd14f555a803f3a7863bf5a20f4de6f651985f680cbbf6f006d7af334bf981f502a286cbd7c3f5 (application/pairing+tlv8)
2022-05-10T14:09:38.751Z hap-controller:http-connection 192.168.1.71:5001 Response 200 with 3 byte data
2022-05-10T14:09:38.752Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:09:38.752Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:09:38.754Z hap-controller:http-client New new connection client initialized
2022-05-10T14:09:38.754Z hap-controller:http-connection 192.168.1.71:5001 GET /accessories
2022-05-10T14:09:39.822Z hap-controller:http-connection 192.168.1.71:5001 Response 200 with 7384 byte data
2022-05-10T14:09:39.824Z hap-controller:http-client Close client connection
addTypeLabels: 0.821ms
[10-05-2022 16:09:39][INFO] : Description de l'accessoire reçue : {"accessories":[{"aid":1,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Prise Control","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Bubendorff Gateway","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"g3eca53","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"39","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"000000A2-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000037-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"1.1.0","typeLabel":"version"}],"hidden":false,"primary":false,"typeLabel":"protocol.information.service"},{"type":"EA22EA53-6227-55EA-AC24-73ACF3EEA0E8","iid":31,"characteristics":[{"type":"4D05AE82-5A22-5BD6-A730-B7F8B4F3218D","iid":32,"perms":["pw"],"format":"bool","typeLabel":"4D05AE82-5A22-5BD6-A730-B7F8B4F3218D"},{"type":"00F44C18-042E-5C4E-9A4C-561D44DCD804","iid":30,"perms":["pr"],"format":"string","value":"g3eca53","typeLabel":"00F44C18-042E-5C4E-9A4C-561D44DCD804"}],"hidden":true,"primary":false,"typeLabel":"EA22EA53-6227-55EA-AC24-73ACF3EEA0E8"}]},{"aid":2,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0007368876","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"21","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]},{"aid":3,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0007370421","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"21","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]},{"aid":4,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0007374746","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"21","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]},{"aid":5,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0007375684","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"21","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]},{"aid":6,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0007374736","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"21","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]},{"aid":50,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0012045134","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"22","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]}]}
[10-05-2022 16:09:39][DEBUG] : Envoi de l'Accessory brut : {"eventType":"getAccessories","id":"AE:44:A6:10:F4:A4","refresh":false}
[10-05-2022 16:09:39][DEBUG] : Souscription pour Prise Control
[10-05-2022 16:09:39][DEBUG] : Souscription en cours à Prise Control sur 2.10,2.11,2.12,3.10,3.11,3.12,4.10,4.11,4.12,5.10,5.11,5.12,6.10,6.11,6.12,50.10,50.11,50.12...
2022-05-10T14:09:39.832Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:09:39.834Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:09:39.834Z hap-controller:tlv Add 32 bytes for tag 3: 33e5a9ae25d9ad88207d3314e060a0a677b9831b43ad8ea392e671d18c36026a
2022-05-10T14:09:39.834Z hap-controller:http-connection 192.168.1.71:5001 POST /pair-verify 060101032033e5a9ae25d9ad88207d3314e060a0a677b9831b43ad8ea392e671d18c36026a (application/pairing+tlv8)
2022-05-10T14:09:40.546Z hap-controller:http-connection 192.168.1.71:5001 Response 200 with 140 byte data
2022-05-10T14:09:40.546Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:09:40.547Z hap-controller:tlv Read 32 bytes for tag 3: ad826c767dea1d8556705e0c61f4860e17a3a8add956acd70162b79440b02d5a
2022-05-10T14:09:40.547Z hap-controller:tlv Read 101 bytes for tag 5: ccac9b8add44f4ff7afc8998fbc004572d74be8e6b6cd85bd1a90bae18265a357eab47abc3b1420ec8d090dbfc18a8578fe81b18dd2b94f8b4223b9991a87c6cbeb91033ad90bca4103d4603d344e60f1f16a1e429a9e03e57884f07a9aaa8213bec9e3433
2022-05-10T14:09:40.549Z hap-controller:tlv Read 17 bytes for tag 1: 41453a34343a41363a31303a46343a4134
2022-05-10T14:09:40.549Z hap-controller:tlv Read 64 bytes for tag 10: e2621dc6d3c9195f3eb03c54fea7d912ebff87f7e867120929a5a328f2dc7ad158d9ae08bbf11acbc5018848c5163dadd873d89c3e9b4e7d60b00df6effaef03
2022-05-10T14:09:40.551Z hap-controller:tlv Add 36 bytes for tag 1: 35613730393333342d366361352d346230312d386565382d356231353833333630303834
2022-05-10T14:09:40.551Z hap-controller:tlv Add 64 bytes for tag 10: f2aebf340658bda4dbd704d3024e5ebb275200d9b13df0679572c2312efaf9d178ce7fd8c6b79140c86d00e2f30178546516e09400c4ecb97859d070b2a3c30a
2022-05-10T14:09:40.552Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:09:40.552Z hap-controller:tlv Add 120 bytes for tag 5: 3c49302bb6d9ad7947ccf771a681fc219bf3bae04782de27bf66839cc5630c42bb7b6bbda89c98a9251698223909d95d43e5225957ffa7a679b63b0cd861f6353c8236b9e76320be6f0a4122e03b5db58044cd3ac0040fb00c71bc898fcc49111ba6dc7235839a939e615f346715d665bbd1704d9006adf4
2022-05-10T14:09:40.552Z hap-controller:http-connection 192.168.1.71:5001 POST /pair-verify 06010305783c49302bb6d9ad7947ccf771a681fc219bf3bae04782de27bf66839cc5630c42bb7b6bbda89c98a9251698223909d95d43e5225957ffa7a679b63b0cd861f6353c8236b9e76320be6f0a4122e03b5db58044cd3ac0040fb00c71bc898fcc49111ba6dc7235839a939e615f346715d665bbd1704d9006adf4 (application/pairing+tlv8)
2022-05-10T14:09:40.644Z hap-controller:http-connection 192.168.1.71:5001 Response 200 with 3 byte data
2022-05-10T14:09:40.645Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:09:40.645Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:09:40.647Z hap-controller:http-connection 192.168.1.71:5001 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a322c22696964223a31302c226576223a747275657d2c7b22616964223a322c22696964223a31312c226576223a747275657d2c7b22616964223a322c22696964223a31322c226576223a747275657d2c7b22616964223a332c22696964223a31302c226576223a747275657d2c7b22616964223a332c22696964223a31312c226576223a747275657d2c7b22616964223a332c22696964223a31322c226576223a747275657d2c7b22616964223a342c22696964223a31302c226576223a747275657d2c7b22616964223a342c22696964223a31312c226576223a747275657d2c7b22616964223a342c22696964223a31322c226576223a747275657d2c7b22616964223a352c22696964223a31302c226576223a747275657d2c7b22616964223a352c22696964223a31312c226576223a747275657d2c7b22616964223a352c22696964223a31322c226576223a747275657d2c7b22616964223a362c22696964223a31302c226576223a747275657d2c7b22616964223a362c22696964223a31312c226576223a747275657d2c7b22616964223a362c22696964223a31322c226576223a747275657d2c7b22616964223a35302c22696964223a31302c226576223a747275657d2c7b22616964223a35302c22696964223a31312c226576223a747275657d2c7b22616964223a35302c22696964223a31322c226576223a747275657d5d7d
2022-05-10T14:09:40.830Z hap-controller:http-connection 192.168.1.71:5001 Response 204 with 0 byte data
[10-05-2022 16:09:40][DEBUG] : Souscrit à Prise Control sur 2.10,2.11,2.12,3.10,3.11,3.12,4.10,4.11,4.12,5.10,5.11,5.12,6.10,6.11,6.12,50.10,50.11,50.12 !
[10-05-2022 16:10:32][INFO] : Reçu une demande d'action...{"id":"AB:15:76:41:4A:FD","aid":"81","iid":"262147","val":"1"}
2022-05-10T14:10:32.327Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:10:32.328Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:10:32.328Z hap-controller:tlv Add 32 bytes for tag 3: f740f12b72935feaff927ff53fb4a316563117ff7ff9154f4e50ef0adef8d873
2022-05-10T14:10:32.328Z hap-controller:http-connection 192.168.1.72:49668 POST /pair-verify 0601010320f740f12b72935feaff927ff53fb4a316563117ff7ff9154f4e50ef0adef8d873 (application/pairing+tlv8)
2022-05-10T14:10:32.343Z hap-controller:http-connection 192.168.1.72:49668 Response 200 with 140 byte data
2022-05-10T14:10:32.343Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:10:32.344Z hap-controller:tlv Read 32 bytes for tag 3: b47d132635321409e28818dc73c82c5d1daba4e3b0eff7cf02f9de8594ac8507
2022-05-10T14:10:32.344Z hap-controller:tlv Read 101 bytes for tag 5: eaaefff43f0e4ffcf8af4129db8f04759387fbaa487719532b5528ffff936fa8c94b25401e6c3759e8540927de662efd4efde839cb62f814760ecb199ddb143c2c6b6e4d50730cab1391f6a4fff1197ed75e656e1224ed6949d76df2e612a92447c60efb3c
2022-05-10T14:10:32.346Z hap-controller:tlv Read 17 bytes for tag 1: 41423a31353a37363a34313a34413a4644
2022-05-10T14:10:32.346Z hap-controller:tlv Read 64 bytes for tag 10: 342aafda39e4074c4bb57efdca699d787c33e04a02909cb178ec5ec0a0a5f866494703a4208d646a8f22b87238d32ae6edc9bd8ff4443394cc95f1eba41ab505
2022-05-10T14:10:32.347Z hap-controller:tlv Add 36 bytes for tag 1: 36663033336234322d636166392d346666642d623430392d373866666163326637303939
2022-05-10T14:10:32.347Z hap-controller:tlv Add 64 bytes for tag 10: 997273f93a4b4ffa32d4125d0a86326126ce8cd28da8aac61fe4c8af583ceffab1081de893c114e5ff78860ef4cf3235bf370a1b3c3b3ce0fc5d9b284be98d03
2022-05-10T14:10:32.347Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:10:32.347Z hap-controller:tlv Add 120 bytes for tag 5: e4f9d90d758436d99ee120ac46a80ccb6f59ab0233feec7c4ae4489b9797413df519bb7a3094615ce8b59a5a1bbdc9e1a6b732233f4860bcd61455a182cf4b15b155d2a5a9e234e117d6dcdd1881cb566158206a13523234c79b5b015afca78bbd7012b1ea03e0c5c6defbbb1778de389c93d13f656f62e9
2022-05-10T14:10:32.347Z hap-controller:http-connection 192.168.1.72:49668 POST /pair-verify 0601030578e4f9d90d758436d99ee120ac46a80ccb6f59ab0233feec7c4ae4489b9797413df519bb7a3094615ce8b59a5a1bbdc9e1a6b732233f4860bcd61455a182cf4b15b155d2a5a9e234e117d6dcdd1881cb566158206a13523234c79b5b015afca78bbd7012b1ea03e0c5c6defbbb1778de389c93d13f656f62e9 (application/pairing+tlv8)
2022-05-10T14:10:32.357Z hap-controller:http-connection 192.168.1.72:49668 Response 200 with 3 byte data
2022-05-10T14:10:32.358Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:10:32.358Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:10:32.359Z hap-controller:http-client New new connection client initialized
2022-05-10T14:10:32.359Z hap-controller:http-connection 192.168.1.72:49668 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a38312c22696964223a3236323134372c2276616c7565223a747275657d5d7d
2022-05-10T14:10:32.365Z hap-controller:http-connection 192.168.1.72:49668 Response 204 with 0 byte data
2022-05-10T14:10:32.366Z hap-controller:http-client Close client connection
[10-05-2022 16:10:32][INFO] : Action de jeedom effectuée pour Aqara-Hub-M1S-3774 : on->true
[10-05-2022 16:10:32][INFO] : Event reçu de Aqara-Hub-M1S-3774 : on=1
[10-05-2022 16:10:35][INFO] : Reçu une demande d'action...{"id":"AB:15:76:41:4A:FD","aid":"81","iid":"262147","val":"0"}
2022-05-10T14:10:35.704Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:10:35.706Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:10:35.706Z hap-controller:tlv Add 32 bytes for tag 3: 80bb231f5a4a8db5f47d412a2cd3c17da8b5f9d9c6b8c658eb30301887d55740
2022-05-10T14:10:35.706Z hap-controller:http-connection 192.168.1.72:49668 POST /pair-verify 060101032080bb231f5a4a8db5f47d412a2cd3c17da8b5f9d9c6b8c658eb30301887d55740 (application/pairing+tlv8)
2022-05-10T14:10:35.718Z hap-controller:http-connection 192.168.1.72:49668 Response 200 with 140 byte data
2022-05-10T14:10:35.719Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:10:35.719Z hap-controller:tlv Read 32 bytes for tag 3: b9eee8d4d5b4dd3e93b00c1d22f98c1a2668385c8b68b9f19deaa0c2e9c9c56f
2022-05-10T14:10:35.719Z hap-controller:tlv Read 101 bytes for tag 5: 909b74523101fe354222697cf86a9f8836f759db2adbe4ef20408c7c9b5bbe1ef1907572827c94040c95b187ea1ba0ee11d010611462ba427505e0f6f8f8c331524e16045b076f74966373669abf5df5745b2981b89b47c42eda1b4021e24cc808d285bc39
2022-05-10T14:10:35.721Z hap-controller:tlv Read 17 bytes for tag 1: 41423a31353a37363a34313a34413a4644
2022-05-10T14:10:35.722Z hap-controller:tlv Read 64 bytes for tag 10: 67d17cb0dc87b45dfa24545b52c0f52ffbb54175e91a591de9930f52f2a767548c9b400cf0eff50c8ca09e7cbdfda3a452cf4989539ca65a429da1dc5ee26108
2022-05-10T14:10:35.723Z hap-controller:tlv Add 36 bytes for tag 1: 36663033336234322d636166392d346666642d623430392d373866666163326637303939
2022-05-10T14:10:35.723Z hap-controller:tlv Add 64 bytes for tag 10: c9fae1508db9ce84e9725938436bd04a7a45f400510285b4e110e36dcfaaf3d0ea34a20362880cf0b8f964e286aae0c3e2dde48de7c6bdb8f7201ce976506005
2022-05-10T14:10:35.724Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:10:35.724Z hap-controller:tlv Add 120 bytes for tag 5: c1c2fde593c02352ad4fd1579a67a9b7c2165098ff6ed5258f5c3ba6c779ed6f9da78e8927fc3767793fe9c39a8710692f3193eb786284e75cddf8509ecc54e44d5889f9b08129b2969118002b400860deec336b4fe5d41b3a0ef6a92b4d9c2350f2c123bffe6fe172beb70f4f4f66be8e78caa14bf7c8b4
2022-05-10T14:10:35.724Z hap-controller:http-connection 192.168.1.72:49668 POST /pair-verify 0601030578c1c2fde593c02352ad4fd1579a67a9b7c2165098ff6ed5258f5c3ba6c779ed6f9da78e8927fc3767793fe9c39a8710692f3193eb786284e75cddf8509ecc54e44d5889f9b08129b2969118002b400860deec336b4fe5d41b3a0ef6a92b4d9c2350f2c123bffe6fe172beb70f4f4f66be8e78caa14bf7c8b4 (application/pairing+tlv8)
2022-05-10T14:10:35.733Z hap-controller:http-connection 192.168.1.72:49668 Response 200 with 3 byte data
2022-05-10T14:10:35.733Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:10:35.734Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:10:35.735Z hap-controller:http-client New new connection client initialized
2022-05-10T14:10:35.735Z hap-controller:http-connection 192.168.1.72:49668 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a38312c22696964223a3236323134372c2276616c7565223a66616c73657d5d7d
2022-05-10T14:10:35.741Z hap-controller:http-connection 192.168.1.72:49668 Response 204 with 0 byte data
2022-05-10T14:10:35.742Z hap-controller:http-client Close client connection
[10-05-2022 16:10:35][INFO] : Action de jeedom effectuée pour Aqara-Hub-M1S-3774 : on->false
[10-05-2022 16:10:35][INFO] : Event reçu de Aqara-Hub-M1S-3774 : on=0
[10-05-2022 16:10:38][INFO] : Reçu une demande d'action...{"id":"AB:15:76:41:4A:FD","aid":"81","iid":"327683","val":"1"}
2022-05-10T14:10:38.685Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:10:38.686Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:10:38.686Z hap-controller:tlv Add 32 bytes for tag 3: 4bf714d0cbde4f5cdb0e682e665b8ecea850e00c3c3d373eb2c8bc1cb8e1be77
2022-05-10T14:10:38.687Z hap-controller:http-connection 192.168.1.72:49668 POST /pair-verify 06010103204bf714d0cbde4f5cdb0e682e665b8ecea850e00c3c3d373eb2c8bc1cb8e1be77 (application/pairing+tlv8)
2022-05-10T14:10:38.698Z hap-controller:http-connection 192.168.1.72:49668 Response 200 with 140 byte data
2022-05-10T14:10:38.700Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:10:38.700Z hap-controller:tlv Read 32 bytes for tag 3: f768cf8ddf19d86eaece6c3f1039a7e196d5eac1410b88a7166828241cb3c373
2022-05-10T14:10:38.700Z hap-controller:tlv Read 101 bytes for tag 5: a2e1c8c59bc994d112e826edb248e4d07589432fe090d7af5fdfe82d527a3d1f955583175f0fc678468fd7e2d602a5faeb100e2038630dd1a584ecabdae52c68fc5037694d97ac8ec3bad23a1f3b565c508885c53584a0838d5d699d74ce87fb8acfd6babb
2022-05-10T14:10:38.703Z hap-controller:tlv Read 17 bytes for tag 1: 41423a31353a37363a34313a34413a4644
2022-05-10T14:10:38.703Z hap-controller:tlv Read 64 bytes for tag 10: 642fb038efa7ab132c64869159eece93c7c4adf6652017bf6401ff02661e46740c3670e454132ed81369c1c2baed342baec1c7cf3b4164851be1c240c929f80a
2022-05-10T14:10:38.704Z hap-controller:tlv Add 36 bytes for tag 1: 36663033336234322d636166392d346666642d623430392d373866666163326637303939
2022-05-10T14:10:38.705Z hap-controller:tlv Add 64 bytes for tag 10: 2d23432c86a2b0342605afbd6eec64e609dff71d0518fb4194c7b5aa0f084367f5b96401c0019fe8cbc11bb50eb014b1ce4b3e5260c8d22d5dc9a8f60faf3a00
2022-05-10T14:10:38.705Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:10:38.705Z hap-controller:tlv Add 120 bytes for tag 5: 1ed738c3634a0f1d455a4e762d8342c4252e619086b95d9d98cbbffd4f7fb415067f9a16c5a790a9af09952edbc137aad54dfb45fdb3d098be6da99ec1a819bbccec73827665e3e09d1011e9320fc10721294026c8adfca73466f7660f6407a49c84b6ed3eef7ac0e2e94a19af78f18aeac9f1e287f83641
2022-05-10T14:10:38.705Z hap-controller:http-connection 192.168.1.72:49668 POST /pair-verify 06010305781ed738c3634a0f1d455a4e762d8342c4252e619086b95d9d98cbbffd4f7fb415067f9a16c5a790a9af09952edbc137aad54dfb45fdb3d098be6da99ec1a819bbccec73827665e3e09d1011e9320fc10721294026c8adfca73466f7660f6407a49c84b6ed3eef7ac0e2e94a19af78f18aeac9f1e287f83641 (application/pairing+tlv8)
2022-05-10T14:10:38.716Z hap-controller:http-connection 192.168.1.72:49668 Response 200 with 3 byte data
2022-05-10T14:10:38.716Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:10:38.716Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:10:38.717Z hap-controller:http-client New new connection client initialized
2022-05-10T14:10:38.718Z hap-controller:http-connection 192.168.1.72:49668 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a38312c22696964223a3332373638332c2276616c7565223a747275657d5d7d
2022-05-10T14:10:38.724Z hap-controller:http-connection 192.168.1.72:49668 Response 204 with 0 byte data
2022-05-10T14:10:38.724Z hap-controller:http-client Close client connection
[10-05-2022 16:10:38][INFO] : Action de jeedom effectuée pour Aqara-Hub-M1S-3774 : on->true
[10-05-2022 16:10:38][INFO] : Event reçu de Aqara-Hub-M1S-3774 : on=1
[10-05-2022 16:10:40][INFO] : Reçu une demande d'action...{"id":"AB:15:76:41:4A:FD","aid":"81","iid":"327683","val":"0"}
2022-05-10T14:10:40.760Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:10:40.761Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:10:40.761Z hap-controller:tlv Add 32 bytes for tag 3: 7e486ce7757436f388dd038fa115a262df23fc3528ca5fc16ecf5e983d1df76d
2022-05-10T14:10:40.761Z hap-controller:http-connection 192.168.1.72:49668 POST /pair-verify 06010103207e486ce7757436f388dd038fa115a262df23fc3528ca5fc16ecf5e983d1df76d (application/pairing+tlv8)
2022-05-10T14:10:40.773Z hap-controller:http-connection 192.168.1.72:49668 Response 200 with 140 byte data
2022-05-10T14:10:40.774Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:10:40.774Z hap-controller:tlv Read 32 bytes for tag 3: a8cdcf70153ecd435a383e1f12a31ca477e8a9d5b922ae75bfc2bea810c0ab77
2022-05-10T14:10:40.774Z hap-controller:tlv Read 101 bytes for tag 5: 16b8143ff782efa3d2b4c0d99a81d5f8d025617e4073fc72bfb6387464e06ac0f2c3dd608c571fdc6a7dd47851dcea2f06f36f1604afc32f2197cc5875f7a4c3897c230eb7784775f865f58c2588c4230d6c5d2389102bf7c208d6c69b749a15df4a92c5ea
2022-05-10T14:10:40.776Z hap-controller:tlv Read 17 bytes for tag 1: 41423a31353a37363a34313a34413a4644
2022-05-10T14:10:40.776Z hap-controller:tlv Read 64 bytes for tag 10: 218119388e0d742d22009847599acd5b0626a1f3d0143cea17c4fb2e62732c01dcfc52143aaa8d673aa9e7cc54b3a653893f85c0d1330ca7c55c316b1e84a308
2022-05-10T14:10:40.777Z hap-controller:tlv Add 36 bytes for tag 1: 36663033336234322d636166392d346666642d623430392d373866666163326637303939
2022-05-10T14:10:40.777Z hap-controller:tlv Add 64 bytes for tag 10: f478cde318ec296a50f2d7dd617b45163db5c2f78baa26fd7a162060282e641d2f1bcc428007e2deb267cb7d494f2dca5d7e7fc3908a54fa2ca1c8ae954eda0b
2022-05-10T14:10:40.778Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:10:40.778Z hap-controller:tlv Add 120 bytes for tag 5: 960a9f12661d92a4d63d60b9c03e71b2784052b5383a09f03a3bdf6664393f4a5765a893abe2454ce663815c3ad862fa12646f896743f81d9bbf13ad8ec373eb35bbcf004ac9dc4806870a02290cb5a0dfb4d2441e7ff99b06003e8d970d5fcab4a8fe174e361a1f0210e1a9793cf25e5eb9793413949c6c
2022-05-10T14:10:40.778Z hap-controller:http-connection 192.168.1.72:49668 POST /pair-verify 0601030578960a9f12661d92a4d63d60b9c03e71b2784052b5383a09f03a3bdf6664393f4a5765a893abe2454ce663815c3ad862fa12646f896743f81d9bbf13ad8ec373eb35bbcf004ac9dc4806870a02290cb5a0dfb4d2441e7ff99b06003e8d970d5fcab4a8fe174e361a1f0210e1a9793cf25e5eb9793413949c6c (application/pairing+tlv8)
2022-05-10T14:10:40.787Z hap-controller:http-connection 192.168.1.72:49668 Response 200 with 3 byte data
2022-05-10T14:10:40.788Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:10:40.788Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:10:40.790Z hap-controller:http-client New new connection client initialized
2022-05-10T14:10:40.790Z hap-controller:http-connection 192.168.1.72:49668 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a38312c22696964223a3332373638332c2276616c7565223a66616c73657d5d7d
2022-05-10T14:10:40.795Z hap-controller:http-connection 192.168.1.72:49668 Response 204 with 0 byte data
2022-05-10T14:10:40.795Z hap-controller:http-client Close client connection
[10-05-2022 16:10:40][INFO] : Action de jeedom effectuée pour Aqara-Hub-M1S-3774 : on->false
[10-05-2022 16:10:40][INFO] : Event reçu de Aqara-Hub-M1S-3774 : on=0
[10-05-2022 16:10:43][INFO] : Reçu une demande d'action...{"id":"AE:44:A6:10:F4:A4","aid":"2","iid":"10","val":"0"}
2022-05-10T14:10:43.688Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:10:43.690Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:10:43.690Z hap-controller:tlv Add 32 bytes for tag 3: 375ac019ee085d2486c4ad570369a69e4d62905bbff13cf2d1c83249d0708718
2022-05-10T14:10:43.690Z hap-controller:http-connection 192.168.1.71:5001 POST /pair-verify 0601010320375ac019ee085d2486c4ad570369a69e4d62905bbff13cf2d1c83249d0708718 (application/pairing+tlv8)
2022-05-10T14:10:44.152Z hap-controller:http-connection 192.168.1.71:5001 Response 200 with 140 byte data
2022-05-10T14:10:44.153Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:10:44.153Z hap-controller:tlv Read 32 bytes for tag 3: 5cf7708de790fca9b2956314fc8fd5a66c18e8ea49f621749337bbf8c3837f66
2022-05-10T14:10:44.154Z hap-controller:tlv Read 101 bytes for tag 5: edfc907d03b84c9b8690ecdff75d76a35df387396a9ed9fd119b381d25b749c6dd3d3c4bbc8e837513f01fed388d2f7d037638c57490ab4df507e73af9cea555257360253104a1de6a74dd248cd64b16f85b46987086ec3bdf10e2b2ac8ca2dbb505685cd7
2022-05-10T14:10:44.156Z hap-controller:tlv Read 17 bytes for tag 1: 41453a34343a41363a31303a46343a4134
2022-05-10T14:10:44.156Z hap-controller:tlv Read 64 bytes for tag 10: 8b97d73a01bb005dfde77c0a3abd44a7b3fcba18fb173b8719ce9af47705e32553b641775fc174910eb8f843eaaa1225c503304fda6a4b2fd98eb9d83c8f9004
2022-05-10T14:10:44.158Z hap-controller:tlv Add 36 bytes for tag 1: 35613730393333342d366361352d346230312d386565382d356231353833333630303834
2022-05-10T14:10:44.158Z hap-controller:tlv Add 64 bytes for tag 10: af908e93a3e603a73b5f17b5023c19a6603ccb38141494f203d6adbb0f1ab12c82006f8d75d5674afbf0908f47bdf962e82538278c5ee7808d60c63b62c22400
2022-05-10T14:10:44.158Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:10:44.159Z hap-controller:tlv Add 120 bytes for tag 5: 1916a6266d34155820b190557e873acb43f6fa63fbf7323e6bf97265ace2f0449ac153289715fa2cd49fd36090471deb7ccd3a4a2b70b8ddb931fa7c54755ab7f445dc980946e7d29e92be111dc2b7c585923a05582f8447d80c8861fe80e3974a1fbf1ee0568e7f1e9ec27a7fd086ee9536ced541eec5dd
2022-05-10T14:10:44.159Z hap-controller:http-connection 192.168.1.71:5001 POST /pair-verify 06010305781916a6266d34155820b190557e873acb43f6fa63fbf7323e6bf97265ace2f0449ac153289715fa2cd49fd36090471deb7ccd3a4a2b70b8ddb931fa7c54755ab7f445dc980946e7d29e92be111dc2b7c585923a05582f8447d80c8861fe80e3974a1fbf1ee0568e7f1e9ec27a7fd086ee9536ced541eec5dd (application/pairing+tlv8)
2022-05-10T14:10:44.377Z hap-controller:http-connection 192.168.1.71:5001 Response 200 with 3 byte data
2022-05-10T14:10:44.377Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:10:44.378Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:10:44.379Z hap-controller:http-client New new connection client initialized
2022-05-10T14:10:44.380Z hap-controller:http-connection 192.168.1.71:5001 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a322c22696964223a31302c2276616c7565223a307d5d7d
2022-05-10T14:10:45.005Z hap-controller:http-connection 192.168.1.71:5001 Response 204 with 0 byte data
2022-05-10T14:10:45.006Z hap-controller:http-client Close client connection
[10-05-2022 16:10:45][INFO] : Action de jeedom effectuée pour Prise Control : position.target->0
[10-05-2022 16:10:45][INFO] : Event reçu de Prise Control : position.target=0
[10-05-2022 16:10:46][DEBUG] : Déconnexion des Events reçu de tado Internet Bridge IB3005030144 : 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17
[10-05-2022 16:10:46][DEBUG] : ReSouscription en cours à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17...
2022-05-10T14:10:46.418Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:10:46.422Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:10:46.422Z hap-controller:tlv Add 32 bytes for tag 3: 24ddb6f6e432fe6e47302bb071750563e6254e4a8c87a375bce698ffaa4cb02b
2022-05-10T14:10:46.422Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 060101032024ddb6f6e432fe6e47302bb071750563e6254e4a8c87a375bce698ffaa4cb02b (application/pairing+tlv8)
2022-05-10T14:10:46.487Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 140 byte data
2022-05-10T14:10:46.488Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:10:46.488Z hap-controller:tlv Read 32 bytes for tag 3: 519431f0061828dcf2396f7c2b1be811bdaa2d26427164fd8183984622378579
2022-05-10T14:10:46.488Z hap-controller:tlv Read 101 bytes for tag 5: f663e3d304c1435cd06c0288f1cabffc4fa0dab972e88eee2c9e5f44e76a9ed771ac9fe55ad810a4c4edaf16556b0cda074e4a2c0ff0144b1dc80f568c6a8d6f7c838d61f7d28e9fc1fad4d83430d838aeabce7a0dbab5d53915c53e00396d3691d2e2f8db
2022-05-10T14:10:46.492Z hap-controller:tlv Read 17 bytes for tag 1: 31623a64633a38613a36313a65373a3134
2022-05-10T14:10:46.492Z hap-controller:tlv Read 64 bytes for tag 10: 9592e1a951dcf4ea54343970acf03461ff0e694467183e4850d0d7a486620efbd72f6f3282dc8f44a5481a4939736f1b2187e91bf059a82a008adf2c686bcc07
2022-05-10T14:10:46.494Z hap-controller:tlv Add 36 bytes for tag 1: 61313466666331622d346361342d346166352d396334662d383361363931643265333666
2022-05-10T14:10:46.494Z hap-controller:tlv Add 64 bytes for tag 10: 03115c985f1a3a20c463bb15954726a5087ef9c5ca09165148bdce8e0b99c41d1cd854f8f08e148bb5ff4a66640aaa8910b232acfd5f8f10ecce4e5c56c02803
2022-05-10T14:10:46.494Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:10:46.495Z hap-controller:tlv Add 120 bytes for tag 5: 0eeacb29b298f567e00ef8f13f7e5fa59dc0a6f97a52e442d48d10011c72e5ad0ce4c3fe4922f530ee1b5e8d15d0afd6d600ea7becc89188fe748f7d513f69734d7c5b86b7746452d8864faa23e4900a98103e379c7360c1375f96ea05be73aff911031d9c9796eeca5ed7b924a0fac6eb8625ad975db861
2022-05-10T14:10:46.495Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 06010305780eeacb29b298f567e00ef8f13f7e5fa59dc0a6f97a52e442d48d10011c72e5ad0ce4c3fe4922f530ee1b5e8d15d0afd6d600ea7becc89188fe748f7d513f69734d7c5b86b7746452d8864faa23e4900a98103e379c7360c1375f96ea05be73aff911031d9c9796eeca5ed7b924a0fac6eb8625ad975db861 (application/pairing+tlv8)
2022-05-10T14:10:46.581Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 3 byte data
2022-05-10T14:10:46.581Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:10:46.582Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:10:46.583Z hap-controller:http-connection 192.168.1.73:80 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a322c22696964223a31322c226576223a747275657d2c7b22616964223a322c22696964223a31332c226576223a747275657d2c7b22616964223a322c22696964223a31342c226576223a747275657d2c7b22616964223a322c22696964223a31352c226576223a747275657d2c7b22616964223a322c22696964223a31362c226576223a747275657d2c7b22616964223a322c22696964223a31372c226576223a747275657d2c7b22616964223a332c22696964223a31322c226576223a747275657d2c7b22616964223a332c22696964223a31332c226576223a747275657d2c7b22616964223a332c22696964223a31342c226576223a747275657d2c7b22616964223a332c22696964223a31352c226576223a747275657d2c7b22616964223a332c22696964223a31362c226576223a747275657d2c7b22616964223a332c22696964223a31372c226576223a747275657d2c7b22616964223a342c22696964223a31322c226576223a747275657d2c7b22616964223a342c22696964223a31332c226576223a747275657d2c7b22616964223a342c22696964223a31342c226576223a747275657d2c7b22616964223a342c22696964223a31352c226576223a747275657d2c7b22616964223a342c22696964223a31362c226576223a747275657d2c7b22616964223a342c22696964223a31372c226576223a747275657d2c7b22616964223a352c22696964223a31322c226576223a747275657d2c7b22616964223a352c22696964223a31332c226576223a747275657d2c7b22616964223a352c22696964223a31342c226576223a747275657d2c7b22616964223a352c22696964223a31352c226576223a747275657d2c7b22616964223a352c22696964223a31362c226576223a747275657d2c7b22616964223a352c22696964223a31372c226576223a747275657d5d7d
2022-05-10T14:10:46.611Z hap-controller:http-connection 192.168.1.73:80 Response 204 with 0 byte data
[10-05-2022 16:10:46][DEBUG] : ReSouscrit correctement à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17
[10-05-2022 16:10:47][INFO] : Event reçu de Prise Control : position.current=0
[10-05-2022 16:10:49][INFO] : Reçu une demande d'action...{"id":"AE:44:A6:10:F4:A4","aid":"2","iid":"10","val":"100"}
2022-05-10T14:10:49.885Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:10:49.887Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:10:49.887Z hap-controller:tlv Add 32 bytes for tag 3: faabf172ece8230dc557cc9e0c44dd381b3d08c0d3163521c909b3fb259b9920
2022-05-10T14:10:49.887Z hap-controller:http-connection 192.168.1.71:5001 POST /pair-verify 0601010320faabf172ece8230dc557cc9e0c44dd381b3d08c0d3163521c909b3fb259b9920 (application/pairing+tlv8)
2022-05-10T14:10:50.277Z hap-controller:http-connection 192.168.1.71:5001 Response 200 with 140 byte data
2022-05-10T14:10:50.277Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:10:50.278Z hap-controller:tlv Read 32 bytes for tag 3: dafd1dcbebb55b25255c873e73e4dae0482773430cb6edd773f3dc36f06c2404
2022-05-10T14:10:50.278Z hap-controller:tlv Read 101 bytes for tag 5: 00a874de668d02d71f3442561134e53837ae64726fc76681861d09a1c92ac52e0e96bd8357da330d311930566f76f2d19057d11cd2b88760407c4399577238110755bef7954ac97d5de83be820fe56977b88c7d887187109eab5081fe0114cbf1959403347
2022-05-10T14:10:50.280Z hap-controller:tlv Read 17 bytes for tag 1: 41453a34343a41363a31303a46343a4134
2022-05-10T14:10:50.280Z hap-controller:tlv Read 64 bytes for tag 10: c555e4d1a7c1b29d2f5493b1048a7dc379f8ccd4cd1d5f10f4fc3e945ca8d7ba2407a0140e60075a807626d8909195a747a543e5fe099918f620fdce11f2d401
2022-05-10T14:10:50.282Z hap-controller:tlv Add 36 bytes for tag 1: 35613730393333342d366361352d346230312d386565382d356231353833333630303834
2022-05-10T14:10:50.282Z hap-controller:tlv Add 64 bytes for tag 10: fba4bd7f12d2f1be3bc575a6c11fc137901282e65b86f7608aab44ed2fb4f1bf0c89d2de564272f6e8818682078e4c11f875d63927ef893ad83d998c1bd8e10b
2022-05-10T14:10:50.283Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:10:50.283Z hap-controller:tlv Add 120 bytes for tag 5: c4ad632f445a68061e04350d8e77c5b3c02724da2203e70948b746d80b36ed5fd9db859c5f66030fbb6424463f8839e4284114f2778e3400900fba8328c8dc385534d0c01396b16c8d3fa65d30b9ac483b3b54871bb851372e1f42fb1a37746b0ae47773e31fcdd5d30bfecc8d335f3e4cd78fbd26292800
2022-05-10T14:10:50.283Z hap-controller:http-connection 192.168.1.71:5001 POST /pair-verify 0601030578c4ad632f445a68061e04350d8e77c5b3c02724da2203e70948b746d80b36ed5fd9db859c5f66030fbb6424463f8839e4284114f2778e3400900fba8328c8dc385534d0c01396b16c8d3fa65d30b9ac483b3b54871bb851372e1f42fb1a37746b0ae47773e31fcdd5d30bfecc8d335f3e4cd78fbd26292800 (application/pairing+tlv8)
2022-05-10T14:10:50.379Z hap-controller:http-connection 192.168.1.71:5001 Response 200 with 3 byte data
2022-05-10T14:10:50.379Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:10:50.380Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:10:50.381Z hap-controller:http-client New new connection client initialized
2022-05-10T14:10:50.381Z hap-controller:http-connection 192.168.1.71:5001 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a322c22696964223a31302c2276616c7565223a3130307d5d7d
2022-05-10T14:10:50.431Z hap-controller:http-connection 192.168.1.71:5001 Response 204 with 0 byte data
2022-05-10T14:10:50.432Z hap-controller:http-client Close client connection
[10-05-2022 16:10:50][INFO] : Action de jeedom effectuée pour Prise Control : position.target->100
[10-05-2022 16:10:50][INFO] : Event reçu de Prise Control : position.target=100
[10-05-2022 16:10:52][INFO] : Event reçu de Prise Control : position.current=100
[10-05-2022 16:10:56][INFO] : Event reçu de tado Internet Bridge IB3005030144 : temperature.current=19.2
[10-05-2022 16:11:01][INFO] : Reçu une demande d'action...{"id":"1b:dc:8a:61:e7:14","aid":"5","iid":"15","val":"15"}
2022-05-10T14:11:01.396Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:11:01.398Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:11:01.398Z hap-controller:tlv Add 32 bytes for tag 3: 9a309cbc9d313ec16c3f0cdec3d3055967b021b7374a1cb0b17b0c4997a07f7e
2022-05-10T14:11:01.398Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 06010103209a309cbc9d313ec16c3f0cdec3d3055967b021b7374a1cb0b17b0c4997a07f7e (application/pairing+tlv8)
2022-05-10T14:11:01.458Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 140 byte data
2022-05-10T14:11:01.458Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:11:01.458Z hap-controller:tlv Read 32 bytes for tag 3: 8506bff02f166f01900231c45989bd166926f72d5974e5a27dc606f42845cd03
2022-05-10T14:11:01.458Z hap-controller:tlv Read 101 bytes for tag 5: 95f016c616c07664debb1a49f02e622d2ad6320e186856a35154d9edcaec8ed71f9a3e4a7424c370f7e6e2fed17d51f8c91431dac86546d56c032788c2f86487a6ea68a6c2ffa4c200a2de45ab31741357a1dce94c31f53ebe1bda9030865545dcaeb6a14d
2022-05-10T14:11:01.460Z hap-controller:tlv Read 17 bytes for tag 1: 31623a64633a38613a36313a65373a3134
2022-05-10T14:11:01.460Z hap-controller:tlv Read 64 bytes for tag 10: 3615c44e8e2b5ed628a73360b7e66f2de50d999920435af042fd92bd02143bd2c1bd10ec564c2d6364ddee6f863c1dd3d1b36601f112f9d668c50eb3b6f1b907
2022-05-10T14:11:01.474Z hap-controller:tlv Add 36 bytes for tag 1: 61313466666331622d346361342d346166352d396334662d383361363931643265333666
2022-05-10T14:11:01.474Z hap-controller:tlv Add 64 bytes for tag 10: c2ab1f4a9ce210d9586937ad9cae39f701f11acbc095cb44d6a8435db29cfc1d078cb9fbe25a2096a66e0cfbc2d09b65fb8596067b09c24120376b299c9fa604
2022-05-10T14:11:01.474Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:11:01.474Z hap-controller:tlv Add 120 bytes for tag 5: 1aa577e3b32e1a9e63aee084a3076979147e12334a3ba75fa97cb0f9fcd919257cd689f17d407cee6e7987ca08bdcb85a72c7fbe8ad25a2941c6a91ad0a3d03650abfa91f15ef2606c1b2f39ec584c837e4f0e2291c98f1869323d7831279e9780cfee675094b1ed699f3ed69fdb6a70b53d40fc1354870e
2022-05-10T14:11:01.474Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 06010305781aa577e3b32e1a9e63aee084a3076979147e12334a3ba75fa97cb0f9fcd919257cd689f17d407cee6e7987ca08bdcb85a72c7fbe8ad25a2941c6a91ad0a3d03650abfa91f15ef2606c1b2f39ec584c837e4f0e2291c98f1869323d7831279e9780cfee675094b1ed699f3ed69fdb6a70b53d40fc1354870e (application/pairing+tlv8)
2022-05-10T14:11:01.549Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 3 byte data
2022-05-10T14:11:01.549Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:11:01.549Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:11:01.550Z hap-controller:http-client New new connection client initialized
2022-05-10T14:11:01.551Z hap-controller:http-connection 192.168.1.73:80 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a352c22696964223a31352c2276616c7565223a31357d5d7d
2022-05-10T14:11:01.568Z hap-controller:http-connection 192.168.1.73:80 Response 204 with 0 byte data
2022-05-10T14:11:01.569Z hap-controller:http-client Close client connection
[10-05-2022 16:11:01][INFO] : Action de jeedom effectuée pour tado Internet Bridge IB3005030144 : temperature.target->15
[10-05-2022 16:11:02][INFO] : Event reçu de tado Internet Bridge IB3005030144 : temperature.target=15
[10-05-2022 16:11:24][INFO] : Event reçu de Aqara-Hub-M1S-3774 : status-lo-batt=0
[10-05-2022 16:11:27][INFO] : Event reçu de Aqara-Hub-M1S-3774 : status-lo-batt=0
[10-05-2022 16:11:28][INFO] : Event reçu de Aqara-Hub-M1S-3774 : battery-level=96
[10-05-2022 16:12:12][DEBUG] : Déconnexion des Events reçu de tado Internet Bridge IB3005030144 : 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17
[10-05-2022 16:12:12][DEBUG] : ReSouscription en cours à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17...
2022-05-10T14:12:12.687Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:12:12.689Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:12:12.689Z hap-controller:tlv Add 32 bytes for tag 3: 3765bb68e64b58ed957695bc498dbb0e924d404751308eaeeeb6e1877fbd931f
2022-05-10T14:12:12.690Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 06010103203765bb68e64b58ed957695bc498dbb0e924d404751308eaeeeb6e1877fbd931f (application/pairing+tlv8)
2022-05-10T14:12:12.760Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 140 byte data
2022-05-10T14:12:12.761Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:12:12.761Z hap-controller:tlv Read 32 bytes for tag 3: db2cdecaf750c1de9652a0a0083cfa12cfbe0a640818133ec28b21383bbf7153
2022-05-10T14:12:12.761Z hap-controller:tlv Read 101 bytes for tag 5: 0b1abf8ee1563b648670aae12d84656b8cd54720e257e35090fad51708f7a80e3e357bdebf73b6d33dd2d6c236c551a1b98bb70de9d959b15adaff800220534072ffc02c23ad497ef6ac31e8763e0d48ee37c6968d5e5f3fe49595870d6cd82e54a54e5ce7
2022-05-10T14:12:12.764Z hap-controller:tlv Read 17 bytes for tag 1: 31623a64633a38613a36313a65373a3134
2022-05-10T14:12:12.764Z hap-controller:tlv Read 64 bytes for tag 10: 141136fc643ee6e7907303a6f9105dc6e927d38541643618fce0650a031ca022296ba6329acd8c823179aca9ecee40e333e92e490cb459d8fa3e9d57a0c6240f
2022-05-10T14:12:12.766Z hap-controller:tlv Add 36 bytes for tag 1: 61313466666331622d346361342d346166352d396334662d383361363931643265333666
2022-05-10T14:12:12.766Z hap-controller:tlv Add 64 bytes for tag 10: 63e398af164b8e525ac0780349d7899d8b8ee72ccd1f38f676754324f815ebdfb51bb1fe6368891262a599aa54a532b9fcdd9968a2cbe0dee0949db9bbb0460f
2022-05-10T14:12:12.766Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:12:12.766Z hap-controller:tlv Add 120 bytes for tag 5: 73c82f15b1fca17095044a85873076150e4802b5a6db315e729abae585c43f38e5b3f2e1137f675f2cb76149659659e7c3477e857a9ae82be1f0b280ad08f523c40fd8f1e56e8413bb589d451a857505d5d374bd3635b4184f78eb0f078800316ce618b2410ef40f333910303d0d211afaff189196b1b42b
2022-05-10T14:12:12.766Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 060103057873c82f15b1fca17095044a85873076150e4802b5a6db315e729abae585c43f38e5b3f2e1137f675f2cb76149659659e7c3477e857a9ae82be1f0b280ad08f523c40fd8f1e56e8413bb589d451a857505d5d374bd3635b4184f78eb0f078800316ce618b2410ef40f333910303d0d211afaff189196b1b42b (application/pairing+tlv8)
2022-05-10T14:12:12.853Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 3 byte data
2022-05-10T14:12:12.854Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:12:12.854Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:12:12.856Z hap-controller:http-connection 192.168.1.73:80 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a322c22696964223a31322c226576223a747275657d2c7b22616964223a322c22696964223a31332c226576223a747275657d2c7b22616964223a322c22696964223a31342c226576223a747275657d2c7b22616964223a322c22696964223a31352c226576223a747275657d2c7b22616964223a322c22696964223a31362c226576223a747275657d2c7b22616964223a322c22696964223a31372c226576223a747275657d2c7b22616964223a332c22696964223a31322c226576223a747275657d2c7b22616964223a332c22696964223a31332c226576223a747275657d2c7b22616964223a332c22696964223a31342c226576223a747275657d2c7b22616964223a332c22696964223a31352c226576223a747275657d2c7b22616964223a332c22696964223a31362c226576223a747275657d2c7b22616964223a332c22696964223a31372c226576223a747275657d2c7b22616964223a342c22696964223a31322c226576223a747275657d2c7b22616964223a342c22696964223a31332c226576223a747275657d2c7b22616964223a342c22696964223a31342c226576223a747275657d2c7b22616964223a342c22696964223a31352c226576223a747275657d2c7b22616964223a342c22696964223a31362c226576223a747275657d2c7b22616964223a342c22696964223a31372c226576223a747275657d2c7b22616964223a352c22696964223a31322c226576223a747275657d2c7b22616964223a352c22696964223a31332c226576223a747275657d2c7b22616964223a352c22696964223a31342c226576223a747275657d2c7b22616964223a352c22696964223a31352c226576223a747275657d2c7b22616964223a352c22696964223a31362c226576223a747275657d2c7b22616964223a352c22696964223a31372c226576223a747275657d5d7d
[10-05-2022 16:13:19][INFO] : Event reçu de Aqara-Hub-M1S-3774 : status-lo-batt=0
[10-05-2022 16:13:24][DEBUG] : Déconnexion des Events reçu de tado Internet Bridge IB3005030144 : 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17
[10-05-2022 16:13:24][DEBUG] : ReSouscription en cours à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17...
2022-05-10T14:13:24.111Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:13:24.113Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:13:24.113Z hap-controller:tlv Add 32 bytes for tag 3: cc31f9f502d6801749f191bea0ec72fc87608d12ad10740954b9ed5c9c8baf35
2022-05-10T14:13:24.113Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 0601010320cc31f9f502d6801749f191bea0ec72fc87608d12ad10740954b9ed5c9c8baf35 (application/pairing+tlv8)
2022-05-10T14:13:24.189Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 140 byte data
2022-05-10T14:13:24.190Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:13:24.190Z hap-controller:tlv Read 32 bytes for tag 3: 77b85a17eea0f2790b7ca03fc3986906294905d3cb0d2886abee495dff268d6e
2022-05-10T14:13:24.191Z hap-controller:tlv Read 101 bytes for tag 5: cda668a61f8dbd2317bcd0862bd2d9dc4364a776df5376c55578ea93d4b70680e625024036c5525e39e8e9a979edd370588acf9593074a0deeb00012b78445582b21b9a9cf68ce0d05047ad509c658a1ba1aa139f5676d3b267cd564056066fd4fd590d70b
2022-05-10T14:13:24.193Z hap-controller:tlv Read 17 bytes for tag 1: 31623a64633a38613a36313a65373a3134
2022-05-10T14:13:24.193Z hap-controller:tlv Read 64 bytes for tag 10: a9e5e1fa814c6faaeacc0f0924235e0eb48907acb2bd2248be86ddf318206428931e98c9790d9201e547ff12433e576ed85a56009f4d0eb437e460e6ca1dbf06
2022-05-10T14:13:24.195Z hap-controller:tlv Add 36 bytes for tag 1: 61313466666331622d346361342d346166352d396334662d383361363931643265333666
2022-05-10T14:13:24.195Z hap-controller:tlv Add 64 bytes for tag 10: 58da05b05211ce73f8738afea30b64741bad0f26d986c2b936b8755ad4b498d5a9b05c753ae41dbfba11222a976720f1f1043a42439de5e0afba9a157c682401
2022-05-10T14:13:24.195Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:13:24.196Z hap-controller:tlv Add 120 bytes for tag 5: 71d4057430a13709003928b4058d231f2a95682dc71b7c798cddf7a8f84798a287515706dd337baab43ed3e7e43f39af3567be2e49d0f608e0293a8008595d5a362d4f7f85130e7c4d04ef05522f07ea68f968eb52a16f1509f18615555a7634903d89e8ab9871b498d2f06a943390054114a1928140f592
2022-05-10T14:13:24.196Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 060103057871d4057430a13709003928b4058d231f2a95682dc71b7c798cddf7a8f84798a287515706dd337baab43ed3e7e43f39af3567be2e49d0f608e0293a8008595d5a362d4f7f85130e7c4d04ef05522f07ea68f968eb52a16f1509f18615555a7634903d89e8ab9871b498d2f06a943390054114a1928140f592 (application/pairing+tlv8)
2022-05-10T14:13:24.282Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 3 byte data
2022-05-10T14:13:24.283Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:13:24.283Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:13:24.284Z hap-controller:http-connection 192.168.1.73:80 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a322c22696964223a31322c226576223a747275657d2c7b22616964223a322c22696964223a31332c226576223a747275657d2c7b22616964223a322c22696964223a31342c226576223a747275657d2c7b22616964223a322c22696964223a31352c226576223a747275657d2c7b22616964223a322c22696964223a31362c226576223a747275657d2c7b22616964223a322c22696964223a31372c226576223a747275657d2c7b22616964223a332c22696964223a31322c226576223a747275657d2c7b22616964223a332c22696964223a31332c226576223a747275657d2c7b22616964223a332c22696964223a31342c226576223a747275657d2c7b22616964223a332c22696964223a31352c226576223a747275657d2c7b22616964223a332c22696964223a31362c226576223a747275657d2c7b22616964223a332c22696964223a31372c226576223a747275657d2c7b22616964223a342c22696964223a31322c226576223a747275657d2c7b22616964223a342c22696964223a31332c226576223a747275657d2c7b22616964223a342c22696964223a31342c226576223a747275657d2c7b22616964223a342c22696964223a31352c226576223a747275657d2c7b22616964223a342c22696964223a31362c226576223a747275657d2c7b22616964223a342c22696964223a31372c226576223a747275657d2c7b22616964223a352c22696964223a31322c226576223a747275657d2c7b22616964223a352c22696964223a31332c226576223a747275657d2c7b22616964223a352c22696964223a31342c226576223a747275657d2c7b22616964223a352c22696964223a31352c226576223a747275657d2c7b22616964223a352c22696964223a31362c226576223a747275657d2c7b22616964223a352c22696964223a31372c226576223a747275657d5d7d
2022-05-10T14:13:24.313Z hap-controller:http-connection 192.168.1.73:80 Response 204 with 0 byte data
[10-05-2022 16:13:24][DEBUG] : ReSouscrit correctement à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17
[10-05-2022 16:13:55][INFO] : Event reçu de Aqara-Hub-M1S-3774 : temperature.current=26.5
[10-05-2022 16:13:56][INFO] : Event reçu de Aqara-Hub-M1S-3774 : relative-humidity.current=36
[10-05-2022 16:14:35][DEBUG] : Déconnexion des Events reçu de tado Internet Bridge IB3005030144 : 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17
[10-05-2022 16:14:35][DEBUG] : ReSouscription en cours à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17...
2022-05-10T14:14:35.793Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:14:35.795Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:14:35.795Z hap-controller:tlv Add 32 bytes for tag 3: ec1780b5da100470712aad1af2c0c92e748648833af1a31df69d4f3e75c8d05d
2022-05-10T14:14:35.795Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 0601010320ec1780b5da100470712aad1af2c0c92e748648833af1a31df69d4f3e75c8d05d (application/pairing+tlv8)
2022-05-10T14:14:35.868Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 140 byte data
2022-05-10T14:14:35.869Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:14:35.869Z hap-controller:tlv Read 32 bytes for tag 3: 62779ca84c0d5e17a14eb7b28502b23ddc2f9697b90274a2474352e75671cb25
2022-05-10T14:14:35.869Z hap-controller:tlv Read 101 bytes for tag 5: fb334ef49ee550d8142563294fa0be24379531e10505466df07b9b7aa4887b61ab68050c48aa0e1a4a509b7b8c6c70612779d876fb4a51553707d56ad0df0a05a49200cf5daadd746275bc20428d6577508c7602beb479dff79dc31dca8314ca5a3c3c7958
2022-05-10T14:14:35.872Z hap-controller:tlv Read 17 bytes for tag 1: 31623a64633a38613a36313a65373a3134
2022-05-10T14:14:35.872Z hap-controller:tlv Read 64 bytes for tag 10: 1f5d4d5fa03e6c144a1d089908e8a7417ce396d7a12dc8bbe194c31c963570e5de96744f3485748f9b3b1bbe938a1a295a7af42380177efdca1534a9006b560e
2022-05-10T14:14:35.873Z hap-controller:tlv Add 36 bytes for tag 1: 61313466666331622d346361342d346166352d396334662d383361363931643265333666
2022-05-10T14:14:35.874Z hap-controller:tlv Add 64 bytes for tag 10: 98749f0dd6c370316ee648edf0f0d8308b241a1bfc68af997954b464f6841788384c0c53cbceb5ca6335ff6bbf61a541405ff06bd61e19d61a2fce4796f7d80f
2022-05-10T14:14:35.874Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:14:35.874Z hap-controller:tlv Add 120 bytes for tag 5: 7e6b348eb34ca8d2743af5af8f21980d657dca23fe485d63308f846aeb3a1b61e81bece30f33ff38ba755435208a628135e71108c96d06b76434adbfdd2eec8b31fd16d638ea14928ec9d9646eec23f5f3f239a94f23d6c98fd6e99a3c268112abf84839101121cf897067ea2caaaf5f1fb9c3b3ac326915
2022-05-10T14:14:35.874Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 06010305787e6b348eb34ca8d2743af5af8f21980d657dca23fe485d63308f846aeb3a1b61e81bece30f33ff38ba755435208a628135e71108c96d06b76434adbfdd2eec8b31fd16d638ea14928ec9d9646eec23f5f3f239a94f23d6c98fd6e99a3c268112abf84839101121cf897067ea2caaaf5f1fb9c3b3ac326915 (application/pairing+tlv8)
2022-05-10T14:14:35.969Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 3 byte data
2022-05-10T14:14:35.970Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:14:35.970Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:14:35.972Z hap-controller:http-connection 192.168.1.73:80 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a322c22696964223a31322c226576223a747275657d2c7b22616964223a322c22696964223a31332c226576223a747275657d2c7b22616964223a322c22696964223a31342c226576223a747275657d2c7b22616964223a322c22696964223a31352c226576223a747275657d2c7b22616964223a322c22696964223a31362c226576223a747275657d2c7b22616964223a322c22696964223a31372c226576223a747275657d2c7b22616964223a332c22696964223a31322c226576223a747275657d2c7b22616964223a332c22696964223a31332c226576223a747275657d2c7b22616964223a332c22696964223a31342c226576223a747275657d2c7b22616964223a332c22696964223a31352c226576223a747275657d2c7b22616964223a332c22696964223a31362c226576223a747275657d2c7b22616964223a332c22696964223a31372c226576223a747275657d2c7b22616964223a342c22696964223a31322c226576223a747275657d2c7b22616964223a342c22696964223a31332c226576223a747275657d2c7b22616964223a342c22696964223a31342c226576223a747275657d2c7b22616964223a342c22696964223a31352c226576223a747275657d2c7b22616964223a342c22696964223a31362c226576223a747275657d2c7b22616964223a342c22696964223a31372c226576223a747275657d2c7b22616964223a352c22696964223a31322c226576223a747275657d2c7b22616964223a352c22696964223a31332c226576223a747275657d2c7b22616964223a352c22696964223a31342c226576223a747275657d2c7b22616964223a352c22696964223a31352c226576223a747275657d2c7b22616964223a352c22696964223a31362c226576223a747275657d2c7b22616964223a352c22696964223a31372c226576223a747275657d5d7d
2022-05-10T14:14:36.000Z hap-controller:http-connection 192.168.1.73:80 Response 204 with 0 byte data
[10-05-2022 16:14:36][DEBUG] : ReSouscrit correctement à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17
[10-05-2022 16:15:47][DEBUG] : Déconnexion des Events reçu de tado Internet Bridge IB3005030144 : 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17
[10-05-2022 16:15:47][DEBUG] : ReSouscription en cours à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17...
2022-05-10T14:15:47.471Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:15:47.473Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:15:47.473Z hap-controller:tlv Add 32 bytes for tag 3: d8012569714c35744259bb4e5f34d8c7adf4a99dd4d249930eae8b0158e1c759
2022-05-10T14:15:47.473Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 0601010320d8012569714c35744259bb4e5f34d8c7adf4a99dd4d249930eae8b0158e1c759 (application/pairing+tlv8)
2022-05-10T14:15:47.547Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 140 byte data
2022-05-10T14:15:47.548Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:15:47.548Z hap-controller:tlv Read 32 bytes for tag 3: 33e881dc814004c322b447dda41dc4ad68fa4ebc28b63774e26e8295cc731206
2022-05-10T14:15:47.548Z hap-controller:tlv Read 101 bytes for tag 5: 6d1e675bd38438cbb10606d67ba6754050d98fbe2b1b237159dc3cc9883af4f0140d1c3850c6ee92599cae775fd2199d5bf885736b41626a77ca12be36a863eee2f2e3b8de0b7e3f20e06e5d71a7588abf0da2dcccc5229b239bf2cf41fd8987503de7ae28
2022-05-10T14:15:47.551Z hap-controller:tlv Read 17 bytes for tag 1: 31623a64633a38613a36313a65373a3134
2022-05-10T14:15:47.551Z hap-controller:tlv Read 64 bytes for tag 10: 4f935084270d35f8ecc5deeaea266eae5e5f9233c511f00e18d1e782c8f2cb7a2cfc575ad6cf034228daec6668aeef8efa366d8e8ad7fd9916ac9a1260543b09
2022-05-10T14:15:47.553Z hap-controller:tlv Add 36 bytes for tag 1: 61313466666331622d346361342d346166352d396334662d383361363931643265333666
2022-05-10T14:15:47.553Z hap-controller:tlv Add 64 bytes for tag 10: f9d6ba4fd49d03dabd0dce6285e89dc078b9fb51956446ebdfed0bad82e66964d1adfd15394c7d22e59089c86cbc7f057f4a1716197f851ae91dae010d33dc08
2022-05-10T14:15:47.553Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:15:47.553Z hap-controller:tlv Add 120 bytes for tag 5: aee20f438512eba37dc16fdff89de5fe80a9fbc242096f8b42b1d6a720d91b66f16e0f247ab4f3e45d9a3417b214c33d75a6570973743f2effa909f7d4bdd20e3e1d33804e915168878d2389a535e456bbf50155e775424ade221b43b2c88cde6fe23406c8b547427a0409012c9a71aaff36b0b8d7645b59
2022-05-10T14:15:47.553Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 0601030578aee20f438512eba37dc16fdff89de5fe80a9fbc242096f8b42b1d6a720d91b66f16e0f247ab4f3e45d9a3417b214c33d75a6570973743f2effa909f7d4bdd20e3e1d33804e915168878d2389a535e456bbf50155e775424ade221b43b2c88cde6fe23406c8b547427a0409012c9a71aaff36b0b8d7645b59 (application/pairing+tlv8)
2022-05-10T14:15:47.640Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 3 byte data
2022-05-10T14:15:47.641Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:15:47.641Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:15:47.643Z hap-controller:http-connection 192.168.1.73:80 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a322c22696964223a31322c226576223a747275657d2c7b22616964223a322c22696964223a31332c226576223a747275657d2c7b22616964223a322c22696964223a31342c226576223a747275657d2c7b22616964223a322c22696964223a31352c226576223a747275657d2c7b22616964223a322c22696964223a31362c226576223a747275657d2c7b22616964223a322c22696964223a31372c226576223a747275657d2c7b22616964223a332c22696964223a31322c226576223a747275657d2c7b22616964223a332c22696964223a31332c226576223a747275657d2c7b22616964223a332c22696964223a31342c226576223a747275657d2c7b22616964223a332c22696964223a31352c226576223a747275657d2c7b22616964223a332c22696964223a31362c226576223a747275657d2c7b22616964223a332c22696964223a31372c226576223a747275657d2c7b22616964223a342c22696964223a31322c226576223a747275657d2c7b22616964223a342c22696964223a31332c226576223a747275657d2c7b22616964223a342c22696964223a31342c226576223a747275657d2c7b22616964223a342c22696964223a31352c226576223a747275657d2c7b22616964223a342c22696964223a31362c226576223a747275657d2c7b22616964223a342c22696964223a31372c226576223a747275657d2c7b22616964223a352c22696964223a31322c226576223a747275657d2c7b22616964223a352c22696964223a31332c226576223a747275657d2c7b22616964223a352c22696964223a31342c226576223a747275657d2c7b22616964223a352c22696964223a31352c226576223a747275657d2c7b22616964223a352c22696964223a31362c226576223a747275657d2c7b22616964223a352c22696964223a31372c226576223a747275657d5d7d
2022-05-10T14:15:47.671Z hap-controller:http-connection 192.168.1.73:80 Response 204 with 0 byte data
[10-05-2022 16:15:47][DEBUG] : ReSouscrit correctement à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17
[10-05-2022 16:16:27][INFO] : Event reçu de Aqara-Hub-M1S-3774 : light-level.current=6669
[10-05-2022 16:16:32][INFO] : Event reçu de Aqara-Hub-M1S-3774 : light-level.current=7963
[10-05-2022 16:16:59][DEBUG] : Déconnexion des Events reçu de tado Internet Bridge IB3005030144 : 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17
[10-05-2022 16:16:59][DEBUG] : ReSouscription en cours à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17...
2022-05-10T14:16:59.151Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:16:59.153Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:16:59.153Z hap-controller:tlv Add 32 bytes for tag 3: 442559042fb9af24659d870e7cf473fc2ffbe380b8bc965fbb744ebcc3607938
2022-05-10T14:16:59.153Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 0601010320442559042fb9af24659d870e7cf473fc2ffbe380b8bc965fbb744ebcc3607938 (application/pairing+tlv8)
2022-05-10T14:16:59.234Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 140 byte data
2022-05-10T14:16:59.234Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:16:59.235Z hap-controller:tlv Read 32 bytes for tag 3: e5b293163517c136c955c4623e937dd2d2ee0fdc82e71c3361636e293be1ef6c
2022-05-10T14:16:59.235Z hap-controller:tlv Read 101 bytes for tag 5: 930e43ab2b1273a07682c30b46510811528b94e15724352e152d8deaf1dc1fb1c42445c9973668d49c5740dda2b59d397ad85ef313ac3ad9df5e073283e4550e33b6f54d0f173025fa6fbf24a761111c5742d6e406bab5f00826455e16f943e14b993823e6
2022-05-10T14:16:59.237Z hap-controller:tlv Read 17 bytes for tag 1: 31623a64633a38613a36313a65373a3134
2022-05-10T14:16:59.237Z hap-controller:tlv Read 64 bytes for tag 10: 913f6619cb9f5c9ee6c1578c1d48dd29a3b0617cbbd2e98f87a062ae5a0763c3106ccda79fdb3af408ebbdf520fe96f3a5768c14e795ec2ab064a366fe3b3d0d
2022-05-10T14:16:59.239Z hap-controller:tlv Add 36 bytes for tag 1: 61313466666331622d346361342d346166352d396334662d383361363931643265333666
2022-05-10T14:16:59.239Z hap-controller:tlv Add 64 bytes for tag 10: 9121208e866df21dcf14038b9f4988f1b8799237753fd8964ee3a948f92a74678bbbfdaeb8876b50bfc22bfa45be0b7eaf7a26b59d60821d303a44343f025c0a
2022-05-10T14:16:59.240Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:16:59.240Z hap-controller:tlv Add 120 bytes for tag 5: 1569019d9444c88dae4f83c8708189d4257724c0bcdfeb9b90522565d07077f63ff96244305b53f3a4115a7868b135c9515d0c535cd855525523d08fe8c7fc60af86fa78f6d7a0c502b5bdb646d00f8a999ab316127adea99c4c9217021dc52e3f8c14d2bd922920647959fb6755de70e3b035c504e39284
2022-05-10T14:16:59.240Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 06010305781569019d9444c88dae4f83c8708189d4257724c0bcdfeb9b90522565d07077f63ff96244305b53f3a4115a7868b135c9515d0c535cd855525523d08fe8c7fc60af86fa78f6d7a0c502b5bdb646d00f8a999ab316127adea99c4c9217021dc52e3f8c14d2bd922920647959fb6755de70e3b035c504e39284 (application/pairing+tlv8)
2022-05-10T14:16:59.327Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 3 byte data
2022-05-10T14:16:59.327Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:16:59.328Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:16:59.329Z hap-controller:http-connection 192.168.1.73:80 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a322c22696964223a31322c226576223a747275657d2c7b22616964223a322c22696964223a31332c226576223a747275657d2c7b22616964223a322c22696964223a31342c226576223a747275657d2c7b22616964223a322c22696964223a31352c226576223a747275657d2c7b22616964223a322c22696964223a31362c226576223a747275657d2c7b22616964223a322c22696964223a31372c226576223a747275657d2c7b22616964223a332c22696964223a31322c226576223a747275657d2c7b22616964223a332c22696964223a31332c226576223a747275657d2c7b22616964223a332c22696964223a31342c226576223a747275657d2c7b22616964223a332c22696964223a31352c226576223a747275657d2c7b22616964223a332c22696964223a31362c226576223a747275657d2c7b22616964223a332c22696964223a31372c226576223a747275657d2c7b22616964223a342c22696964223a31322c226576223a747275657d2c7b22616964223a342c22696964223a31332c226576223a747275657d2c7b22616964223a342c22696964223a31342c226576223a747275657d2c7b22616964223a342c22696964223a31352c226576223a747275657d2c7b22616964223a342c22696964223a31362c226576223a747275657d2c7b22616964223a342c22696964223a31372c226576223a747275657d2c7b22616964223a352c22696964223a31322c226576223a747275657d2c7b22616964223a352c22696964223a31332c226576223a747275657d2c7b22616964223a352c22696964223a31342c226576223a747275657d2c7b22616964223a352c22696964223a31352c226576223a747275657d2c7b22616964223a352c22696964223a31362c226576223a747275657d2c7b22616964223a352c22696964223a31372c226576223a747275657d5d7d
2022-05-10T14:16:59.358Z hap-controller:http-connection 192.168.1.73:80 Response 204 with 0 byte data
[10-05-2022 16:16:59][DEBUG] : ReSouscrit correctement à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17
[10-05-2022 16:17:33][INFO] : Event reçu de Aqara-Hub-M1S-3774 : status-lo-batt=0
[10-05-2022 16:17:36][INFO] : Event reçu de Aqara-Hub-M1S-3774 : status-lo-batt=0
[10-05-2022 16:18:07][INFO] : Event reçu de Aqara-Hub-M1S-3774 : status-lo-batt=0
[10-05-2022 16:18:10][DEBUG] : Déconnexion des Events reçu de tado Internet Bridge IB3005030144 : 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17
[10-05-2022 16:18:10][DEBUG] : ReSouscription en cours à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17...
2022-05-10T14:18:10.831Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:18:10.833Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:18:10.833Z hap-controller:tlv Add 32 bytes for tag 3: 17604a3028603fc3ffe286e55d5cd881bf7a700cf0cf5669c1762ef036bb693e
2022-05-10T14:18:10.834Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 060101032017604a3028603fc3ffe286e55d5cd881bf7a700cf0cf5669c1762ef036bb693e (application/pairing+tlv8)
2022-05-10T14:18:10.913Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 140 byte data
2022-05-10T14:18:10.913Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:18:10.914Z hap-controller:tlv Read 32 bytes for tag 3: 8c31ea8f67ec66245447a7f88e397fe106af75848d67500b1548ec2296dc2a08
2022-05-10T14:18:10.914Z hap-controller:tlv Read 101 bytes for tag 5: 2e80176d6d7919c1f393a775a1a97da95860be2831a2218c20b46888d3bb47ea044d292a0448caea2db3046a37c65e9cbe1e39b33c262e1d14b8cdf019e8071f46e8884b67ec2b54ea9896a963b182829d3116a6fe69beb80ec86064c8b72360e49701399a
2022-05-10T14:18:10.916Z hap-controller:tlv Read 17 bytes for tag 1: 31623a64633a38613a36313a65373a3134
2022-05-10T14:18:10.916Z hap-controller:tlv Read 64 bytes for tag 10: fef8ec245f82ea93177a4293fe433ebe21f20745cdb1c51760093791d649679773071e9ac3f41accebd384498b9af3b38293dded4ba81cfa3c6a68005f3ef50b
2022-05-10T14:18:10.918Z hap-controller:tlv Add 36 bytes for tag 1: 61313466666331622d346361342d346166352d396334662d383361363931643265333666
2022-05-10T14:18:10.918Z hap-controller:tlv Add 64 bytes for tag 10: b5f9d96bae587ce0d17b04d42571cd9a51a530e0b88b013553392764674c8439ea95e9b12c513c861f3bf2d388cba5a6123a9810e66ddbfdcd681c53baa1890d
2022-05-10T14:18:10.918Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:18:10.919Z hap-controller:tlv Add 120 bytes for tag 5: a5ef3205bf66ebfe7141c1d9e4a623bdc9d0d02ebd93faa0c065ea2c5952cf7b7dd6078b0ca6c61af7d33f88ba54c1a1e11d4ad4aa3fe9526f57663cd65b5d9d3bde1c9f5a46d70e9ecbc6c2dca68fb1c7544d2b502a844b1c97942826115d4a22708bbeb98e4e2b7859dcf4977293c349a58293df296207
2022-05-10T14:18:10.919Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 0601030578a5ef3205bf66ebfe7141c1d9e4a623bdc9d0d02ebd93faa0c065ea2c5952cf7b7dd6078b0ca6c61af7d33f88ba54c1a1e11d4ad4aa3fe9526f57663cd65b5d9d3bde1c9f5a46d70e9ecbc6c2dca68fb1c7544d2b502a844b1c97942826115d4a22708bbeb98e4e2b7859dcf4977293c349a58293df296207 (application/pairing+tlv8)
2022-05-10T14:18:11.006Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 3 byte data
2022-05-10T14:18:11.006Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:18:11.007Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:18:11.009Z hap-controller:http-connection 192.168.1.73:80 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a322c22696964223a31322c226576223a747275657d2c7b22616964223a322c22696964223a31332c226576223a747275657d2c7b22616964223a322c22696964223a31342c226576223a747275657d2c7b22616964223a322c22696964223a31352c226576223a747275657d2c7b22616964223a322c22696964223a31362c226576223a747275657d2c7b22616964223a322c22696964223a31372c226576223a747275657d2c7b22616964223a332c22696964223a31322c226576223a747275657d2c7b22616964223a332c22696964223a31332c226576223a747275657d2c7b22616964223a332c22696964223a31342c226576223a747275657d2c7b22616964223a332c22696964223a31352c226576223a747275657d2c7b22616964223a332c22696964223a31362c226576223a747275657d2c7b22616964223a332c22696964223a31372c226576223a747275657d2c7b22616964223a342c22696964223a31322c226576223a747275657d2c7b22616964223a342c22696964223a31332c226576223a747275657d2c7b22616964223a342c22696964223a31342c226576223a747275657d2c7b22616964223a342c22696964223a31352c226576223a747275657d2c7b22616964223a342c22696964223a31362c226576223a747275657d2c7b22616964223a342c22696964223a31372c226576223a747275657d2c7b22616964223a352c22696964223a31322c226576223a747275657d2c7b22616964223a352c22696964223a31332c226576223a747275657d2c7b22616964223a352c22696964223a31342c226576223a747275657d2c7b22616964223a352c22696964223a31352c226576223a747275657d2c7b22616964223a352c22696964223a31362c226576223a747275657d2c7b22616964223a352c22696964223a31372c226576223a747275657d5d7d
2022-05-10T14:18:11.036Z hap-controller:http-connection 192.168.1.73:80 Response 204 with 0 byte data
[10-05-2022 16:18:11][DEBUG] : ReSouscrit correctement à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17
[10-05-2022 16:18:23][INFO] : Event reçu de Aqara-Hub-M1S-3774 : status-lo-batt=0
[10-05-2022 16:18:38][INFO] : Event reçu de Aqara-Hub-M1S-3774 : status-lo-batt=0
[10-05-2022 16:19:22][DEBUG] : Déconnexion des Events reçu de tado Internet Bridge IB3005030144 : 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17
[10-05-2022 16:19:22][DEBUG] : ReSouscription en cours à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17...
2022-05-10T14:19:22.511Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T14:19:22.513Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T14:19:22.513Z hap-controller:tlv Add 32 bytes for tag 3: 621af2b58fa870876b04b415075c57456a894c97c4e3ee99d7e4d969d1e8891e
2022-05-10T14:19:22.513Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 0601010320621af2b58fa870876b04b415075c57456a894c97c4e3ee99d7e4d969d1e8891e (application/pairing+tlv8)
2022-05-10T14:19:22.584Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 140 byte data
2022-05-10T14:19:22.584Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T14:19:22.585Z hap-controller:tlv Read 32 bytes for tag 3: 4e731b4e930f581636fbbc032b925d9ec73d5e45b927956336d5ca7785684f57
2022-05-10T14:19:22.585Z hap-controller:tlv Read 101 bytes for tag 5: 0fb306d8fbfe422bce375dfa894008564835e9c1dfd24afa7f9df51c2db058608a8104b8fdf3ea63a028336e4f9a46661321752331f310d7cdec1e8b4737c682d14ff0bffd7c05ccb33e3d92c0bbbb84fa6813972cb30489c12073944fc59b4ffc0658c9c5
2022-05-10T14:19:22.587Z hap-controller:tlv Read 17 bytes for tag 1: 31623a64633a38613a36313a65373a3134
2022-05-10T14:19:22.587Z hap-controller:tlv Read 64 bytes for tag 10: ac2d7251661c219065a1bdfc6915f68886ce7c34e4ef6430b1bfc81c9a7829033487111b98cfe76c080c22b94e00a7e5f57e35c48f258abbe37b4b57a0483305
2022-05-10T14:19:22.589Z hap-controller:tlv Add 36 bytes for tag 1: 61313466666331622d346361342d346166352d396334662d383361363931643265333666
2022-05-10T14:19:22.589Z hap-controller:tlv Add 64 bytes for tag 10: 821a408b994514746e7153f65e5201db0ac027b1ead38a0bdfe8668f7f46a984dc1095d93956715f8c2547e2ead7d73473bbbcc8f483df12170793ac88596e0f
2022-05-10T14:19:22.590Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T14:19:22.590Z hap-controller:tlv Add 120 bytes for tag 5: c94369ec4c0bda85f4a9232f548808c2fabdb47794316d70a30f62a2f81731878cad5453f2c3e7553c7ca66777ed2d3dfb884df04663e4c82a873eee4697db89f5687193e28aed5c3c0a1806e4a89c39979ee173c020679013624d0d53722a052352f1f9f99a3e4fe45cae484a440c9aaddc298d7e85a357
2022-05-10T14:19:22.590Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 0601030578c94369ec4c0bda85f4a9232f548808c2fabdb47794316d70a30f62a2f81731878cad5453f2c3e7553c7ca66777ed2d3dfb884df04663e4c82a873eee4697db89f5687193e28aed5c3c0a1806e4a89c39979ee173c020679013624d0d53722a052352f1f9f99a3e4fe45cae484a440c9aaddc298d7e85a357 (application/pairing+tlv8)
2022-05-10T14:19:22.677Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 3 byte data
2022-05-10T14:19:22.678Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T14:19:22.678Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T14:19:22.680Z hap-controller:http-connection 192.168.1.73:80 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a322c22696964223a31322c226576223a747275657d2c7b22616964223a322c22696964223a31332c226576223a747275657d2c7b22616964223a322c22696964223a31342c226576223a747275657d2c7b22616964223a322c22696964223a31352c226576223a747275657d2c7b22616964223a322c22696964223a31362c226576223a747275657d2c7b22616964223a322c22696964223a31372c226576223a747275657d2c7b22616964223a332c22696964223a31322c226576223a747275657d2c7b22616964223a332c22696964223a31332c226576223a747275657d2c7b22616964223a332c22696964223a31342c226576223a747275657d2c7b22616964223a332c22696964223a31352c226576223a747275657d2c7b22616964223a332c22696964223a31362c226576223a747275657d2c7b22616964223a332c22696964223a31372c226576223a747275657d2c7b22616964223a342c22696964223a31322c226576223a747275657d2c7b22616964223a342c22696964223a31332c226576223a747275657d2c7b22616964223a342c22696964223a31342c226576223a747275657d2c7b22616964223a342c22696964223a31352c226576223a747275657d2c7b22616964223a342c22696964223a31362c226576223a747275657d2c7b22616964223a342c22696964223a31372c226576223a747275657d2c7b22616964223a352c22696964223a31322c226576223a747275657d2c7b22616964223a352c22696964223a31332c226576223a747275657d2c7b22616964223a352c22696964223a31342c226576223a747275657d2c7b22616964223a352c22696964223a31352c226576223a747275657d2c7b22616964223a352c22696964223a31362c226576223a747275657d2c7b22616964223a352c22696964223a31372c226576223a747275657d5d7d
2022-05-10T14:19:22.707Z hap-controller:http-connection 192.168.1.73:80 Response 204 with 0 byte data
[10-05-2022 16:19:22][DEBUG] : ReSouscrit correctement à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17
NebzHB commented 2 years ago

and with the new parameter :

[10-05-2022 15:31:07][INFO] : Démarrage démon hkControl...
[10-05-2022 15:31:07][DEBUG] : urlJeedom = http://192.168.1.53/core/api/jeeApi.php
[10-05-2022 15:31:07][DEBUG] : apiKey = harQHSAb5bRuth56KXeeLu4Bh4AqSLZf
[10-05-2022 15:31:07][DEBUG] : serverPort = 55073
[10-05-2022 15:31:07][DEBUG] : logLevel = debug
[10-05-2022 15:31:07][DEBUG] : pairingFile = /var/www/html/plugins/hkControl/data/pairings.json
[10-05-2022 15:31:07][DEBUG] : jeedom42 = 1
[10-05-2022 15:31:07][DEBUG] : pairings = {"AE:44:A6:10:F4:A4":{"name":"Prise Control","pin":"433-61-650","address":"192.168.1.71","port":"5001","type":"2","pairing":{"AccessoryPairingID":"41453a34343a41363a31303a46343a4134","AccessoryLTPK":"22e8a110fe5b30d717e43b2e2dd40b0fe1537b12c74b83aaa46c0ff3112e4f23","iOSDevicePairingID":"35613730393333342d366361352d346230312d386565382d356231353833333630303834","iOSDeviceLTSK":"bd093e16bc64fe44095721ae4632a82eba9019f3fc0070f95ea0159205b418839a3f1da3c6c807dea06a56b05bbae4205c8844f4097b7d2e422caa36365881b3","iOSDeviceLTPK":"9a3f1da3c6c807dea06a56b05bbae4205c8844f4097b7d2e422caa36365881b3"},"accessories":["TOO LONG FOR GITHUB"],"client":null}}
[10-05-2022 15:31:07][INFO] : Démon prêt et à l'écoute !
[10-05-2022 15:31:08][DEBUG] : Bonjour reçu : {"name":"tado Internet Bridge IB3005030144","address":"192.168.1.73","port":80,"c#":5,"ff":1,"id":"1b:dc:8a:61:e7:14","md":"tado Internet Bridge","pv":"1.0","s#":1,"sf":0,"ci":2,"availableToPair":false}
[10-05-2022 15:31:08][DEBUG] : Bonjour reçu : {"name":"tado Internet Bridge IB3005030144","address":"192.168.1.73","port":80,"c#":5,"ff":1,"id":"1b:dc:8a:61:e7:14","md":"tado Internet Bridge","pv":"1.0","s#":1,"sf":0,"ci":2,"availableToPair":false}
[10-05-2022 15:31:08][INFO] : Connexion à l'accessoire tado Internet Bridge IB3005030144(1b:dc:8a:61:e7:14) sur 192.168.1.73:80 avec {"AccessoryPairingID":"31623a64633a38613a36313a65373a3134","AccessoryLTPK":"e0e7ce02273c27ced794e5b9402a8abd7ab2f134301fb759f88ebb8e108ea0b0","iOSDevicePairingID":"61313466666331622d346361342d346166352d396334662d383361363931643265333666","iOSDeviceLTSK":"de761f61b658434e7b1f5ecbca8af1235eebd7305f2f22a185d83c1e68c24c9c8354be6a3f998bba7626b526b57d2a15e4e90c3a9af3b4c669d9a365d6b1ee4c","iOSDeviceLTPK":"8354be6a3f998bba7626b526b57d2a15e4e90c3a9af3b4c669d9a365d6b1ee4c"}
[10-05-2022 15:31:08][DEBUG] : Ajout d'un écouteur d'évenements pour tado Internet Bridge IB3005030144
[10-05-2022 15:31:08][DEBUG] : Analyse de l'accessoire tado Internet Bridge IB3005030144 ...
[10-05-2022 15:31:08][DEBUG] : Récupération en cours de la description de l'accessoire...
2022-05-10T13:31:08.116Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T13:31:08.118Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T13:31:08.118Z hap-controller:tlv Add 32 bytes for tag 3: b59b8d68b9ba2bf051a1f31feb8da20dfca97074fdb0f9e216cc0a3e5c21232b
2022-05-10T13:31:08.119Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 0601010320b59b8d68b9ba2bf051a1f31feb8da20dfca97074fdb0f9e216cc0a3e5c21232b (application/pairing+tlv8)
[10-05-2022 15:31:08][DEBUG] : Bonjour reçu : {"name":"Aqara-Hub-M1S-3774","address":"192.168.1.72","port":49668,"c#":129,"ff":2,"id":"AB:15:76:41:4A:FD","md":"HM1S-G01","pv":"1.1","s#":261,"sf":0,"ci":2,"availableToPair":false}
[10-05-2022 15:31:08][DEBUG] : Bonjour reçu : {"name":"Aqara-Hub-M1S-3774","address":"192.168.1.72","port":49668,"c#":129,"ff":2,"id":"AB:15:76:41:4A:FD","md":"HM1S-G01","pv":"1.1","s#":261,"sf":0,"ci":2,"availableToPair":false}
[10-05-2022 15:31:08][INFO] : Connexion à l'accessoire Aqara-Hub-M1S-3774(AB:15:76:41:4A:FD) sur 192.168.1.72:49668 avec {"AccessoryPairingID":"41423a31353a37363a34313a34413a4644","AccessoryLTPK":"0b9f1522b0357693faebe5e5fa2cd07aff7f34719c0c229044964a723f1509e3","iOSDevicePairingID":"36663033336234322d636166392d346666642d623430392d373866666163326637303939","iOSDeviceLTSK":"697888ddef41e861b07b09e4fda919fc6feb3eb041dc38c1989b4832cd3fff57724c16f70e9d0aee0744952380d1e4c4beed3f1568286cab4521082d51977175","iOSDeviceLTPK":"724c16f70e9d0aee0744952380d1e4c4beed3f1568286cab4521082d51977175"}
[10-05-2022 15:31:08][DEBUG] : Ajout d'un écouteur d'évenements pour Aqara-Hub-M1S-3774
[10-05-2022 15:31:08][DEBUG] : Analyse de l'accessoire Aqara-Hub-M1S-3774 ...
[10-05-2022 15:31:08][DEBUG] : Récupération en cours de la description de l'accessoire...
2022-05-10T13:31:08.176Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T13:31:08.178Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T13:31:08.178Z hap-controller:tlv Add 32 bytes for tag 3: 00e710f52f1e1192c1db6ec504c9394733db59a277afdd86d2e6a9a1e1fc5913
2022-05-10T13:31:08.178Z hap-controller:http-connection 192.168.1.72:49668 POST /pair-verify 060101032000e710f52f1e1192c1db6ec504c9394733db59a277afdd86d2e6a9a1e1fc5913 (application/pairing+tlv8)
[10-05-2022 15:31:08][DEBUG] : Bonjour reçu : {"name":"Prise Control","address":"192.168.1.71","port":5001,"c#":16,"ff":1,"id":"AE:44:A6:10:F4:A4","md":"Bubendorff Gateway\u0000","pv":"1.1","s#":1,"sf":0,"ci":2,"availableToPair":false}
[10-05-2022 15:31:08][DEBUG] : Bonjour reçu : {"name":"Prise Control","address":"192.168.1.71","port":5001,"c#":16,"ff":1,"id":"AE:44:A6:10:F4:A4","md":"Bubendorff Gateway\u0000","pv":"1.1","s#":1,"sf":0,"ci":2,"availableToPair":false}
[10-05-2022 15:31:08][INFO] : Connexion à l'accessoire Prise Control(AE:44:A6:10:F4:A4) sur 192.168.1.71:5001 avec {"AccessoryPairingID":"41453a34343a41363a31303a46343a4134","AccessoryLTPK":"22e8a110fe5b30d717e43b2e2dd40b0fe1537b12c74b83aaa46c0ff3112e4f23","iOSDevicePairingID":"35613730393333342d366361352d346230312d386565382d356231353833333630303834","iOSDeviceLTSK":"bd093e16bc64fe44095721ae4632a82eba9019f3fc0070f95ea0159205b418839a3f1da3c6c807dea06a56b05bbae4205c8844f4097b7d2e422caa36365881b3","iOSDeviceLTPK":"9a3f1da3c6c807dea06a56b05bbae4205c8844f4097b7d2e422caa36365881b3"}
[10-05-2022 15:31:08][DEBUG] : Ajout d'un écouteur d'évenements pour Prise Control
[10-05-2022 15:31:08][DEBUG] : Analyse de l'accessoire Prise Control ...
[10-05-2022 15:31:08][DEBUG] : Récupération en cours de la description de l'accessoire...
2022-05-10T13:31:08.193Z hap-controller:http-client Start Pair-Verify process ...
2022-05-10T13:31:08.194Z hap-controller:tlv Add 1 bytes for tag 6: 01
2022-05-10T13:31:08.194Z hap-controller:tlv Add 32 bytes for tag 3: c4bbc0c0980e487ae252d943bdd01f4899f07735d4d4cb70766a61fbc13fcb15
2022-05-10T13:31:08.194Z hap-controller:http-connection 192.168.1.71:5001 POST /pair-verify 0601010320c4bbc0c0980e487ae252d943bdd01f4899f07735d4d4cb70766a61fbc13fcb15 (application/pairing+tlv8)
2022-05-10T13:31:08.200Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 140 byte data
2022-05-10T13:31:08.201Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T13:31:08.201Z hap-controller:tlv Read 32 bytes for tag 3: 38aba3062a0d2bedf7a0b7f865b23923b08574d96a74bb124beca07781c8f203
2022-05-10T13:31:08.201Z hap-controller:tlv Read 101 bytes for tag 5: 27d8627c91b91f1e76e77fd8504a8e219736b0418daac66520028af9f40a39b2d74dac3896af2a5aa94f1b2c597e2488ee53ba975179a5a6a965a3df3a68bfa15ec22cefe6b0233044ab846a45d4fbe3f31bbf4b71c19291e94de56aca9438ba6ab93d2367
2022-05-10T13:31:08.209Z hap-controller:tlv Read 17 bytes for tag 1: 31623a64633a38613a36313a65373a3134
2022-05-10T13:31:08.209Z hap-controller:tlv Read 64 bytes for tag 10: 8db2e6cb846c1e029bd0d1493bb3cfb4fff2c0d23a0f984392ba7e949761bab353de23ec1d09db0d5c8817e5cef6d75096d765c4da81699509f5568b7dd8b704
2022-05-10T13:31:08.212Z hap-controller:tlv Add 36 bytes for tag 1: 61313466666331622d346361342d346166352d396334662d383361363931643265333666
2022-05-10T13:31:08.212Z hap-controller:tlv Add 64 bytes for tag 10: de82f5444d0826199ec63c70c02f8873d4ede6370b69a6774eea2307bdfd8d172bd0e0489da83a9e0d388a3d48f6798be9d8cf6794a7c4a0e06600a5c609d400
2022-05-10T13:31:08.212Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T13:31:08.212Z hap-controller:tlv Add 120 bytes for tag 5: c8b5b23e02c44b6cf90c1f8ee37e7ff192b8bca6d0f02996b4532010871b538a768fbd11c1bcb5776c991a56d0753bebbd26e1a65331c4d9cfd046adf9b37a116aa8c26af2e82aefa572a9b5168c8aff3f1482a138a4bc426854c1d01a3ae074d422f4bc655bb54e876cf9d67efd48f967354fd17bd28234
2022-05-10T13:31:08.213Z hap-controller:http-connection 192.168.1.73:80 POST /pair-verify 0601030578c8b5b23e02c44b6cf90c1f8ee37e7ff192b8bca6d0f02996b4532010871b538a768fbd11c1bcb5776c991a56d0753bebbd26e1a65331c4d9cfd046adf9b37a116aa8c26af2e82aefa572a9b5168c8aff3f1482a138a4bc426854c1d01a3ae074d422f4bc655bb54e876cf9d67efd48f967354fd17bd28234 (application/pairing+tlv8)
2022-05-10T13:31:08.213Z hap-controller:http-connection 192.168.1.72:49668 Response 200 with 140 byte data
2022-05-10T13:31:08.214Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T13:31:08.214Z hap-controller:tlv Read 32 bytes for tag 3: cd94c4884837fe9c8dcce88106e7ddf815ef19ec65c1b62115343a4b3772fd35
2022-05-10T13:31:08.214Z hap-controller:tlv Read 101 bytes for tag 5: 4372320f92cd32097803911e43f85bd71bd1a77baba04aec42130d7699b0c02323d8b7441c8004e95b8837f630ae5bdcfb24a019472078aa7a48496fa250c599bc0197ad13d82c885f66c842266c9c3c8b543cdd708ac724ebbcbd7b82bcd6e2aa0659d0f3
2022-05-10T13:31:08.215Z hap-controller:tlv Read 17 bytes for tag 1: 41423a31353a37363a34313a34413a4644
2022-05-10T13:31:08.215Z hap-controller:tlv Read 64 bytes for tag 10: 3b0c2b55ce868111232d560b1068240c3beec8cafa61cbb15fe504814187b554897027ae3ac1c7f01c1a9af5089b1a886530a26094a87055f26edb032c012c00
2022-05-10T13:31:08.216Z hap-controller:tlv Add 36 bytes for tag 1: 36663033336234322d636166392d346666642d623430392d373866666163326637303939
2022-05-10T13:31:08.216Z hap-controller:tlv Add 64 bytes for tag 10: 66645d98b3ceaf945cc3f1126e6901f749f93c14cdb49b04a4db1c78ac090e28a3acc7fc3e3cc6dc8b417ce5c5e15bc1b777105d5458c5742d90532ecb559d0d
2022-05-10T13:31:08.216Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T13:31:08.216Z hap-controller:tlv Add 120 bytes for tag 5: 9c57239efef65272206e2d971b6d17146478b32dba4d1bf6e910895712db37ca4a0930f5b9f75303f07ead9402593c53d520f50f5845eee3fa22dc7b06f024d9520e541470a95468ca13c89037ef7b0a6872fb8c4b2ec8f6400063b0747677ba51164373124d2f6ff7cfd7ba7dc96f00566760851f39fbe7
2022-05-10T13:31:08.216Z hap-controller:http-connection 192.168.1.72:49668 POST /pair-verify 06010305789c57239efef65272206e2d971b6d17146478b32dba4d1bf6e910895712db37ca4a0930f5b9f75303f07ead9402593c53d520f50f5845eee3fa22dc7b06f024d9520e541470a95468ca13c89037ef7b0a6872fb8c4b2ec8f6400063b0747677ba51164373124d2f6ff7cfd7ba7dc96f00566760851f39fbe7 (application/pairing+tlv8)
2022-05-10T13:31:08.228Z hap-controller:http-connection 192.168.1.72:49668 Response 200 with 3 byte data
2022-05-10T13:31:08.229Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T13:31:08.229Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T13:31:08.230Z hap-controller:http-client New persistent connection client initialized
2022-05-10T13:31:08.231Z hap-controller:http-connection 192.168.1.72:49668 GET /accessories
2022-05-10T13:31:08.301Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 3 byte data
2022-05-10T13:31:08.301Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T13:31:08.301Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T13:31:08.302Z hap-controller:http-client New persistent connection client initialized
2022-05-10T13:31:08.302Z hap-controller:http-connection 192.168.1.73:80 GET /accessories
2022-05-10T13:31:08.314Z hap-controller:http-connection 192.168.1.72:49668 Response 200 with 79251 byte data
addTypeLabels: 3.297ms
[10-05-2022 15:31:08][INFO] : Description de l'accessoire reçue : TOO LONG FOR GITHUB
[10-05-2022 15:31:08][DEBUG] : Envoi de l'Accessory brut : {"eventType":"getAccessories","id":"AB:15:76:41:4A:FD","refresh":false}
[10-05-2022 15:31:08][DEBUG] : Souscription pour Aqara-Hub-M1S-3774
[10-05-2022 15:31:08][DEBUG] : Souscription en cours à Aqara-Hub-M1S-3774 sur 1.262147,1.1048579,1.1048580,1.1048581,1.1048582,1.1114115,1.1114116,1.1179653,1.1179656,34.262147,34.327683,34.458755,34.458757,34.458756,35.262147,35.327683,35.327685,35.327684,39.262147,39.262148,39.327683,39.327685,39.327684,40.262147,40.327683,40.327685,40.327684,41.262147,41.262148,42.262147,42.327683,42.327685,42.327684,44.327683,44.393219,47.262147,47.262148,48.262147,48.327683,48.393219,48.393221,48.393220,49.262147,49.327683,49.327685,49.327684,50.262147,50.327683,50.458755,50.458757,50.458756,51.262147,51.327683,51.327685,51.327684,52.262147,52.327683,52.327685,52.327684,53.262147,53.327683,53.327685,53.327684,54.262147,54.327683,54.327685,54.327684,56.262147,56.327683,56.458755,56.458757,56.458756,58.262147,58.327683,58.393219,58.393221,58.393220,59.262147,59.327683,59.393219,59.393221,59.393220,60.262147,60.262148,61.262147,61.327683,61.393219,61.393221,61.393220,63.262147,63.262148,64.262147,64.327683,64.327685,64.327684,65.262147,65.327683,65.327685,65.327684,66.262147,66.327683,66.327685,66.327684,67.262147,67.327683,67.393219,67.393221,67.393220,68.327683,68.393219,72.262147,72.327683,72.393219,72.393221,72.393220,73.262147,73.262148,73.262149,73.262155,74.262147,74.262148,74.262149,74.262155,75.262147,75.262148,76.262147,76.327683,76.327685,76.327684,77.327683,78.262147,78.327683,78.458755,78.458757,78.458756,79.262147,79.327683,79.458755,79.458757,79.458756,80.262147,81.262147,81.327683,82.458755,82.458757,82.458756,82.589827,82.655363,83.1572867,83.1572868,83.1572869,83.1572875,83.1638403,83.1638404,83.1638405,83.1638408,84.262147,84.262148,84.327683,84.327685,84.327684,85.262147,85.327683,85.327685,85.327684,86.262147,86.262148,87.262147,87.262148,88.262147,88.262148,89.262147,89.327683,89.327685,89.327684,90.262147,90.262148...
2022-05-10T13:31:08.334Z hap-controller:http-client Reuse persistent connection client
2022-05-10T13:31:08.336Z hap-controller:http-connection 192.168.1.72:49668 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a312c22696964223a3236323134372c226576223a747275657d2c7b22616964223a312c22696964223a313034383537392c226576223a747275657d2c7b22616964223a312c22696964223a313034383538302c226576223a747275657d2c7b22616964223a312c22696964223a313034383538312c226576223a747275657d2c7b22616964223a312c22696964223a313034383538322c226576223a747275657d2c7b22616964223a312c22696964223a313131343131352c226576223a747275657d2c7b22616964223a312c22696964223a313131343131362c226576223a747275657d2c7b22616964223a312c22696964223a313137393635332c226576223a747275657d2c7b22616964223a312c22696964223a313137393635362c226576223a747275657d2c7b22616964223a33342c22696964223a3236323134372c226576223a747275657d2c7b22616964223a33342c22696964223a3332373638332c226576223a747275657d2c7b22616964223a33342c22696964223a3435383735352c226576223a747275657d2c7b22616964223a33342c22696964223a3435383735372c226576223a747275657d2c7b22616964223a33342c22696964223a3435383735362c226576223a747275657d2c7b22616964223a33352c22696964223a3236323134372c226576223a747275657d2c7b22616964223a33352c22696964223a3332373638332c226576223a747275657d2c7b22616964223a33352c22696964223a3332373638352c226576223a747275657d2c7b22616964223a33352c22696964223a3332373638342c226576223a747275657d2c7b22616964223a33392c22696964223a3236323134372c226576223a747275657d2c7b22616964223a33392c22696964223a3236323134382c226576223a747275657d2c7b22616964223a33392c22696964223a3332373638332c226576223a747275657d2c7b22616964223a33392c22696964223a3332373638352c226576223a747275657d2c7b22616964223a33392c22696964223a3332373638342c226576223a747275657d2c7b22616964223a34302c22696964223a3236323134372c226576223a747275657d2c7b22616964223a34302c22696964223a3332373638332c226576223a747275657d2c7b22616964223a34302c22696964223a3332373638352c226576223a747275657d2c7b22616964223a34302c22696964223a3332373638342c226576223a747275657d2c7b22616964223a34312c22696964223a3236323134372c226576223a747275657d2c7b22616964223a34312c22696964223a3236323134382c226576223a747275657d2c7b22616964223a34322c22696964223a3236323134372c226576223a747275657d2c7b22616964223a34322c22696964223a3332373638332c226576223a747275657d2c7b22616964223a34322c22696964223a3332373638352c226576223a747275657d2c7b22616964223a34322c22696964223a3332373638342c226576223a747275657d2c7b22616964223a34342c22696964223a3332373638332c226576223a747275657d2c7b22616964223a34342c22696964223a3339333231392c226576223a747275657d2c7b22616964223a34372c22696964223a3236323134372c226576223a747275657d2c7b22616964223a34372c22696964223a3236323134382c226576223a747275657d2c7b22616964223a34382c22696964223a3236323134372c226576223a747275657d2c7b22616964223a34382c22696964223a3332373638332c226576223a747275657d2c7b22616964223a34382c22696964223a3339333231392c226576223a747275657d2c7b22616964223a34382c22696964223a3339333232312c226576223a747275657d2c7b22616964223a34382c22696964223a3339333232302c226576223a747275657d2c7b22616964223a34392c22696964223a3236323134372c226576223a747275657d2c7b22616964223a34392c22696964223a3332373638332c226576223a747275657d2c7b22616964223a34392c22696964223a3332373638352c226576223a747275657d2c7b22616964223a34392c22696964223a3332373638342c226576223a747275657d2c7b22616964223a35302c22696964223a3236323134372c226576223a747275657d2c7b22616964223a35302c22696964223a3332373638332c226576223a747275657d2c7b22616964223a35302c22696964223a3435383735352c226576223a747275657d2c7b22616964223a35302c22696964223a3435383735372c226576223a747275657d2c7b22616964223a35302c22696964223a3435383735362c226576223a747275657d2c7b22616964223a35312c22696964223a3236323134372c226576223a747275657d2c7b22616964223a35312c22696964223a3332373638332c226576223a747275657d2c7b22616964223a35312c22696964223a3332373638352c226576223a747275657d2c7b22616964223a35312c22696964223a3332373638342c226576223a747275657d2c7b22616964223a35322c22696964223a3236323134372c226576223a747275657d2c7b22616964223a35322c22696964223a3332373638332c226576223a747275657d2c7b22616964223a35322c22696964223a3332373638352c226576223a747275657d2c7b22616964223a35322c22696964223a3332373638342c226576223a747275657d2c7b22616964223a35332c22696964223a3236323134372c226576223a747275657d2c7b22616964223a35332c22696964223a3332373638332c226576223a747275657d2c7b22616964223a35332c22696964223a3332373638352c226576223a747275657d2c7b22616964223a35332c22696964223a3332373638342c226576223a747275657d2c7b22616964223a35342c22696964223a3236323134372c226576223a747275657d2c7b22616964223a35342c22696964223a3332373638332c226576223a747275657d2c7b22616964223a35342c22696964223a3332373638352c226576223a747275657d2c7b22616964223a35342c22696964223a3332373638342c226576223a747275657d2c7b22616964223a35362c22696964223a3236323134372c226576223a747275657d2c7b22616964223a35362c22696964223a3332373638332c226576223a747275657d2c7b22616964223a35362c22696964223a3435383735352c226576223a747275657d2c7b22616964223a35362c22696964223a3435383735372c226576223a747275657d2c7b22616964223a35362c22696964223a3435383735362c226576223a747275657d2c7b22616964223a35382c22696964223a3236323134372c226576223a747275657d2c7b22616964223a35382c22696964223a3332373638332c226576223a747275657d2c7b22616964223a35382c22696964223a3339333231392c226576223a747275657d2c7b22616964223a35382c22696964223a3339333232312c226576223a747275657d2c7b22616964223a35382c22696964223a3339333232302c226576223a747275657d2c7b22616964223a35392c22696964223a3236323134372c226576223a747275657d2c7b22616964223a35392c22696964223a3332373638332c226576223a747275657d2c7b22616964223a35392c22696964223a3339333231392c226576223a747275657d2c7b22616964223a35392c22696964223a3339333232312c226576223a747275657d2c7b22616964223a35392c22696964223a3339333232302c226576223a747275657d2c7b22616964223a36302c22696964223a3236323134372c226576223a747275657d2c7b22616964223a36302c22696964223a3236323134382c226576223a747275657d2c7b22616964223a36312c22696964223a3236323134372c226576223a747275657d2c7b22616964223a36312c22696964223a3332373638332c226576223a747275657d2c7b22616964223a36312c22696964223a3339333231392c226576223a747275657d2c7b22616964223a36312c22696964223a3339333232312c226576223a747275657d2c7b22616964223a36312c22696964223a3339333232302c226576223a747275657d2c7b22616964223a36332c22696964223a3236323134372c226576223a747275657d2c7b22616964223a36332c22696964223a3236323134382c226576223a747275657d2c7b22616964223a36342c22696964223a3236323134372c226576223a747275657d2c7b22616964223a36342c22696964223a3332373638332c226576223a747275657d2c7b22616964223a36342c22696964223a3332373638352c226576223a747275657d2c7b22616964223a36342c22696964223a3332373638342c226576223a747275657d2c7b22616964223a36352c22696964223a3236323134372c226576223a747275657d2c7b22616964223a36352c22696964223a3332373638332c226576223a747275657d2c7b22616964223a36352c22696964223a3332373638352c226576223a747275657d2c7b22616964223a36352c22696964223a3332373638342c226576223a747275657d2c7b22616964223a36362c22696964223a3236323134372c226576223a747275657d2c7b22616964223a36362c22696964223a3332373638332c226576223a747275657d2c7b22616964223a36362c22696964223a3332373638352c226576223a747275657d2c7b22616964223a36362c22696964223a3332373638342c226576223a747275657d2c7b22616964223a36372c22696964223a3236323134372c226576223a747275657d2c7b22616964223a36372c22696964223a3332373638332c226576223a747275657d2c7b22616964223a36372c22696964223a3339333231392c226576223a747275657d2c7b22616964223a36372c22696964223a3339333232312c226576223a747275657d2c7b22616964223a36372c22696964223a3339333232302c226576223a747275657d2c7b22616964223a36382c22696964223a3332373638332c226576223a747275657d2c7b22616964223a36382c22696964223a3339333231392c226576223a747275657d2c7b22616964223a37322c22696964223a3236323134372c226576223a747275657d2c7b22616964223a37322c22696964223a3332373638332c226576223a747275657d2c7b22616964223a37322c22696964223a3339333231392c226576223a747275657d2c7b22616964223a37322c22696964223a3339333232312c226576223a747275657d2c7b22616964223a37322c22696964223a3339333232302c226576223a747275657d2c7b22616964223a37332c22696964223a3236323134372c226576223a747275657d2c7b22616964223a37332c22696964223a3236323134382c226576223a747275657d2c7b22616964223a37332c22696964223a3236323134392c226576223a747275657d2c7b22616964223a37332c22696964223a3236323135352c226576223a747275657d2c7b22616964223a37342c22696964223a3236323134372c226576223a747275657d2c7b22616964223a37342c22696964223a3236323134382c226576223a747275657d2c7b22616964223a37342c22696964223a3236323134392c226576223a747275657d2c7b22616964223a37342c22696964223a3236323135352c226576223a747275657d2c7b22616964223a37352c22696964223a3236323134372c226576223a747275657d2c7b22616964223a37352c22696964223a3236323134382c226576223a747275657d2c7b22616964223a37362c22696964223a3236323134372c226576223a747275657d2c7b22616964223a37362c22696964223a3332373638332c226576223a747275657d2c7b22616964223a37362c22696964223a3332373638352c226576223a747275657d2c7b22616964223a37362c22696964223a3332373638342c226576223a747275657d2c7b22616964223a37372c22696964223a3332373638332c226576223a747275657d2c7b22616964223a37382c22696964223a3236323134372c226576223a747275657d2c7b22616964223a37382c22696964223a3332373638332c226576223a747275657d2c7b22616964223a37382c22696964223a3435383735352c226576223a747275657d2c7b22616964223a37382c22696964223a3435383735372c226576223a747275657d2c7b22616964223a37382c22696964223a3435383735362c226576223a747275657d2c7b22616964223a37392c22696964223a3236323134372c226576223a747275657d2c7b22616964223a37392c22696964223a3332373638332c226576223a747275657d2c7b22616964223a37392c22696964223a3435383735352c226576223a747275657d2c7b22616964223a37392c22696964223a3435383735372c226576223a747275657d2c7b22616964223a37392c22696964223a3435383735362c226576223a747275657d2c7b22616964223a38302c22696964223a3236323134372c226576223a747275657d2c7b22616964223a38312c22696964223a3236323134372c226576223a747275657d2c7b22616964223a38312c22696964223a3332373638332c226576223a747275657d2c7b22616964223a38322c22696964223a3435383735352c226576223a747275657d2c7b22616964223a38322c22696964223a3435383735372c226576223a747275657d2c7b22616964223a38322c22696964223a3435383735362c226576223a747275657d2c7b22616964223a38322c22696964223a3538393832372c226576223a747275657d2c7b22616964223a38322c22696964223a3635353336332c226576223a747275657d2c7b22616964223a38332c22696964223a313537323836372c226576223a747275657d2c7b22616964223a38332c22696964223a313537323836382c226576223a747275657d2c7b22616964223a38332c22696964223a313537323836392c226576223a747275657d2c7b22616964223a38332c22696964223a313537323837352c226576223a747275657d2c7b22616964223a38332c22696964223a313633383430332c226576223a747275657d2c7b22616964223a38332c22696964223a313633383430342c226576223a747275657d2c7b22616964223a38332c22696964223a313633383430352c226576223a747275657d2c7b22616964223a38332c22696964223a313633383430382c226576223a747275657d2c7b22616964223a38342c22696964223a3236323134372c226576223a747275657d2c7b22616964223a38342c22696964223a3236323134382c226576223a747275657d2c7b22616964223a38342c22696964223a3332373638332c226576223a747275657d2c7b22616964223a38342c22696964223a3332373638352c226576223a747275657d2c7b22616964223a38342c22696964223a3332373638342c226576223a747275657d2c7b22616964223a38352c22696964223a3236323134372c226576223a747275657d2c7b22616964223a38352c22696964223a3332373638332c226576223a747275657d2c7b22616964223a38352c22696964223a3332373638352c226576223a747275657d2c7b22616964223a38352c22696964223a3332373638342c226576223a747275657d2c7b22616964223a38362c22696964223a3236323134372c226576223a747275657d2c7b22616964223a38362c22696964223a3236323134382c226576223a747275657d2c7b22616964223a38372c22696964223a3236323134372c226576223a747275657d2c7b22616964223a38372c22696964223a3236323134382c226576223a747275657d2c7b22616964223a38382c22696964223a3236323134372c226576223a747275657d2c7b22616964223a38382c22696964223a3236323134382c226576223a747275657d2c7b22616964223a38392c22696964223a3236323134372c226576223a747275657d2c7b22616964223a38392c22696964223a3332373638332c226576223a747275657d2c7b22616964223a38392c22696964223a3332373638352c226576223a747275657d2c7b22616964223a38392c22696964223a3332373638342c226576223a747275657d2c7b22616964223a39302c22696964223a3236323134372c226576223a747275657d2c7b22616964223a39302c22696964223a3236323134382c226576223a747275657d5d7d
2022-05-10T13:31:08.349Z hap-controller:http-connection 192.168.1.72:49668 Response 204 with 0 byte data
[10-05-2022 15:31:08][DEBUG] : Souscrit à Aqara-Hub-M1S-3774 sur 1.262147,1.1048579,1.1048580,1.1048581,1.1048582,1.1114115,1.1114116,1.1179653,1.1179656,34.262147,34.327683,34.458755,34.458757,34.458756,35.262147,35.327683,35.327685,35.327684,39.262147,39.262148,39.327683,39.327685,39.327684,40.262147,40.327683,40.327685,40.327684,41.262147,41.262148,42.262147,42.327683,42.327685,42.327684,44.327683,44.393219,47.262147,47.262148,48.262147,48.327683,48.393219,48.393221,48.393220,49.262147,49.327683,49.327685,49.327684,50.262147,50.327683,50.458755,50.458757,50.458756,51.262147,51.327683,51.327685,51.327684,52.262147,52.327683,52.327685,52.327684,53.262147,53.327683,53.327685,53.327684,54.262147,54.327683,54.327685,54.327684,56.262147,56.327683,56.458755,56.458757,56.458756,58.262147,58.327683,58.393219,58.393221,58.393220,59.262147,59.327683,59.393219,59.393221,59.393220,60.262147,60.262148,61.262147,61.327683,61.393219,61.393221,61.393220,63.262147,63.262148,64.262147,64.327683,64.327685,64.327684,65.262147,65.327683,65.327685,65.327684,66.262147,66.327683,66.327685,66.327684,67.262147,67.327683,67.393219,67.393221,67.393220,68.327683,68.393219,72.262147,72.327683,72.393219,72.393221,72.393220,73.262147,73.262148,73.262149,73.262155,74.262147,74.262148,74.262149,74.262155,75.262147,75.262148,76.262147,76.327683,76.327685,76.327684,77.327683,78.262147,78.327683,78.458755,78.458757,78.458756,79.262147,79.327683,79.458755,79.458757,79.458756,80.262147,81.262147,81.327683,82.458755,82.458757,82.458756,82.589827,82.655363,83.1572867,83.1572868,83.1572869,83.1572875,83.1638403,83.1638404,83.1638405,83.1638408,84.262147,84.262148,84.327683,84.327685,84.327684,85.262147,85.327683,85.327685,85.327684,86.262147,86.262148,87.262147,87.262148,88.262147,88.262148,89.262147,89.327683,89.327685,89.327684,90.262147,90.262148 !
2022-05-10T13:31:08.497Z hap-controller:http-connection 192.168.1.73:80 Response 200 with 7349 byte data
addTypeLabels: 0.802ms
[10-05-2022 15:31:08][INFO] : Description de l'accessoire reçue : {"accessories":[{"aid":1,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"primary":false,"hidden":false,"characteristics":[{"iid":2,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Internet Bridge IB3005030144","format":"string","typeLabel":"name"},{"iid":3,"type":"00000020-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado","format":"string","typeLabel":"manufacturer"},{"iid":4,"type":"00000030-0000-1000-8000-0026BB765291","perms":["pr"],"value":"IB3005030144","format":"string","typeLabel":"serial-number"},{"iid":5,"type":"00000021-0000-1000-8000-0026BB765291","perms":["pr"],"value":"IB01","format":"string","typeLabel":"model"},{"iid":6,"type":"00000052-0000-1000-8000-0026BB765291","perms":["pr"],"value":"92.1","format":"string","typeLabel":"firmware.revision"},{"iid":7,"type":"00000014-0000-1000-8000-0026BB765291","perms":["pw"],"format":"bool","typeLabel":"identify"}],"typeLabel":"accessory-information"},{"type":"E44673A0-247B-4360-8A76-DB9DA69C0100","iid":8,"primary":false,"hidden":true,"characteristics":[{"iid":9,"type":"E44673A0-247B-4360-8A76-DB9DA69C0101","perms":["pw"],"format":"string","typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0101"}],"typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0100"}]},{"aid":2,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"primary":false,"hidden":false,"characteristics":[{"iid":2,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Smart Thermostat SU2817924608","format":"string","typeLabel":"name"},{"iid":3,"type":"00000020-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado","format":"string","typeLabel":"manufacturer"},{"iid":4,"type":"00000030-0000-1000-8000-0026BB765291","perms":["pr"],"value":"SU2817924608","format":"string","typeLabel":"serial-number"},{"iid":5,"type":"00000021-0000-1000-8000-0026BB765291","perms":["pr"],"value":"ST01","format":"string","typeLabel":"model"},{"iid":6,"type":"00000052-0000-1000-8000-0026BB765291","perms":["pr"],"value":"90.1","format":"string","typeLabel":"firmware.revision"},{"iid":7,"type":"00000014-0000-1000-8000-0026BB765291","perms":["pw"],"format":"bool","typeLabel":"identify"}],"typeLabel":"accessory-information"},{"type":"E44673A0-247B-4360-8A76-DB9DA69C0100","iid":8,"primary":false,"hidden":true,"characteristics":[{"iid":9,"type":"E44673A0-247B-4360-8A76-DB9DA69C0101","perms":["pw"],"format":"string","typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0101"}],"typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0100"},{"type":"0000004A-0000-1000-8000-0026BB765291","iid":10,"primary":true,"hidden":false,"characteristics":[{"iid":11,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Smart Thermostat SU2817924608","format":"string","typeLabel":"name"},{"iid":12,"type":"0000000F-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":0,"maxValue":2,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"heating-cooling.current"},{"iid":13,"type":"00000033-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":1,"maxValue":1,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"heating-cooling.target"},{"iid":14,"type":"00000011-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":20.3,"maxValue":100,"minValue":0,"minStep":0.1,"format":"float","unit":"celsius","typeLabel":"temperature.current"},{"iid":15,"type":"00000035-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":20,"maxValue":25,"minValue":5,"minStep":0.1,"format":"float","unit":"celsius","typeLabel":"temperature.target"},{"iid":16,"type":"00000036-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":0,"maxValue":1,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"temperature.units"},{"iid":17,"type":"00000010-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":64,"maxValue":100,"minValue":0,"minStep":1,"format":"float","unit":"percentage","typeLabel":"relative-humidity.current"}],"typeLabel":"thermostat"}]},{"aid":3,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"primary":false,"hidden":false,"characteristics":[{"iid":2,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Smart Radiator Thermostat VA0494611200","format":"string","typeLabel":"name"},{"iid":3,"type":"00000020-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado","format":"string","typeLabel":"manufacturer"},{"iid":4,"type":"00000030-0000-1000-8000-0026BB765291","perms":["pr"],"value":"VA0494611200","format":"string","typeLabel":"serial-number"},{"iid":5,"type":"00000021-0000-1000-8000-0026BB765291","perms":["pr"],"value":"SRT01","format":"string","typeLabel":"model"},{"iid":6,"type":"00000052-0000-1000-8000-0026BB765291","perms":["pr"],"value":"95.1","format":"string","typeLabel":"firmware.revision"},{"iid":7,"type":"00000014-0000-1000-8000-0026BB765291","perms":["pw"],"format":"bool","typeLabel":"identify"}],"typeLabel":"accessory-information"},{"type":"E44673A0-247B-4360-8A76-DB9DA69C0100","iid":8,"primary":false,"hidden":true,"characteristics":[{"iid":9,"type":"E44673A0-247B-4360-8A76-DB9DA69C0101","perms":["pw"],"format":"string","typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0101"}],"typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0100"},{"type":"0000004A-0000-1000-8000-0026BB765291","iid":10,"primary":true,"hidden":false,"characteristics":[{"iid":11,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Smart Radiator Thermostat VA0494611200","format":"string","typeLabel":"name"},{"iid":12,"type":"0000000F-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":0,"maxValue":2,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"heating-cooling.current"},{"iid":13,"type":"00000033-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":1,"maxValue":1,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"heating-cooling.target"},{"iid":14,"type":"00000011-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":18.7,"maxValue":100,"minValue":0,"minStep":0.1,"format":"float","unit":"celsius","typeLabel":"temperature.current"},{"iid":15,"type":"00000035-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":19,"maxValue":25,"minValue":5,"minStep":0.1,"format":"float","unit":"celsius","typeLabel":"temperature.target"},{"iid":16,"type":"00000036-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":0,"maxValue":1,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"temperature.units"},{"iid":17,"type":"00000010-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":58,"maxValue":100,"minValue":0,"minStep":1,"format":"float","unit":"percentage","typeLabel":"relative-humidity.current"}],"typeLabel":"thermostat"}]},{"aid":4,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"primary":false,"hidden":false,"characteristics":[{"iid":2,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Smart Radiator Thermostat VA1618619136","format":"string","typeLabel":"name"},{"iid":3,"type":"00000020-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado","format":"string","typeLabel":"manufacturer"},{"iid":4,"type":"00000030-0000-1000-8000-0026BB765291","perms":["pr"],"value":"VA1618619136","format":"string","typeLabel":"serial-number"},{"iid":5,"type":"00000021-0000-1000-8000-0026BB765291","perms":["pr"],"value":"SRT01","format":"string","typeLabel":"model"},{"iid":6,"type":"00000052-0000-1000-8000-0026BB765291","perms":["pr"],"value":"95.1","format":"string","typeLabel":"firmware.revision"},{"iid":7,"type":"00000014-0000-1000-8000-0026BB765291","perms":["pw"],"format":"bool","typeLabel":"identify"}],"typeLabel":"accessory-information"},{"type":"E44673A0-247B-4360-8A76-DB9DA69C0100","iid":8,"primary":false,"hidden":true,"characteristics":[{"iid":9,"type":"E44673A0-247B-4360-8A76-DB9DA69C0101","perms":["pw"],"format":"string","typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0101"}],"typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0100"},{"type":"0000004A-0000-1000-8000-0026BB765291","iid":10,"primary":true,"hidden":false,"characteristics":[{"iid":11,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Smart Radiator Thermostat VA1618619136","format":"string","typeLabel":"name"},{"iid":12,"type":"0000000F-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":0,"maxValue":2,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"heating-cooling.current"},{"iid":13,"type":"00000033-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":1,"maxValue":1,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"heating-cooling.target"},{"iid":14,"type":"00000011-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":20.2,"maxValue":100,"minValue":0,"minStep":0.1,"format":"float","unit":"celsius","typeLabel":"temperature.current"},{"iid":15,"type":"00000035-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":19,"maxValue":25,"minValue":5,"minStep":0.1,"format":"float","unit":"celsius","typeLabel":"temperature.target"},{"iid":16,"type":"00000036-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":0,"maxValue":1,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"temperature.units"},{"iid":17,"type":"00000010-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":55,"maxValue":100,"minValue":0,"minStep":1,"format":"float","unit":"percentage","typeLabel":"relative-humidity.current"}],"typeLabel":"thermostat"}]},{"aid":5,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"primary":false,"hidden":false,"characteristics":[{"iid":2,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Smart Radiator Thermostat VA0746269440","format":"string","typeLabel":"name"},{"iid":3,"type":"00000020-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado","format":"string","typeLabel":"manufacturer"},{"iid":4,"type":"00000030-0000-1000-8000-0026BB765291","perms":["pr"],"value":"VA0746269440","format":"string","typeLabel":"serial-number"},{"iid":5,"type":"00000021-0000-1000-8000-0026BB765291","perms":["pr"],"value":"SRT01","format":"string","typeLabel":"model"},{"iid":6,"type":"00000052-0000-1000-8000-0026BB765291","perms":["pr"],"value":"95.1","format":"string","typeLabel":"firmware.revision"},{"iid":7,"type":"00000014-0000-1000-8000-0026BB765291","perms":["pw"],"format":"bool","typeLabel":"identify"}],"typeLabel":"accessory-information"},{"type":"E44673A0-247B-4360-8A76-DB9DA69C0100","iid":8,"primary":false,"hidden":true,"characteristics":[{"iid":9,"type":"E44673A0-247B-4360-8A76-DB9DA69C0101","perms":["pw"],"format":"string","typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0101"}],"typeLabel":"E44673A0-247B-4360-8A76-DB9DA69C0100"},{"type":"0000004A-0000-1000-8000-0026BB765291","iid":10,"primary":true,"hidden":false,"characteristics":[{"iid":11,"type":"00000023-0000-1000-8000-0026BB765291","perms":["pr"],"value":"tado Smart Radiator Thermostat VA0746269440","format":"string","typeLabel":"name"},{"iid":12,"type":"0000000F-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":0,"maxValue":2,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"heating-cooling.current"},{"iid":13,"type":"00000033-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":1,"maxValue":1,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"heating-cooling.target"},{"iid":14,"type":"00000011-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":21.4,"maxValue":100,"minValue":0,"minStep":0.1,"format":"float","unit":"celsius","typeLabel":"temperature.current"},{"iid":15,"type":"00000035-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":19,"maxValue":25,"minValue":5,"minStep":0.1,"format":"float","unit":"celsius","typeLabel":"temperature.target"},{"iid":16,"type":"00000036-0000-1000-8000-0026BB765291","perms":["pr","pw","ev"],"value":0,"maxValue":1,"minValue":0,"minStep":1,"format":"uint8","typeLabel":"temperature.units"},{"iid":17,"type":"00000010-0000-1000-8000-0026BB765291","perms":["pr","ev"],"value":53,"maxValue":100,"minValue":0,"minStep":1,"format":"float","unit":"percentage","typeLabel":"relative-humidity.current"}],"typeLabel":"thermostat"}]}]}
[10-05-2022 15:31:08][DEBUG] : Envoi de l'Accessory brut : {"eventType":"getAccessories","id":"1b:dc:8a:61:e7:14","refresh":false}
[10-05-2022 15:31:08][DEBUG] : Souscription pour tado Internet Bridge IB3005030144
[10-05-2022 15:31:08][DEBUG] : Souscription en cours à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17...
2022-05-10T13:31:08.506Z hap-controller:http-client Reuse persistent connection client
2022-05-10T13:31:08.506Z hap-controller:http-connection 192.168.1.73:80 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a322c22696964223a31322c226576223a747275657d2c7b22616964223a322c22696964223a31332c226576223a747275657d2c7b22616964223a322c22696964223a31342c226576223a747275657d2c7b22616964223a322c22696964223a31352c226576223a747275657d2c7b22616964223a322c22696964223a31362c226576223a747275657d2c7b22616964223a322c22696964223a31372c226576223a747275657d2c7b22616964223a332c22696964223a31322c226576223a747275657d2c7b22616964223a332c22696964223a31332c226576223a747275657d2c7b22616964223a332c22696964223a31342c226576223a747275657d2c7b22616964223a332c22696964223a31352c226576223a747275657d2c7b22616964223a332c22696964223a31362c226576223a747275657d2c7b22616964223a332c22696964223a31372c226576223a747275657d2c7b22616964223a342c22696964223a31322c226576223a747275657d2c7b22616964223a342c22696964223a31332c226576223a747275657d2c7b22616964223a342c22696964223a31342c226576223a747275657d2c7b22616964223a342c22696964223a31352c226576223a747275657d2c7b22616964223a342c22696964223a31362c226576223a747275657d2c7b22616964223a342c22696964223a31372c226576223a747275657d2c7b22616964223a352c22696964223a31322c226576223a747275657d2c7b22616964223a352c22696964223a31332c226576223a747275657d2c7b22616964223a352c22696964223a31342c226576223a747275657d2c7b22616964223a352c22696964223a31352c226576223a747275657d2c7b22616964223a352c22696964223a31362c226576223a747275657d2c7b22616964223a352c22696964223a31372c226576223a747275657d5d7d
2022-05-10T13:31:08.527Z hap-controller:http-connection 192.168.1.73:80 Response 204 with 0 byte data
[10-05-2022 15:31:08][DEBUG] : Souscrit à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17 !
2022-05-10T13:31:09.671Z hap-controller:http-connection 192.168.1.71:5001 Response 200 with 140 byte data
2022-05-10T13:31:09.672Z hap-controller:tlv Read 1 bytes for tag 6: 02
2022-05-10T13:31:09.672Z hap-controller:tlv Read 32 bytes for tag 3: 6d3c803c8514902f3503e68725c8252cb3df25fdbaa29ef9719bd38962ba8b65
2022-05-10T13:31:09.672Z hap-controller:tlv Read 101 bytes for tag 5: 49581d9bbae3da68be2606657efe5a6bf057f171ac9c64175d47143f8ae67074ce8eee0fada20c960ccf56644eeb5d6223b6a24078bba88abd8bfe117d82b39538b73081f56c21304b08d487871c6e1def6d2f4e732047e553ea2cefb124746ef0c3f2b8c9
2022-05-10T13:31:09.675Z hap-controller:tlv Read 17 bytes for tag 1: 41453a34343a41363a31303a46343a4134
2022-05-10T13:31:09.675Z hap-controller:tlv Read 64 bytes for tag 10: 38740eaa0547df7154a913bd86d3b4628adc17fe7a0e8e3e132dba17877d7f7ebe529855f94359096f7da71bab6f65f1159c3aefa2d9e6d8988cf36457afe80c
2022-05-10T13:31:09.677Z hap-controller:tlv Add 36 bytes for tag 1: 35613730393333342d366361352d346230312d386565382d356231353833333630303834
2022-05-10T13:31:09.677Z hap-controller:tlv Add 64 bytes for tag 10: c7d33ecc01926b86221d0ceb1ff8421cdc0a9b96b85280b75f125230a684da737ab2cc0c88101806fceaff4ffae09ee69588589d8565be4e5666aef0a25e370d
2022-05-10T13:31:09.678Z hap-controller:tlv Add 1 bytes for tag 6: 03
2022-05-10T13:31:09.678Z hap-controller:tlv Add 120 bytes for tag 5: 90ebe5ecb6ba24db73db30f016ea213a00c0d965bc279e6ddd51ee512d28806ac1c05c2c6d25726bcf42125329b1d9d29a0594c8f7a564525d1a85459d3716d52c6b8c730961938549547b3ab5e7aeef3d6fe5718e924fc118f3b3f84db1975169ea0727d95f03dfc1c3000c881e4f55d9affa1a6d21473e
2022-05-10T13:31:09.678Z hap-controller:http-connection 192.168.1.71:5001 POST /pair-verify 060103057890ebe5ecb6ba24db73db30f016ea213a00c0d965bc279e6ddd51ee512d28806ac1c05c2c6d25726bcf42125329b1d9d29a0594c8f7a564525d1a85459d3716d52c6b8c730961938549547b3ab5e7aeef3d6fe5718e924fc118f3b3f84db1975169ea0727d95f03dfc1c3000c881e4f55d9affa1a6d21473e (application/pairing+tlv8)
2022-05-10T13:31:09.773Z hap-controller:http-connection 192.168.1.71:5001 Response 200 with 3 byte data
2022-05-10T13:31:09.774Z hap-controller:tlv Read 1 bytes for tag 6: 04
2022-05-10T13:31:09.774Z hap-controller:http-client Finished Pair-Verify process ...
2022-05-10T13:31:09.776Z hap-controller:http-client New persistent connection client initialized
2022-05-10T13:31:09.776Z hap-controller:http-connection 192.168.1.71:5001 GET /accessories
2022-05-10T13:31:10.081Z hap-controller:http-connection 192.168.1.71:5001 Response 200 with 7384 byte data
addTypeLabels: 0.775ms
[10-05-2022 15:31:10][INFO] : Description de l'accessoire reçue : {"accessories":[{"aid":1,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Prise Control","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Bubendorff Gateway","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"g3eca53","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"39","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"000000A2-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000037-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"1.1.0","typeLabel":"version"}],"hidden":false,"primary":false,"typeLabel":"protocol.information.service"},{"type":"EA22EA53-6227-55EA-AC24-73ACF3EEA0E8","iid":31,"characteristics":[{"type":"4D05AE82-5A22-5BD6-A730-B7F8B4F3218D","iid":32,"perms":["pw"],"format":"bool","typeLabel":"4D05AE82-5A22-5BD6-A730-B7F8B4F3218D"},{"type":"00F44C18-042E-5C4E-9A4C-561D44DCD804","iid":30,"perms":["pr"],"format":"string","value":"g3eca53","typeLabel":"00F44C18-042E-5C4E-9A4C-561D44DCD804"}],"hidden":true,"primary":false,"typeLabel":"EA22EA53-6227-55EA-AC24-73ACF3EEA0E8"}]},{"aid":2,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0007368876","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"21","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]},{"aid":3,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0007370421","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"21","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]},{"aid":4,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0007374746","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"21","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]},{"aid":5,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0007375684","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"21","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]},{"aid":6,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0007374736","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"21","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]},{"aid":50,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0012045134","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"22","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]}]}
[10-05-2022 15:31:10][DEBUG] : Envoi de l'Accessory brut : {"eventType":"getAccessories","id":"AE:44:A6:10:F4:A4","refresh":false}
[10-05-2022 15:31:10][DEBUG] : Souscription pour Prise Control
[10-05-2022 15:31:10][DEBUG] : Souscription en cours à Prise Control sur 2.10,2.11,2.12,3.10,3.11,3.12,4.10,4.11,4.12,5.10,5.11,5.12,6.10,6.11,6.12,50.10,50.11,50.12...
2022-05-10T13:31:10.090Z hap-controller:http-client Reuse persistent connection client
2022-05-10T13:31:10.090Z hap-controller:http-connection 192.168.1.71:5001 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a322c22696964223a31302c226576223a747275657d2c7b22616964223a322c22696964223a31312c226576223a747275657d2c7b22616964223a322c22696964223a31322c226576223a747275657d2c7b22616964223a332c22696964223a31302c226576223a747275657d2c7b22616964223a332c22696964223a31312c226576223a747275657d2c7b22616964223a332c22696964223a31322c226576223a747275657d2c7b22616964223a342c22696964223a31302c226576223a747275657d2c7b22616964223a342c22696964223a31312c226576223a747275657d2c7b22616964223a342c22696964223a31322c226576223a747275657d2c7b22616964223a352c22696964223a31302c226576223a747275657d2c7b22616964223a352c22696964223a31312c226576223a747275657d2c7b22616964223a352c22696964223a31322c226576223a747275657d2c7b22616964223a362c22696964223a31302c226576223a747275657d2c7b22616964223a362c22696964223a31312c226576223a747275657d2c7b22616964223a362c22696964223a31322c226576223a747275657d2c7b22616964223a35302c22696964223a31302c226576223a747275657d2c7b22616964223a35302c22696964223a31312c226576223a747275657d2c7b22616964223a35302c22696964223a31322c226576223a747275657d5d7d
2022-05-10T13:31:10.132Z hap-controller:http-connection 192.168.1.71:5001 Response 204 with 0 byte data
[10-05-2022 15:31:10][DEBUG] : Souscrit à Prise Control sur 2.10,2.11,2.12,3.10,3.11,3.12,4.10,4.11,4.12,5.10,5.11,5.12,6.10,6.11,6.12,50.10,50.11,50.12 !
[10-05-2022 15:31:11][INFO] : Event reçu de Aqara-Hub-M1S-3774 : status-lo-batt=0
[10-05-2022 15:32:04][INFO] : Event reçu de Aqara-Hub-M1S-3774 : status-lo-batt=0
2022-05-10T13:32:20.369Z hap-controller:http-client Persistent connection client got disconnected
[10-05-2022 15:32:20][DEBUG] : Déconnexion des Events reçu de tado Internet Bridge IB3005030144 : 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17
[10-05-2022 15:32:20][DEBUG] : ReSouscription en cours à tado Internet Bridge IB3005030144 sur 2.12,2.13,2.14,2.15,2.16,2.17,3.12,3.13,3.14,3.15,3.16,3.17,4.12,4.13,4.14,4.15,4.16,4.17,5.12,5.13,5.14,5.15,5.16,5.17...
2022-05-10T13:32:20.371Z hap-controller:http-client Reuse persistent connection client
2022-05-10T13:32:20.371Z hap-controller:http-connection 192.168.1.73:80 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a322c22696964223a31322c226576223a747275657d2c7b22616964223a322c22696964223a31332c226576223a747275657d2c7b22616964223a322c22696964223a31342c226576223a747275657d2c7b22616964223a322c22696964223a31352c226576223a747275657d2c7b22616964223a322c22696964223a31362c226576223a747275657d2c7b22616964223a322c22696964223a31372c226576223a747275657d2c7b22616964223a332c22696964223a31322c226576223a747275657d2c7b22616964223a332c22696964223a31332c226576223a747275657d2c7b22616964223a332c22696964223a31342c226576223a747275657d2c7b22616964223a332c22696964223a31352c226576223a747275657d2c7b22616964223a332c22696964223a31362c226576223a747275657d2c7b22616964223a332c22696964223a31372c226576223a747275657d2c7b22616964223a342c22696964223a31322c226576223a747275657d2c7b22616964223a342c22696964223a31332c226576223a747275657d2c7b22616964223a342c22696964223a31342c226576223a747275657d2c7b22616964223a342c22696964223a31352c226576223a747275657d2c7b22616964223a342c22696964223a31362c226576223a747275657d2c7b22616964223a342c22696964223a31372c226576223a747275657d2c7b22616964223a352c22696964223a31322c226576223a747275657d2c7b22616964223a352c22696964223a31332c226576223a747275657d2c7b22616964223a352c22696964223a31342c226576223a747275657d2c7b22616964223a352c22696964223a31352c226576223a747275657d2c7b22616964223a352c22696964223a31362c226576223a747275657d2c7b22616964223a352c22696964223a31372c226576223a747275657d5d7d
[10-05-2022 15:33:25][INFO] : Reçu une demande d'action...{"id":"AB:15:76:41:4A:FD","aid":"81","iid":"327683","val":"1"}
2022-05-10T13:33:25.450Z hap-controller:http-client Reuse persistent connection client
2022-05-10T13:33:25.451Z hap-controller:http-connection 192.168.1.72:49668 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a38312c22696964223a3332373638332c2276616c7565223a747275657d5d7d
2022-05-10T13:33:25.455Z hap-controller:http-connection 192.168.1.72:49668 Response 204 with 0 byte data
[10-05-2022 15:33:25][INFO] : Action de jeedom effectuée pour Aqara-Hub-M1S-3774 : on->true
[10-05-2022 15:33:28][INFO] : Reçu une demande d'action...{"id":"AB:15:76:41:4A:FD","aid":"81","iid":"262147","val":"1"}
2022-05-10T13:33:28.305Z hap-controller:http-client Reuse persistent connection client
2022-05-10T13:33:28.305Z hap-controller:http-connection 192.168.1.72:49668 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a38312c22696964223a3236323134372c2276616c7565223a747275657d5d7d
2022-05-10T13:33:28.309Z hap-controller:http-connection 192.168.1.72:49668 Response 204 with 0 byte data
[10-05-2022 15:33:28][INFO] : Action de jeedom effectuée pour Aqara-Hub-M1S-3774 : on->true
2022-05-10T13:33:32.046Z hap-controller:http-client Persistent connection client got disconnected
[10-05-2022 15:33:55][INFO] : Reçu une demande de refresh d'accessoire...
[10-05-2022 15:33:55][DEBUG] : Récupération en cours de la description de l'accessoire...
2022-05-10T13:33:55.296Z hap-controller:http-client Reuse persistent connection client
2022-05-10T13:33:55.296Z hap-controller:http-connection 192.168.1.72:49668 GET /accessories
2022-05-10T13:33:55.363Z hap-controller:http-connection 192.168.1.72:49668 Response 200 with 79074 byte data
addTypeLabels: 3.99ms
[10-05-2022 15:33:55][INFO] : Description de l'accessoire reçue : {"accessories":[{"aid":1,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"HM1S-G01","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Aqara-Hub-M1S-3774","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"54ef44323774","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3.4.0","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"},{"iid":65544,"type":"34AB8811-AC7F-4340-BAC3-FD6A85F9943B","format":"string","value":"5.0;dfeceb3a","perms":["pr","hd"],"ev":false,"typeLabel":"34AB8811-AC7F-4340-BAC3-FD6A85F9943B"},{"iid":65545,"type":"00000220-0000-1000-8000-0026BB765291","format":"data","value":"xDsGOxqDUtY=","perms":["pr"],"ev":false,"maxDataLen":8,"typeLabel":"product-data"}],"typeLabel":"accessory-information"},{"iid":2,"type":"000000A2-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":131074,"type":"00000037-0000-1000-8000-0026BB765291","format":"string","value":"1.1.0","perms":["pr"],"ev":false,"typeLabel":"version"}],"typeLabel":"protocol.information.service"},{"iid":4,"type":"0000022A-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":262145,"type":"0000022B-0000-1000-8000-0026BB765291","format":"bool","value":1,"perms":["pr"],"ev":false,"typeLabel":"current-transport"},{"iid":262146,"type":"0000022C-0000-1000-8000-0026BB765291","format":"uint32","value":9,"perms":["pr"],"ev":false,"minValue":0,"maxValue":15,"minStep":1,"typeLabel":"wifi-capabilities"},{"iid":262147,"type":"0000022D-0000-1000-8000-0026BB765291","format":"tlv8","value":"","perms":["pr","pw","ev","tw","wr"],"ev":true,"typeLabel":"wifi-configuration-control"}],"typeLabel":"wifi-transport"},{"iid":5,"type":"00000239-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327681,"type":"0000023C-0000-1000-8000-0026BB765291","format":"data","value":"","perms":["pr"],"ev":false,"maxDataLen":0,"typeLabel":"ping"}],"typeLabel":"accessory-runtime-information"},{"iid":16,"type":"00000043-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":1048578,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Lightbulb","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":1048579,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":1048580,"type":"00000008-0000-1000-8000-0026BB765291","format":"int","value":100,"perms":["pr","pw","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"brightness"},{"iid":1048581,"type":"00000013-0000-1000-8000-0026BB765291","format":"float","value":277,"perms":["pr","pw","ev"],"ev":true,"unit":"arcdegrees","minValue":0,"maxValue":360,"minStep":1,"typeLabel":"hue"},{"iid":1048582,"type":"0000002F-0000-1000-8000-0026BB765291","format":"float","value":86,"perms":["pr","pw","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"saturation"}],"typeLabel":"lightbulb"},{"iid":17,"type":"0000007E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":1114114,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Security System","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":1114115,"type":"00000066-0000-1000-8000-0026BB765291","format":"uint8","value":3,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":4,"minStep":1,"valid-values":[0,1,2,3,4],"typeLabel":"security-system-state.current"},{"iid":1114116,"type":"00000067-0000-1000-8000-0026BB765291","format":"uint8","value":3,"perms":["pr","pw","ev"],"ev":true,"minValue":0,"maxValue":3,"minStep":1,"valid-values":[0,1,2,3],"typeLabel":"security-system-state.target"},{"iid":1114117,"type":"60CDDE6C-42B6-4C72-9719-AB2740EABE2A","format":"tlv8","value":"","perms":["pr","pw"],"ev":false,"description":"Stay Arm Trigger Devices","typeLabel":"Stay Arm Trigger Devices"},{"iid":1114118,"type":"4AB2460A-41E4-4F05-97C3-CCFDAE1BE324","format":"tlv8","value":"","perms":["pr","pw"],"ev":false,"description":"Alarm Trigger Devices","typeLabel":"Alarm Trigger Devices"},{"iid":1114119,"type":"F8296386-5A30-4AA7-838C-ED0DA9D807DF","format":"tlv8","value":"","perms":["pr","pw"],"ev":false,"description":"Night Arm Trigger Devices","typeLabel":"Night Arm Trigger Devices"}],"typeLabel":"security-system"},{"iid":18,"type":"9715BF53-AB63-4449-8DC7-2785D617390A","primary":false,"hidden":true,"characteristics":[{"iid":1179650,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Gateway","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":1179653,"type":"B1C09E4C-E202-4827-B863-B0F32F727CFF","format":"bool","value":0,"perms":["pr","pw","ev","hd"],"ev":true,"description":"New Accessory Permission","typeLabel":"New Accessory Permission"},{"iid":1179655,"type":"75D19FA9-218B-4943-997E-341E5D1C60CC","format":"string","perms":["pw","hd"],"description":"Remove Accessory","typeLabel":"Remove Accessory"},{"iid":1179656,"type":"7D943F6A-E052-4E96-A176-D17BF00E32CB","format":"int","value":-1,"perms":["pr","ev","hd"],"ev":true,"description":"Firmware Update Status","minValue":-65535,"maxValue":65535,"minStep":1,"typeLabel":"Firmware Update Status"},{"iid":1179657,"type":"A45EFD52-0DB5-4C1A-9727-513FBCD8185F","format":"string","perms":["pw","hd"],"description":"Firmware Update URL","maxLen":256,"typeLabel":"Firmware Update URL"},{"iid":1179658,"type":"40F0124A-579D-40E4-865E-0EF6740EA64B","format":"string","perms":["pw","hd"],"description":"Firmware Update Checksum","typeLabel":"Firmware Update Checksum"},{"iid":1179705,"type":"96BF5F20-2996-4DB6-8D65-0E36314BCB6D","format":"string","value":"3.4.0_0004.0616","perms":["pr","hd"],"ev":false,"description":"Firmware Version","typeLabel":"Firmware Version"},{"iid":1179706,"type":"36B7A28B-3200-4783-A3FB-6714F11B1417","format":"string","value":"lumi.gateway.aeu01","perms":["pr","hd"],"ev":false,"description":"Device Model","typeLabel":"Device Model"},{"iid":1179707,"type":"F5329CB1-A50B-4225-BA9B-331449E7F7A9","format":"uint8","value":1,"perms":["pr","hd"],"ev":false,"description":"Selected IoT Platform","minValue":0,"maxValue":4,"minStep":1,"typeLabel":"Selected IoT Platform"}],"typeLabel":"Gateway"},{"iid":19,"type":"F49132D1-12DF-4119-87D3-A93E8D68531E","primary":false,"hidden":true,"characteristics":[{"iid":1245186,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"AIOT","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":1245187,"type":"25D889CB-7135-4A29-B5B4-C1FFD6D2DD5C","format":"string","value":"","perms":["pr","pw","hd"],"ev":false,"description":"Country Domain","typeLabel":"Country Domain"},{"iid":1245188,"type":"C7EECAA7-91D9-40EB-AD0C-FFDDE3143CB9","format":"string","value":"lumi1.54ef44323774","perms":["pr","hd"],"ev":false,"description":"Lumi Did","typeLabel":"Lumi Did"},{"iid":1245189,"type":"80FA747E-CB45-45A4-B7BE-AA7D9964859E","format":"string","perms":["pw","hd"],"description":"Lumi Bindkey","typeLabel":"Lumi Bindkey"},{"iid":1245190,"type":"C3B8A329-EF0C-4739-B773-E5B7AEA52C71","format":"bool","value":1,"perms":["pr","hd"],"ev":false,"description":"Lumi Bindstate","typeLabel":"Lumi Bindstate"}],"typeLabel":"AIOT"}]},{"aid":34,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AR005","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00048480b3","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"9","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"linked":[6],"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":262148,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000089-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"linked":[6],"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":327684,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":6,"type":"000000CC-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Service Lable","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"000000CD-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":1,"minStep":1,"valid-values":[1],"typeLabel":"service-label-namespace"}],"typeLabel":"service-label"},{"iid":7,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":458754,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":458755,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":458757,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":458756,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":35,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MK001","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d000152d75e","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"10","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":39,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MS005","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Smoke Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0003537b23","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"4","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000087-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Smoke Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000076-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"smoke-detected"},{"iid":262148,"type":"00000077-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-fault"}],"typeLabel":"sensor.smoke"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":40,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MS009","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Light Detection Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"4cf8cdf3c772b56","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"0021","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000084-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Light Detection Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"0000006B-0000-1000-8000-0026BB765291","format":"float","value":9021,"perms":["pr","ev"],"ev":true,"unit":"lux","minValue":0,"maxValue":100000,"minStep":1,"typeLabel":"light-level.current"}],"typeLabel":"sensor.light"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":41,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MP001","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00035506ce","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"92","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","ev"],"ev":true,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]},{"aid":42,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK001","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00023e65c1","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"input-event"},{"iid":262148,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":44,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK027","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Relay controler","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00058dbdae","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"47","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":5,"type":"00000049-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Switch1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":327684,"type":"C257C476-9655-48B2-9425-93DE70BA75B8","format":"uint8","value":0,"perms":["pr","hd"],"ev":false,"description":"switch-index","minValue":0,"maxValue":5,"minStep":1,"typeLabel":"switch-index"}],"typeLabel":"switch"},{"iid":6,"type":"00000049-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Switch2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":1,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":393220,"type":"C257C476-9655-48B2-9425-93DE70BA75B8","format":"uint8","value":1,"perms":["pr","hd"],"ev":false,"description":"switch-index","minValue":0,"maxValue":5,"minStep":1,"typeLabel":"switch-index"}],"typeLabel":"switch"}]},{"aid":47,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MP003","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"4cf8cdf3c77d9a7","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"24","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":1,"perms":["pr","ev"],"ev":true,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]},{"aid":48,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS008","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0001a4b777","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"0000008A-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000011-0000-1000-8000-0026BB765291","format":"float","value":21.6,"perms":["pr","ev"],"ev":true,"unit":"celsius","minValue":-50,"maxValue":100,"minStep":0.1,"typeLabel":"temperature.current"}],"typeLabel":"sensor.temperature"},{"iid":5,"type":"00000082-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Humidity Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000010-0000-1000-8000-0026BB765291","format":"float","value":56,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"relative-humidity.current"}],"typeLabel":"sensor.humidity"},{"iid":6,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":393221,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":393220,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":49,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK010","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0001e83c46","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"2","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":50,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AR005","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0004050622","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"9","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"linked":[6],"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":262148,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000089-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"linked":[6],"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":327684,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":6,"type":"000000CC-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Service Lable","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"000000CD-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":1,"minStep":1,"valid-values":[1],"typeLabel":"service-label-namespace"}],"typeLabel":"service-label"},{"iid":7,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":458754,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":458755,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":458757,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":458756,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":51,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS006","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Contact Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0004a029ca","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000080-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Contact Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"0000006A-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"contact-state"}],"typeLabel":"sensor.contact"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":52,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS007","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Motion Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0003f40aa0","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"5","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000085-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Motion Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000022-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","ev"],"ev":true,"typeLabel":"motion-detected"}],"typeLabel":"sensor.motion"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":53,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS006","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Contact Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0004a04a70","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000080-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Contact Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"0000006A-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"contact-state"}],"typeLabel":"sensor.contact"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":92,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":54,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS009","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Vibration Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0002b61434","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"8","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000085-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Vibration Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000022-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","ev"],"ev":true,"typeLabel":"motion-detected"}],"typeLabel":"sensor.motion"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":88,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":56,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AR005","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00054b1a05","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"9","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"linked":[6],"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":262148,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000089-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"linked":[6],"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":327684,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":6,"type":"000000CC-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Service Lable","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"000000CD-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":1,"minStep":1,"valid-values":[1],"typeLabel":"service-label-namespace"}],"typeLabel":"service-label"},{"iid":7,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":458754,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":458755,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":92,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":458757,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":458756,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":58,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS008","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0001a1f922","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"0000008A-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000011-0000-1000-8000-0026BB765291","format":"float","value":20.700006,"perms":["pr","ev"],"ev":true,"unit":"celsius","minValue":-50,"maxValue":100,"minStep":0.1,"typeLabel":"temperature.current"}],"typeLabel":"sensor.temperature"},{"iid":5,"type":"00000082-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Humidity Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000010-0000-1000-8000-0026BB765291","format":"float","value":55,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"relative-humidity.current"}],"typeLabel":"sensor.humidity"},{"iid":6,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":393221,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":393220,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":59,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS008","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0001720080","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"0000008A-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000011-0000-1000-8000-0026BB765291","format":"float","value":21.6,"perms":["pr","ev"],"ev":true,"unit":"celsius","minValue":-50,"maxValue":100,"minStep":0.1,"typeLabel":"temperature.current"}],"typeLabel":"sensor.temperature"},{"iid":5,"type":"00000082-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Humidity Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000010-0000-1000-8000-0026BB765291","format":"float","value":55,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"relative-humidity.current"}],"typeLabel":"sensor.humidity"},{"iid":6,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":393221,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":393220,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":60,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MP003","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"4cf8cdf3c77d9ed","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"24","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":null,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":null,"perms":["pr","ev"],"ev":true,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]},{"aid":61,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS008","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0001a2304a","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"0000008A-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000011-0000-1000-8000-0026BB765291","format":"float","value":20.1,"perms":["pr","ev"],"ev":true,"unit":"celsius","minValue":-50,"maxValue":100,"minStep":0.1,"typeLabel":"temperature.current"}],"typeLabel":"sensor.temperature"},{"iid":5,"type":"00000082-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Humidity Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000010-0000-1000-8000-0026BB765291","format":"float","value":57,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"relative-humidity.current"}],"typeLabel":"sensor.humidity"},{"iid":6,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":393221,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":393220,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":63,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MP001","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d000355aa40","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"92","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","ev"],"ev":true,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]},{"aid":64,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK010","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d000213627c","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"2","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":92,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":65,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK010","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d000424cdd7","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"2","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":66,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS007","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Motion Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00041447ef","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"5","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000085-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Motion Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000022-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","ev"],"ev":true,"typeLabel":"motion-detected"}],"typeLabel":"sensor.motion"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":67,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS008","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0006b27c8b","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"5","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"0000008A-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000011-0000-1000-8000-0026BB765291","format":"float","value":25.4,"perms":["pr","ev"],"ev":true,"unit":"celsius","minValue":-50,"maxValue":100,"minStep":0.1,"typeLabel":"temperature.current"}],"typeLabel":"sensor.temperature"},{"iid":5,"type":"00000082-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Humidity Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000010-0000-1000-8000-0026BB765291","format":"float","value":40,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"relative-humidity.current"}],"typeLabel":"sensor.humidity"},{"iid":6,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":393221,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":393220,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":68,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK027","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Relay controler","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0003cbe60e","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"47","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":5,"type":"00000049-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Switch1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":327684,"type":"C257C476-9655-48B2-9425-93DE70BA75B8","format":"uint8","value":0,"perms":["pr","hd"],"ev":false,"description":"switch-index","minValue":0,"maxValue":5,"minStep":1,"typeLabel":"switch-index"}],"typeLabel":"switch"},{"iid":6,"type":"00000049-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Switch2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":1,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":393220,"type":"C257C476-9655-48B2-9425-93DE70BA75B8","format":"uint8","value":1,"perms":["pr","hd"],"ev":false,"description":"switch-index","minValue":0,"maxValue":5,"minStep":1,"typeLabel":"switch-index"}],"typeLabel":"switch"}]},{"aid":72,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS008","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0001a35b9d","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"0000008A-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Temperature Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000011-0000-1000-8000-0026BB765291","format":"float","value":19.9,"perms":["pr","ev"],"ev":true,"unit":"celsius","minValue":-50,"maxValue":100,"minStep":0.1,"typeLabel":"temperature.current"}],"typeLabel":"sensor.temperature"},{"iid":5,"type":"00000082-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Humidity Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000010-0000-1000-8000-0026BB765291","format":"float","value":64,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"relative-humidity.current"}],"typeLabel":"sensor.humidity"},{"iid":6,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":84,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":393221,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":393220,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":73,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AL002","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Lightbulb","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0007751504","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"34","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000043-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Lightbulb","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":262148,"type":"00000008-0000-1000-8000-0026BB765291","format":"int","value":49,"perms":["pr","pw","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"brightness"},{"iid":262149,"type":"000000CE-0000-1000-8000-0026BB765291","format":"uint32","value":370,"perms":["pr","pw","ev"],"ev":true,"minValue":153,"maxValue":370,"minStep":1,"typeLabel":"color-temperature"},{"iid":262153,"type":"00000144-0000-1000-8000-0026BB765291","format":"tlv8","value":"AQwBBAQABAACBAEAAAAAAAEMAQQFAAQAAgQCAAAA","perms":["pr"],"ev":false,"typeLabel":"supported-characteristic-value-transition-configuration"},{"iid":262154,"type":"00000143-0000-1000-8000-0026BB765291","format":"tlv8","value":"","perms":["pr","pw","wr"],"ev":false,"typeLabel":"characteristic-value-transition-control"},{"iid":262155,"type":"0000024B-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"typeLabel":"characteristic-value-active-transition-count"}],"typeLabel":"lightbulb"}]},{"aid":74,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AL002","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Lightbulb","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0007751357","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"34","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000043-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Lightbulb","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":262148,"type":"00000008-0000-1000-8000-0026BB765291","format":"int","value":30,"perms":["pr","pw","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"brightness"},{"iid":262149,"type":"000000CE-0000-1000-8000-0026BB765291","format":"uint32","value":370,"perms":["pr","pw","ev"],"ev":true,"minValue":153,"maxValue":370,"minStep":1,"typeLabel":"color-temperature"},{"iid":262153,"type":"00000144-0000-1000-8000-0026BB765291","format":"tlv8","value":"AQwBBAQABAACBAEAAAAAAAEMAQQFAAQAAgQCAAAA","perms":["pr"],"ev":false,"typeLabel":"supported-characteristic-value-transition-configuration"},{"iid":262154,"type":"00000143-0000-1000-8000-0026BB765291","format":"tlv8","value":"","perms":["pr","pw","wr"],"ev":false,"typeLabel":"characteristic-value-transition-control"},{"iid":262155,"type":"0000024B-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"typeLabel":"characteristic-value-active-transition-count"}],"typeLabel":"lightbulb"}]},{"aid":75,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AP007","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"4cf8cdf3c89d59f","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"0041","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":null,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":null,"perms":["pr","ev"],"ev":true,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]},{"aid":76,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS006","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Contact Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0003cebb57","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000080-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Contact Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"0000006A-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"contact-state"}],"typeLabel":"sensor.contact"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":77,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AU002","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Relay controler","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"54ef44100041d7fb","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"0024","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":5,"type":"00000049-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Switch","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":327684,"type":"C257C476-9655-48B2-9425-93DE70BA75B8","format":"uint8","value":0,"perms":["pr","hd"],"ev":false,"description":"switch-index","minValue":0,"maxValue":5,"minStep":1,"typeLabel":"switch-index"}],"typeLabel":"switch"}]},{"aid":78,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AR005","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d000533c736","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"9","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"linked":[6],"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":262148,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000089-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"linked":[6],"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":327684,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":6,"type":"000000CC-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Service Lable","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"000000CD-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":1,"minStep":1,"valid-values":[1],"typeLabel":"service-label-namespace"}],"typeLabel":"service-label"},{"iid":7,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":458754,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":458755,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":458757,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":458756,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":79,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AR009","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"54ef4410002a1f36","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"0021","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"linked":[6],"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":0,"minStep":1,"valid-values":[0],"typeLabel":"input-event"},{"iid":262148,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000089-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"linked":[6],"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":0,"minStep":1,"valid-values":[0],"typeLabel":"input-event"},{"iid":327684,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":6,"type":"000000CC-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Service Lable","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"000000CD-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":1,"minStep":1,"valid-values":[1],"typeLabel":"service-label-namespace"}],"typeLabel":"service-label"},{"iid":7,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":458754,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":458755,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":458757,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":458756,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":80,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK071","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Wall Switch","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"54ef441000368d95","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"1411","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000049-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Switch","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":262148,"type":"C257C476-9655-48B2-9425-93DE70BA75B8","format":"uint8","value":0,"perms":["pr","hd"],"ev":false,"description":"switch-index","minValue":0,"maxValue":5,"minStep":1,"typeLabel":"switch-index"}],"typeLabel":"switch"}]},{"aid":81,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK072","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Wall Switch","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"54ef4410000f5c9c","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"1411","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000049-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Switch1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":1,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":262148,"type":"C257C476-9655-48B2-9425-93DE70BA75B8","format":"uint8","value":0,"perms":["pr","hd"],"ev":false,"description":"switch-index","minValue":0,"maxValue":5,"minStep":1,"typeLabel":"switch-index"}],"typeLabel":"switch"},{"iid":5,"type":"00000049-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Switch2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":1,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":327684,"type":"C257C476-9655-48B2-9425-93DE70BA75B8","format":"uint8","value":1,"perms":["pr","hd"],"ev":false,"description":"switch-index","minValue":0,"maxValue":5,"minStep":1,"typeLabel":"switch-index"}],"typeLabel":"switch"}]},{"aid":82,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AR009","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"54ef4410002686bc","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"0021","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":6,"type":"000000CC-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":393218,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Service Lable","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":393219,"type":"000000CD-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":1,"minStep":1,"valid-values":[1],"typeLabel":"service-label-namespace"}],"typeLabel":"service-label"},{"iid":7,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":458754,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":458755,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":458757,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":458756,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"},{"iid":9,"type":"00000089-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"linked":[6],"characteristics":[{"iid":589826,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":589827,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":589828,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":1,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"},{"iid":10,"type":"00000089-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"linked":[6],"characteristics":[{"iid":655362,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":655363,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"},{"iid":655364,"type":"000000CB-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr"],"ev":false,"minValue":1,"maxValue":255,"minStep":1,"typeLabel":"service-label-index"}],"typeLabel":"stateless-programmable-switch"}]},{"aid":83,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AL010","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Lightbulb","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"54ef4410003f3cdb","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"0021","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":24,"type":"00000043-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":1572866,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Lightbulb1","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":1572867,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":1,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":1572868,"type":"00000008-0000-1000-8000-0026BB765291","format":"int","value":100,"perms":["pr","pw","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"brightness"},{"iid":1572869,"type":"000000CE-0000-1000-8000-0026BB765291","format":"uint32","value":370,"perms":["pr","pw","ev"],"ev":true,"minValue":153,"maxValue":370,"minStep":1,"typeLabel":"color-temperature"},{"iid":1572873,"type":"00000144-0000-1000-8000-0026BB765291","format":"tlv8","value":"AQwBBAQAGAACBAEAAAAAAAEMAQQFABgAAgQCAAAA","perms":["pr"],"ev":false,"typeLabel":"supported-characteristic-value-transition-configuration"},{"iid":1572874,"type":"00000143-0000-1000-8000-0026BB765291","format":"tlv8","value":"","perms":["pr","pw","wr"],"ev":false,"typeLabel":"characteristic-value-transition-control"},{"iid":1572875,"type":"0000024B-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"typeLabel":"characteristic-value-active-transition-count"}],"typeLabel":"lightbulb"},{"iid":25,"type":"00000043-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":1638402,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Lightbulb2","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":1638403,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":1,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":1638404,"type":"00000008-0000-1000-8000-0026BB765291","format":"int","value":1,"perms":["pr","pw","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"brightness"},{"iid":1638405,"type":"000000CE-0000-1000-8000-0026BB765291","format":"uint32","value":370,"perms":["pr","pw","ev"],"ev":true,"minValue":153,"maxValue":370,"minStep":1,"typeLabel":"color-temperature"},{"iid":1638406,"type":"00000144-0000-1000-8000-0026BB765291","format":"tlv8","value":"AQwBBAQAGQACBAEAAAAAAAEMAQQFABkAAgQCAAAA","perms":["pr"],"ev":false,"typeLabel":"supported-characteristic-value-transition-configuration"},{"iid":1638407,"type":"00000143-0000-1000-8000-0026BB765291","format":"tlv8","value":"","perms":["pr","pw","wr"],"ev":false,"typeLabel":"characteristic-value-transition-control"},{"iid":1638408,"type":"0000024B-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"typeLabel":"characteristic-value-active-transition-count"}],"typeLabel":"lightbulb"}]},{"aid":84,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS010","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Water Leak Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0005cfec21","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"4","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000083-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Water Leak Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000070-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"leak-detected"},{"iid":262148,"type":"00000077-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-fault"}],"typeLabel":"sensor.leak"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":85,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AS006","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Contact Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00025f1485","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"3","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000080-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Contact Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"0000006A-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"contact-state"}],"typeLabel":"sensor.contact"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":86,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MP001","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00019c9fe9","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"22","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","ev"],"ev":true,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]},{"aid":87,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MP001","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00019cff06","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"22","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","ev"],"ev":true,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]},{"aid":88,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MP001","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d0001f58eb6","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"22","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":0,"perms":["pr","ev"],"ev":true,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]},{"aid":89,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Aqara","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"AK010","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"158d00021366ef","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"2","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000089-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Button","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000073-0000-1000-8000-0026BB765291","format":"uint8","value":null,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":2,"minStep":1,"valid-values":[0,1,2],"typeLabel":"input-event"}],"typeLabel":"stateless-programmable-switch"},{"iid":5,"type":"00000096-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":327682,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Battery Sensor","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":327683,"type":"00000068-0000-1000-8000-0026BB765291","format":"uint8","value":100,"perms":["pr","ev"],"ev":true,"unit":"percentage","minValue":0,"maxValue":100,"minStep":1,"typeLabel":"battery-level"},{"iid":327685,"type":"00000079-0000-1000-8000-0026BB765291","format":"uint8","value":0,"perms":["pr","ev"],"ev":true,"minValue":0,"maxValue":1,"minStep":1,"valid-values":[0,1],"typeLabel":"status-lo-batt"},{"iid":327684,"type":"0000008F-0000-1000-8000-0026BB765291","format":"uint8","value":2,"perms":["pr","ev"],"ev":true,"minValue":2,"maxValue":2,"minStep":1,"valid-values":[2],"typeLabel":"charging-state"}],"typeLabel":"battery"}]},{"aid":90,"services":[{"iid":1,"type":"0000003E-0000-1000-8000-0026BB765291","primary":false,"hidden":false,"characteristics":[{"iid":65537,"type":"00000014-0000-1000-8000-0026BB765291","format":"bool","perms":["pw"],"typeLabel":"identify"},{"iid":65538,"type":"00000020-0000-1000-8000-0026BB765291","format":"string","value":"Mi","perms":["pr"],"ev":false,"typeLabel":"manufacturer"},{"iid":65539,"type":"00000021-0000-1000-8000-0026BB765291","format":"string","value":"MP003","perms":["pr"],"ev":false,"typeLabel":"model"},{"iid":65540,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":65541,"type":"00000030-0000-1000-8000-0026BB765291","format":"string","value":"4cf8cdf3c777ce9","perms":["pr"],"ev":false,"typeLabel":"serial-number"},{"iid":65542,"type":"00000052-0000-1000-8000-0026BB765291","format":"string","value":"24","perms":["pr"],"ev":false,"typeLabel":"firmware.revision"},{"iid":65543,"type":"00000053-0000-1000-8000-0026BB765291","format":"string","value":"1.0","perms":["pr"],"ev":false,"typeLabel":"hardware.revision"}],"typeLabel":"accessory-information"},{"iid":4,"type":"00000047-0000-1000-8000-0026BB765291","primary":true,"hidden":false,"characteristics":[{"iid":262146,"type":"00000023-0000-1000-8000-0026BB765291","format":"string","value":"Outlet","perms":["pr"],"ev":false,"typeLabel":"name"},{"iid":262147,"type":"00000025-0000-1000-8000-0026BB765291","format":"bool","value":null,"perms":["pr","pw","ev"],"ev":true,"typeLabel":"on"},{"iid":262148,"type":"00000026-0000-1000-8000-0026BB765291","format":"bool","value":null,"perms":["pr","ev"],"ev":true,"typeLabel":"outlet-in-use"}],"typeLabel":"outlet"}]}]}
[10-05-2022 15:33:55][DEBUG] : Envoi de l'Accessory brut : {"eventType":"getAccessories","id":"AB:15:76:41:4A:FD","refresh":true}
[10-05-2022 15:33:55][DEBUG] : Rafraîchissement pour Aqara-Hub-M1S-3774
[10-05-2022 15:33:55][DEBUG] : Pas de changement de souscription
[10-05-2022 15:34:03][INFO] : Reçu une demande d'action...{"id":"AB:15:76:41:4A:FD","aid":"81","iid":"327683","val":"0"}
2022-05-10T13:34:03.048Z hap-controller:http-client Reuse persistent connection client
2022-05-10T13:34:03.048Z hap-controller:http-connection 192.168.1.72:49668 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a38312c22696964223a3332373638332c2276616c7565223a66616c73657d5d7d
2022-05-10T13:34:03.056Z hap-controller:http-connection 192.168.1.72:49668 Response 204 with 0 byte data
[10-05-2022 15:34:03][INFO] : Action de jeedom effectuée pour Aqara-Hub-M1S-3774 : on->false
[10-05-2022 15:34:12][INFO] : Reçu une demande d'action...{"id":"AB:15:76:41:4A:FD","aid":"81","iid":"262147","val":"0"}
2022-05-10T13:34:12.381Z hap-controller:http-client Reuse persistent connection client
2022-05-10T13:34:12.382Z hap-controller:http-connection 192.168.1.72:49668 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a38312c22696964223a3236323134372c2276616c7565223a66616c73657d5d7d
2022-05-10T13:34:12.390Z hap-controller:http-connection 192.168.1.72:49668 Response 204 with 0 byte data
[10-05-2022 15:34:12][INFO] : Action de jeedom effectuée pour Aqara-Hub-M1S-3774 : on->false
[10-05-2022 15:34:26][INFO] : Reçu une demande d'action...{"id":"1b:dc:8a:61:e7:14","aid":"5","iid":"15","val":"17"}
2022-05-10T13:34:26.020Z hap-controller:http-client Reuse persistent connection client
2022-05-10T13:34:26.021Z hap-controller:http-connection 192.168.1.73:80 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a352c22696964223a31352c2276616c7565223a31377d5d7d
[10-05-2022 15:34:36][WARNING] : Action de jeedom pour tado Internet Bridge IB3005030144 a fait un timeout (le périphérique n'a pas répondu dans les 10sec, vérifiez le réseau ou le périphérique) TimeOut
[10-05-2022 15:34:54][INFO] : Reçu une demande de refresh d'accessoire...
[10-05-2022 15:34:54][DEBUG] : Récupération en cours de la description de l'accessoire...
2022-05-10T13:34:54.975Z hap-controller:http-client Reuse persistent connection client
2022-05-10T13:34:54.975Z hap-controller:http-connection 192.168.1.73:80 GET /accessories
[10-05-2022 15:36:05][INFO] : Reçu une demande d'action...{"id":"AE:44:A6:10:F4:A4","aid":"3","iid":"10","val":"0"}
2022-05-10T13:36:05.818Z hap-controller:http-client Reuse persistent connection client
2022-05-10T13:36:05.819Z hap-controller:http-connection 192.168.1.71:5001 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a332c22696964223a31302c2276616c7565223a307d5d7d
2022-05-10T13:36:06.326Z hap-controller:http-connection 192.168.1.71:5001 Response 204 with 0 byte data
[10-05-2022 15:36:06][INFO] : Action de jeedom effectuée pour Prise Control : position.target->0
[10-05-2022 15:36:09][INFO] : Event reçu de Prise Control : position.current=0
[10-05-2022 15:36:33][INFO] : Event reçu de Aqara-Hub-M1S-3774 : status-lo-batt=0
[10-05-2022 15:36:34][INFO] : Event reçu de Aqara-Hub-M1S-3774 : light-level.current=9214
[10-05-2022 15:36:35][INFO] : Event reçu de Aqara-Hub-M1S-3774 : temperature.current=25.6
[10-05-2022 15:36:36][INFO] : Event reçu de Aqara-Hub-M1S-3774 : relative-humidity.current=42
[10-05-2022 15:36:43][INFO] : Event reçu de Aqara-Hub-M1S-3774 : status-lo-batt=0
[10-05-2022 15:37:26][INFO] : Reçu une demande de refresh d'accessoire...
[10-05-2022 15:37:26][DEBUG] : Récupération en cours de la description de l'accessoire...
2022-05-10T13:37:26.873Z hap-controller:http-client Reuse persistent connection client
2022-05-10T13:37:26.873Z hap-controller:http-connection 192.168.1.71:5001 GET /accessories
2022-05-10T13:37:27.426Z hap-controller:http-connection 192.168.1.71:5001 Response 200 with 7380 byte data
addTypeLabels: 0.794ms
[10-05-2022 15:37:27][INFO] : Description de l'accessoire reçue : {"accessories":[{"aid":1,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Prise Control","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Bubendorff Gateway","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"g3eca53","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"39","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"000000A2-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000037-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"1.1.0","typeLabel":"version"}],"hidden":false,"primary":false,"typeLabel":"protocol.information.service"},{"type":"EA22EA53-6227-55EA-AC24-73ACF3EEA0E8","iid":31,"characteristics":[{"type":"4D05AE82-5A22-5BD6-A730-B7F8B4F3218D","iid":32,"perms":["pw"],"format":"bool","typeLabel":"4D05AE82-5A22-5BD6-A730-B7F8B4F3218D"},{"type":"00F44C18-042E-5C4E-9A4C-561D44DCD804","iid":30,"perms":["pr"],"format":"string","value":"g3eca53","typeLabel":"00F44C18-042E-5C4E-9A4C-561D44DCD804"}],"hidden":true,"primary":false,"typeLabel":"EA22EA53-6227-55EA-AC24-73ACF3EEA0E8"}]},{"aid":2,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0007368876","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"21","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]},{"aid":3,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0007370421","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"21","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":0,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":0,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]},{"aid":4,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0007374746","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"21","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]},{"aid":5,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0007375684","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"21","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]},{"aid":6,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0007374736","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"21","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]},{"aid":50,"services":[{"type":"0000003E-0000-1000-8000-0026BB765291","iid":1,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":2,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"name"},{"type":"00000020-0000-1000-8000-0026BB765291","iid":3,"perms":["pr"],"format":"string","value":"Bubendorff","typeLabel":"manufacturer"},{"type":"00000021-0000-1000-8000-0026BB765291","iid":4,"perms":["pr"],"format":"string","value":"Rolling shutter","typeLabel":"model"},{"type":"00000030-0000-1000-8000-0026BB765291","iid":5,"perms":["pr"],"format":"string","value":"0012045134","typeLabel":"serial-number"},{"type":"00000014-0000-1000-8000-0026BB765291","iid":6,"perms":["pw"],"format":"bool","typeLabel":"identify"},{"type":"00000052-0000-1000-8000-0026BB765291","iid":7,"perms":["pr"],"format":"string","value":"22","typeLabel":"firmware.revision"}],"hidden":false,"primary":false,"typeLabel":"accessory-information"},{"type":"0000008C-0000-1000-8000-0026BB765291","iid":8,"characteristics":[{"type":"00000023-0000-1000-8000-0026BB765291","iid":9,"perms":["pr"],"format":"string","value":"Window covering","typeLabel":"name"},{"type":"0000007C-0000-1000-8000-0026BB765291","iid":10,"perms":["pr","pw","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.target"},{"type":"0000006D-0000-1000-8000-0026BB765291","iid":11,"perms":["pr","ev"],"format":"uint8","value":100,"minStep":100,"unit":"percentage","minValue":0,"maxValue":100,"typeLabel":"position.current"},{"type":"00000072-0000-1000-8000-0026BB765291","iid":12,"perms":["pr","ev"],"format":"uint8","value":2,"minStep":1,"minValue":0,"maxValue":2,"typeLabel":"position.state"}],"hidden":false,"primary":true,"typeLabel":"window-covering"}]}]}
[10-05-2022 15:37:27][DEBUG] : Envoi de l'Accessory brut : {"eventType":"getAccessories","id":"AE:44:A6:10:F4:A4","refresh":true}
[10-05-2022 15:37:27][DEBUG] : Rafraîchissement pour Prise Control
[10-05-2022 15:37:27][DEBUG] : Pas de changement de souscription
[10-05-2022 15:37:47][INFO] : Reçu une demande d'action...{"id":"AE:44:A6:10:F4:A4","aid":"3","iid":"10","val":"100"}
2022-05-10T13:37:47.624Z hap-controller:http-client Reuse persistent connection client
2022-05-10T13:37:47.624Z hap-controller:http-connection 192.168.1.71:5001 PUT /characteristics 7b22636861726163746572697374696373223a5b7b22616964223a332c22696964223a31302c2276616c7565223a3130307d5d7d
2022-05-10T13:37:48.418Z hap-controller:http-connection 192.168.1.71:5001 Response 204 with 0 byte data
[10-05-2022 15:37:48][INFO] : Action de jeedom effectuée pour Prise Control : position.target->100
[10-05-2022 15:37:52][INFO] : Event reçu de Prise Control : position.current=100
[10-05-2022 15:39:23][INFO] : Event reçu de Aqara-Hub-M1S-3774 : relative-humidity.current=56
[10-05-2022 15:40:01][INFO] : Event reçu de Aqara-Hub-M1S-3774 : status-lo-batt=0
Apollon77 commented 2 years ago

Homnestly ... no idea what to read out of the logs ... with 3 devices it is near to impossible to see what belongs to what ... I can enhance some logs on the library side... you should add IP or ID or such to your logs too ...

Or please describe what happens with the tado (IP with .73 at the end?) in both cases ??

In fact what I really need is a log whith ideally that one tado device together with a "time log of what was donbe when by whom" and what as expected and what happened or such ... else it is guessing :-(

So basicalles you are not that wrong with the idea to "have such a device in direct access" by you or me to really dig into it that way

NebzHB commented 2 years ago

yes it's complicated that way...

i've asked the user, when removing the persistent connection it works better, it still disconnect/reconnect alot but it can be used... how to know when to use persistent or not... not easy...

the new parameter doesn't seems to help... cause it's blocking events until there is another connection done

Apollon77 commented 2 years ago

Ok :-( I think I will leave the new parameter in marked as "experimental" and release that as new official version, btu in fact yes do not change that much :-(

BTW: is that Tado Bridge Battery powered or regular powered?

NebzHB commented 2 years ago

regular powered, but he did changed the power cord too...

Apollon77 commented 2 years ago

was just the idea that they might save battery life (if it is about that, but isn't)

stale[bot] commented 2 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs within the next 7 days. Please check if the issue is still relevant in the most current version of the adapter and tell us. Also check that all relevant details, logs and reproduction steps are included and update them if needed. Thank you for your contributions. Dieses Problem wurde automatisch als veraltet markiert, da es in letzter Zeit keine Aktivitäten gab. Es wird geschlossen, wenn nicht innerhalb der nächsten 7 Tage weitere Aktivitäten stattfinden. Bitte überprüft, ob das Problem auch in der aktuellsten Version des Adapters noch relevant ist, und teilt uns dies mit. Überprüft auch, ob alle relevanten Details, Logs und Reproduktionsschritte enthalten sind bzw. aktualisiert diese. Vielen Dank für Eure Unterstützung.

Apollon77 commented 2 years ago

In the meantime we know that this is a security chip used by Tadoi ... so no way

NebzHB commented 2 years ago

oh ok, good to know ! thx anyway :D