scene_activated – gets sent if a scene activated using scene controller
				
					{
    event = "scene_activated",
    node_id = 2,
    class_id = 43,
    channel_id = 0,
    scene_id = 1
}				
			
fields type description
event string type of an event
node_id int a unique id of a ZWave device within a Zwave network
class_id int class_id + channel_id construct a unique id of a pcp for a ZWave device
channel_id int channel id
scene_id int scene id

example: (event_handling.lua)

				
					 local params = ...

    if params.event == "node_added" then
        print( "we got a node_added event for a " .. params.node_id .. " device" )
    elseif params.event == "value_updated" then
        print( "we got a value_updated event, pcp: " .. to_string( params.class_id ) + to_string( params.channel_id ) )
    end