Page 1 of 1

Keypad Usercode comment

Posted: Saturday 19 November 2016 12:33
by remb0
I have a Zipato / Schlage Link Mini Keypad RFID and some tags.

But as you can see on the screen the codes are encrypted and no place to enter description like:
fathers key, friends key etc.

and when I press home of away I see:

2016-11-19 12:28:35.837 (Z-stick) Light/Switch (Keypad Alarm Armed)
2016-11-19 12:28:36.134 OpenZWave: Alarm Level: Secure
2016-11-19 12:28:36.123 (Z-stick) Light/Switch (Keypad Access Control)
2016-11-19 12:28:36.420 (Z-stick) Light/Switch (Alarm Type)
2016-11-19 12:28:36.423 (Z-stick) Light/Switch (Keypad Alarm Armed)
2016-11-19 12:28:36.735 (Z-stick) Light/Switch (Keypad Access Control)
2016-11-19 12:28:37.057 (Z-stick) Light/Switch (Alarm Type)
2016-11-19 12:28:37.061 (Z-stick) Light/Switch (Keypad Alarm Armed)
2016-11-19 12:28:37.362 (Z-stick) Light/Switch (Burglar_Burglar)

Would it possible to add comments into user code which be displayed in the logging. So I can see who's entering/leaving the house?
2016-11-19 12_28_16-Domoticz.png
2016-11-19 12_28_16-Domoticz.png (158.23 KiB) Viewed 1707 times

Re: Keypad Usercode comment

Posted: Saturday 19 November 2016 12:59
by heggink
That would be very nice indeed. ;)

Re: Keypad Usercode comment

Posted: Saturday 19 November 2016 20:13
by stlaha2007
Hmm i think acoording to your remarks you identify your key with a tap and then arm or disarm the securitysystem right?

In that case, i guess you need another way of thinking to get it done.

Use the key to on/off a switch for lets say your father. Tapping it switches to on or off.

Around all those keys build a script that enables/disables the armed/disarmed status of the securitysystem.

Re: Keypad Usercode comment

Posted: Saturday 26 November 2016 16:37
by proncola
Should not be a big deal for anyone familiar with compilation mechanisms (I'm not)
I 'm looking for such a solution for several week.
I made several trials with some of my keyfobs after enabling debug for my ZWAVE.ME UZB device.
The logs clearly shows that the Keyboard does send the information (an index corresponding to the keyfob just before the last byte)
However, it doesn't seem to be passed to domoticZ by the OpenZWave USB driver.
In the 'Received Alarm report' we could likely use sensorSrcID to contain the keyfob index.

Code: Select all

Using DomoticcZ
    Version: 3.4834
    Build Hash: 8398125
    Compile Date: 2016-03-02 08:43:51

    ZWAVE-ME device on Windows DomoticZ:    
        OpenZWave USB Version: 1.4.77.g40eb730.dirty

    KEYBOARD is:
        'Node 014 (0x0e)	Clavier	Schlage Link Mini Keypad RFID' and 5 Keyfobs:
LOGS:

Code: Select all

KEYFOB3: HOME 
2016-11-26 12:11:49.439 Detail, Node014,   Received: 0x01, 0x10, 0x00, 0x04, 0x00, 0x0e, 0x0a, 0x71, 0x05, 0x00, 0x00, 0x00, 0xff, 0x06, 0x06, 0x01, 0x03, 0x66
2016-11-26 12:11:49.450 Info, Node014, Received Alarm report: type=0, level=0, sensorSrcID=0, type:Access Control event:6, status=255

KEYFOB3: AWAY
2016-11-26 12:11:54.051 Detail, Node014,   Received: 0x01, 0x10, 0x00, 0x04, 0x00, 0x0e, 0x0a, 0x71, 0x05, 0x00, 0xff, 0x00, 0xff, 0x06, 0x05, 0x01, 0x03, 0x9a
2016-11-26 12:11:54.056 Info, Node014, Received Alarm report: type=0, level=255, sensorSrcID=0, type:Access Control event:5, status=255


KEYFOB2: HOME
2016-11-26 16:07:35.350 Detail, Node014,   Received: 0x01, 0x10, 0x00, 0x04, 0x00, 0x0e, 0x0a, 0x71, 0x05, 0x00, 0x00, 0x00, 0xff, 0x06, 0x06, 0x01, 0x02, 0x67
2016-11-26 16:07:35.366 Info, Node014, Received Alarm report: type=0, level=0, sensorSrcID=0, type:Access Control event:6, status=255

KEYFOB5: AWAY
2016-11-26 16:07:52.012 Detail, Node014,   Received: 0x01, 0x10, 0x00, 0x04, 0x00, 0x0e, 0x0a, 0x71, 0x05, 0x00, 0xff, 0x00, 0xff, 0x06, 0x05, 0x01, 0x05, 0x9c
2016-11-26 16:07:52.034 Info, Node014, Received Alarm report: type=0, level=255, sensorSrcID=0, type:Access Control event:5, status=255


KEYFOB1: HOME
2016-11-26 16:11:41.137 Detail, Node014,   Received: 0x01, 0x10, 0x00, 0x04, 0x00, 0x0e, 0x0a, 0x71, 0x05, 0x00, 0x00, 0x00, 0xff, 0x06, 0x06, 0x01, 0x01, 0x64
2016-11-26 16:11:41.150 Info, Node014, Received Alarm report: type=0, level=0, sensorSrcID=0, type:Access Control event:6, status=255

KEYFOB1: AWAY
2016-11-26 16:11:44.121 Detail, Node014,   Received: 0x01, 0x10, 0x00, 0x04, 0x00, 0x0e, 0x0a, 0x71, 0x05, 0x00, 0xff, 0x00, 0xff, 0x06, 0x05, 0x01, 0x01, 0x98
2016-11-26 16:11:44.131 Info, Node014, Received Alarm report: type=0, level=255, sensorSrcID=0, type:Access Control event:5, status=255

Re: Keypad Usercode comment

Posted: Monday 28 November 2016 10:51
by stlaha2007
Okay that i understand... Thats another way, which i agree, isn't pickedup by domoticz. Hmm somebody with the knowledge has to look into that then. As i don't have the knowledge.

Sent from my K00C using Tapatalk