STUMPED - Create simple sitemap for 1 zwave switch

So I have been struggling for the past 2 days trying to get a simple setup with 1 zwave switch. My setup is as follows:

Raspberry Pi 3 - running Raspbian 8 (jessie)
Openhab 2.0 (offline version)
Habmin 2.0
zwave binding
Aeon Labs Aeotec Z Stick Gen 5 zwave controller
Aeon Labs DSC06106-ZWUS (on/off switch that plugs into wall)

So currently, I have OpenHab 2.0 running and have managed to get the zwave binding installed in the Paper UI, added the Z Stick manually as a controller in Paper UI, and then added the switch in Paper UI as well.

Now this is where I’m stumped. The following is my incomplete items file:
location - /opt/openhab2/conf/items/test_power.items

File Contents:
Switch Test_Power { binding=“zwave:”, autoupdate=“true”}

The following is my sitemap file:
Location - /opt/openhab2/conf/sitemaps/test.sitemap

File Contents:
sitemap test house label=“test”
{
Frame label=“testframe”
{
Switch item=
}
}

Also to add, I can successfully turn on and off the zwave switch in the Control section of Paper UI.

You need to provide the item name.

Ok, So I figured it out thanks to the following thread:

First, my items file is wrong.

In the Paper UI under Things, I select my target device. Then under the “Switch” channel, I have the following text (I blanked out the custom item id):

zwave:device:(customitemid):node2:switch_binary

In my items file, I add this text to the appropriate place:

Switch Test_Power {channel=“zwave:device:(customitemid)node2:switch_binary”, autoupdate=“true”}

Then my sitemap looks like this:

itemap test label=“test”
{
Frame label=“test”
{
Switch item=Test_Power
}
}