Hello,
Does someone manage to use the Tag Reader of the Zipato Mini Keypad by using the JSON API ?
For a regular keyboard code, I manage to set it up by using the Call :
http://[...]:8083/ZWaveAPI/Run/devices[18].instances[0].commandClasses[99].Set(2,1234,1)
However, I can't use the same call for a Tag Reader ?
From my perspective, the reason being the fact that it is not a regular string with digits but a Byte Array such as : 142,0,30,178,37,0,1,5,0,0
Does someone manage to use this API for Tag Reader from a php script ?
Here is the piece of code, I am using :
$url = [...].'/ZWaveAPI/Run/devices[18].instances[0].commandClasses[99].Set(2,'.$code.',1)';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$html = curl_exec($ch);
Thank you for your help