homebridge-fibaro-home-center icon indicating copy to clipboard operation
homebridge-fibaro-home-center copied to clipboard

Nice state in Garage Door Opener

Open meme1981 opened this issue 3 years ago • 12 comments

Ciao! Just a question, It's possible to have in garagedooropener the 4 states?

Fibaro's output of properties.value (for Nice Gates) are 4 : Closed, Opened, Opening, Closing. Thanks (se posso aiutarti sono a disposizione!)

meme1981 avatar Jan 04 '22 13:01 meme1981

@meme1981 is there also the value stopped ?

ilcato avatar Jan 10 '22 13:01 ilcato

@meme1981, can you test the beta version ? Use homebridge-fibaro-home-center@beta to install.

ilcato avatar Jan 10 '22 13:01 ilcato

Se non ricordo male sei italiano giusto?

Inviato da iPhone

Il giorno 10 gen 2022, alle ore 14:31, ilcato @.***> ha scritto:



@meme1981https://github.com/meme1981 is there also the value stopped ?

— Reply to this email directly, view it on GitHubhttps://github.com/ilcato/homebridge-fibaro-home-center/issues/80#issuecomment-1008876782, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AH4ZQA6IG3UE5ERE2ZMXW5DUVLNSRANCNFSM5LHPOPHA. Triage notifications on the go with GitHub Mobile for iOShttps://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Androidhttps://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub. You are receiving this because you were mentioned.Message ID: @.***>

meme1981 avatar Jan 10 '22 16:01 meme1981

oui

ilcato avatar Jan 10 '22 16:01 ilcato

Perfetto!! Il quinto stato è “Unknow” Se lo stoppi a metà lui va in “Unknow” Comunque arrivo a casa e ricontrollo. Questo con L antenna OXBidi che e’ bidirezionale ovviamente. Appena arrivò a casa installo la beta e proviamo subito Grazie!!

Inviato da iPhone

Il giorno 10 gen 2022, alle ore 17:45, ilcato @.***> ha scritto:



oui

— Reply to this email directly, view it on GitHubhttps://github.com/ilcato/homebridge-fibaro-home-center/issues/80#issuecomment-1009101199, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AH4ZQA5OQI6Y3V4ZQ6IVZF3UVMEL5ANCNFSM5LHPOPHA. Triage notifications on the go with GitHub Mobile for iOShttps://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Androidhttps://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub. You are receiving this because you were mentioned.Message ID: @.***>

meme1981 avatar Jan 10 '22 16:01 meme1981

Va in crash homebridge, dopo riprovo perché dalla macchina fatico

[cid:CED8D095-5198-46D6-A214-9E7806DF7A55-L0-001] Inviato da iPhone

Il giorno 10 gen 2022, alle ore 17:45, ilcato @.***> ha scritto:



oui

— Reply to this email directly, view it on GitHubhttps://github.com/ilcato/homebridge-fibaro-home-center/issues/80#issuecomment-1009101199, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AH4ZQA5OQI6Y3V4ZQ6IVZF3UVMEL5ANCNFSM5LHPOPHA. Triage notifications on the go with GitHub Mobile for iOShttps://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Androidhttps://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub. You are receiving this because you were mentioned.Message ID: @.***>

meme1981 avatar Jan 10 '22 17:01 meme1981

Ti confermo i 5 stati: Opened Opening Closing Closed Unknow Se si stoppa va in Unknow

Ho reinstallato la 1.2.7-beta ma va in crash


Da: ilcato @.> Inviato: lunedì 10 gennaio 2022 17:45 A: ilcato/homebridge-fibaro-home-center @.> Cc: meme1981 @.>; Mention @.> Oggetto: Re: [ilcato/homebridge-fibaro-home-center] Nice state in Garage Door Opener (Issue #80)

oui

— Reply to this email directly, view it on GitHubhttps://github.com/ilcato/homebridge-fibaro-home-center/issues/80#issuecomment-1009101199, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AH4ZQA5OQI6Y3V4ZQ6IVZF3UVMEL5ANCNFSM5LHPOPHA. Triage notifications on the go with GitHub Mobile for iOShttps://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Androidhttps://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub. You are receiving this because you were mentioned.Message ID: @.***>

meme1981 avatar Jan 10 '22 17:01 meme1981

@meme1981, can you test it with the new beta?

ilcato avatar Jan 11 '22 15:01 ilcato

Hi, now it works but no refresh state, i need to close the app and open it again, Other problem is this: when i Open it's always in Closing... If this can help with Nodered i use this function:

if (msg.payload.properties.state === "Opened") { msg.payload.CurrentDoorState = 0; msg.payload.TargetDoorState = 0; } else if (msg.payload.properties.state === "Opening") { msg.payload.CurrentDoorState = 1; msg.payload.TargetDoorState = 0; } else if (msg.payload.properties.state === "Closing") { msg.payload.CurrentDoorState = 0; msg.payload.TargetDoorState = 1; } else if (msg.payload.properties.state === "Closed") { msg.payload.CurrentDoorState = 1; msg.payload.TargetDoorState = 1; } else if (msg.payload.properties.state === "Unknow") { msg.payload.CurrentDoorState = 4; msg.payload.TargetDoorState = 1; } return msg;

Thank you!!


Da: ilcato @.> Inviato: martedì 11 gennaio 2022 16:22 A: ilcato/homebridge-fibaro-home-center @.> Cc: meme1981 @.>; Mention @.> Oggetto: Re: [ilcato/homebridge-fibaro-home-center] Nice state in Garage Door Opener (Issue #80)

@meme1981https://github.com/meme1981, can you test it with the new beta?

— Reply to this email directly, view it on GitHubhttps://github.com/ilcato/homebridge-fibaro-home-center/issues/80#issuecomment-1010069526, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AH4ZQA3LFOVY3B3ZRQKUQBLUVRDKBANCNFSM5LHPOPHA. Triage notifications on the go with GitHub Mobile for iOShttps://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Androidhttps://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub. You are receiving this because you were mentioned.Message ID: @.***>

meme1981 avatar Jan 11 '22 19:01 meme1981

now it works

What does it mean? Are the new state reported correctly beside the refresh issue?

ilcato avatar Jan 12 '22 13:01 ilcato

problem 1: when the door or gate is “opening” the device signals closing. problem 2: the status does not follow the polling period: after movement the door is closed or open ( in Fibaro too) and on the homekit app it appears “closing” until the homekit app is closed and reopened. Thanks

Inviato da iPhone

Il giorno 12 gen 2022, alle ore 14:28, ilcato @.***> ha scritto:

What does it mean? Are the new state reported correctly beside the refresh issue?

meme1981 avatar Jan 12 '22 23:01 meme1981

@meme1981, can you test it with the new beta?

ilcato avatar Mar 01 '22 09:03 ilcato