Z-Wave device configuration

Hello nice people!
I am making a thesis work for my university study about Z-wave network configuration using Openhab. I have already installed the software and everything works just fine. My problem is that I do not have the resources to buy the devices but I need to show in my thesis how to configure them. I would really appreciate if someone could send me some screenshots to show how to connect and configure the devices. There are 4 devices only that I need to show and they are: Z-stick gen5, Aeotec Multisensor 6, Danalock V3 and a FIBARO Walli switch. I would be really happy if someone who already has these devices could send me some screenshots how they are connecting and how to work with them using Openhab.
Thank you in advance.

I can only help you with the zwave stick and maybe a fibaro dimmer. It works the same as the walli switch.
What do you need? I use item files for the configuration. And only a gui (paperui of habmin) for zwave configurations (like associations). And of course rule files.

If you could send me some screenshots from paperui to show that the devices are connected and how you control them it would be great.

sure

zwave devices

Aeotec Zwave stick

Fibaro Dimmer

Control of the Dimmer in BasicUI

Setting the Force Brightness channel based on time of the day

rule "Light low"

when

    Item Current_TOD changed or

    Item Dark_Outside changed to ON or

    System started

then

    switch Current_TOD.state.toString {

        case "MORNING":{

            Bathroom_Light_ForceBrightness.sendCommand(99)

            checkIfOnD.apply(Bathroom_Light_Dimmer1,99)

            LivingRoom_Light_DinnerTable_ForceBrightness.postUpdate(100)

            MasterBedroom_Light_ForceBrightness.sendCommand(30)

            Kitchen_Light_ForceBrightness.sendCommand(50)

        }

        case "EVENING":{

            if (Dark_Outside.state == ON){

                Bathroom_Light_ForceBrightness.sendCommand(20)

                checkIfOnD.apply(Bathroom_Light_Dimmer1,20)

                MasterBedroom_Light_ForceBrightness.sendCommand(30)

                LivingRoom_Light_DinnerTable_ForceBrightness.postUpdate(50)

                MasterBedroom_Light_Eva_ForceBrightness.postUpdate(30)

                Kitchen_Light_ForceBrightness.sendCommand(50)

            }

        }

        case "NIGHT":{

            createTimer(now.plusMinutes(30), [|   // if for example activated bij switch, wait 30 minutes

                Bathroom_Light_ForceBrightness.sendCommand(10)

                MasterBedroom_Light_ForceBrightness.sendCommand(15)

                MasterBedroom_Light_Eva_ForceBrightness.postUpdate(10)

            ])

            LivingRoom_Light_DinnerTable_ForceBrightness.postUpdate(10)

            Kitchen_Light_ForceBrightness.sendCommand(1)

            checkIfOnD.apply(Kitchen_Light_Dimmer1,1)

        }

        default: {

            Bathroom_Light_ForceBrightness.sendCommand(99)

            checkIfOnD.apply(Bathroom_Light_Dimmer1,99)

            MasterBedroom_Light_ForceBrightness.sendCommand(99)

            MasterBedroom_Light_Eva_ForceBrightness.postUpdate(100)

            LivingRoom_Light_DinnerTable_ForceBrightness.postUpdate(100)

            Kitchen_Light_ForceBrightness.sendCommand(99)

        }

    }

end

Is this what you are looking for?

Yes, for these two devices thats fine. Thank you very much!