[quote=“jadragescu, post:22, topic:195752”]Ok, I finally got a response from Vera. They didn’t have a problem by sharing the implementation. I don’t even know if they even care to utilize this device as a supported device in the future. 
Either or, here are my findings:
Add as generic Zwave Device:
1 Primary Dimmable Light
2 Secondary Dimmable Light
3 Generic I/O Device
Once added Change parameters in Advanced Settings on primary device (1st Dimmable Device Created):
Device type (urn:schemas-micasaverde-com:device:MotionSensor:1)
device file (D_MotionSensor1.xml)
json (D_MotionSensor1.json)
category (4)
sub category (3)
After saving those settings, go to advanced settings again:
change associationnum to 1
change multichannelendpoint 1,0,0
Add an Association:
add association group id 2: zwave, no endpoint (leave the input text field, blank)
This will be able to get your primary device to show Motion detection, and use your 2nd dimmable light for scene’s/etc.
What I did next would create a scene and variable watch to detect when your primary device (now motion detector) to know when it is armed/disarmed to change the value:
Create a Manual Triggered Scene (Scene Number… (Mine was 5)):
local armed = luup.variable_get(“urn:micasaverde-com:serviceId:SecuritySensor1”,“Armed”, 376) – 376 is Device your device Number
armed = tonumber(armed)
if (armed == 1) then
luup.call_action(“urn:micasaverde-com:serviceId:ZWaveNetwork1”,“SendData”,{Node=“89”,Data=“112 4 6 1 1”},1) – 89 is alt id of your device and this luup action enable motion detection
elseif (armed == 0) then
luup.call_action(“urn:micasaverde-com:serviceId:ZWaveNetwork1”,“SendData”,{Node=“89”,Data=“112 4 6 1 0”},1) – 89 is alt id of your device and this luup action disables motion detection
luup.variable_set(“urn:micasaverde-com:serviceId:SecuritySensor1”,“Tripped”,“0”,376)
end
Create a variable watch in your “Start up Lua” (Apps → Develop Apps → Edit Startup Lua):
– Set up variable-watch for device 59 (your device number created)
luup.variable_watch(“SensorTrip59”,“urn:micasaverde-com:serviceId:SecuritySensor1”,“SetArmed”,59)
– Process variable-watch callback for device 59. Run scene 5
function SensorArm59()
luup.call_action(“urn:micasaverde-com:serviceId:HomeAutomationGateway1”, “RunScene”, {SceneNum = 5}, 0)
end
You can do the same to run a manual trigger or device trigger for any action for your Generic I/O: Perhaps Light Sensor ON/OFF…
The only thing I don’t like, or haven’t figured out is to get Instant device reporting for Dimmable Light. I have it polled at 60 seconds. The dimmable light device will report ON/OFF if manually pressed from the switch, but not update when motion is detected.
**If anyone has any ideas to have that updated appropriately, that would be a great help.
There may be a better way of creating an Implementation File to do the variable watch for device and without creation of a Manually Scene/etc. I thought this was the easier approach, but if anyone wants to develop an Implementation, please do so and please share!
If you have any questions, improvements/etc, please post. I will try to answer any questions/concerns as well.[/quote]
jadragescu,
I just installed the straight switch/non dimmable version of this (26931). Right now, I set it up in manual mode and just did the setting changes you listed for the motion sensor. I haven’t gone into the Luup code yet. Can you tell me what the _Generic IO device it created is for?