Insteon hub 2245-222 with SwitchLinc dimmer not working?

Hello!
I am new to openHAB, and am trying to setup a SwitchLinc dimmer switch that is controlled by the Insteon Smart Hub. To ensure the setup was working, I downloaded Insteon’s android app and set up the dimmer switch, and it worked just fine, as I controlled it on my phone. However, I can not seem to make it work with OpenHAB. I looked at some guides and other threads, but I can not seem to figure it out. Here is my items file:

thenameyouwish.items

Dimmer SwitchLinc "Basement Half 1" {insteonplm="20.A5.DA:F00.00.01#dimmer"}

And here is my sitemap:

thenameyouwish.sitemap

sitemap demo label="Main Menu" {
    Frame label="Date" {
        Text item=Date
    }
    Frame label="Basement" {
        Text label="Basement 1" icon="1stfloor" {
            Switch item=SwitchLinc
            }
            
            
            }
            }

And finally, here is my Insteon Binding in the openhab.cfg file:

############################### Insteon PLM Binding ###################################
#
# The insteon PLM controller port, one for each modem or hub.
# You can have multiple ports, but that has never been tested, use at your own peril.
#
# examples of valid port configurations for serial or usb modems:
#
# Linux, with serial port symlinked to /dev/insteon:
# insteonplm:port_0=/dev/insteon
#
# Linux, with plain old serial modem:
# insteonplm:port_0=/dev/ttyS0
#
# Linux, with usb based PLM modem:
# insteonplm:port_0=/dev/ttyUSB0
#
# Windows, with serial/usb modem on COM1:
# insteonplm:port_0=COM1
#
# to connect to an Insteon Hub2 (the 2014 version) on port 25105 with
# a poll interval of 1000ms = 1sec, use the following line. Use the login
# and password that is printed on the label on the bottom of the hub,
# NOT the Insteon online login and password!
#
# insteonplm:port_0=/hub2/myusername:mypassword@192.168.x.xx:25105,poll_time=1000

In the above, “myusername” and “mypassword” is acually the username and password on the lable underneath the Insteon Hub, and the IP is the Hub’s IP address (I just blocked it out for safty). Everything else is exactly as it is in the designer.

Finally, here is the log:

2016-12-24 10:08:42.856 [INFO ] [.o.core.internal.CoreActivator] - openHAB runtime has been started (v1.8.3).
2016-12-24 10:08:43.494 [INFO ] [o.o.i.s.i.DiscoveryServiceImpl] - mDNS service has been started
2016-12-24 10:08:43.682 [INFO ] [o.o.i.s.i.DiscoveryServiceImpl] - Service Discovery initialization completed.
2016-12-24 10:08:46.711 [INFO ] [insteonplm.InsteonPLMActivator] - Insteon PLM binding has been started.
2016-12-24 10:08:53.276 [INFO ] [c.internal.ModelRepositoryImpl] - Loading model 'thenameyouwish.sitemap'
2016-12-24 10:08:53.382 [INFO ] [c.internal.ModelRepositoryImpl] - Loading model 'thenameyouwish.items'
2016-12-24 10:08:53.451 [WARN ] [.o.b.i.InsteonPLMActiveBinding] - device 20.A5.DA not found in the modem database. Did you forget to link?
2016-12-24 10:17:48.222 [INFO ] [.o.core.internal.CoreActivator] - openHAB runtime has been started (v1.8.3).
2016-12-24 10:18:01.079 [INFO ] [o.o.i.s.i.DiscoveryServiceImpl] - mDNS service has been started
2016-12-24 10:18:01.167 [INFO ] [o.o.i.s.i.DiscoveryServiceImpl] - Service Discovery initialization completed.
2016-12-24 10:18:11.954 [INFO ] [c.internal.ModelRepositoryImpl] - Loading model 'thenameyouwish.sitemap'
2016-12-24 10:18:12.944 [INFO ] [penhab.io.rest.RESTApplication] - Started REST API at /rest
2016-12-24 10:18:13.421 [INFO ] [c.internal.ModelRepositoryImpl] - Loading model 'thenameyouwish.items'
2016-12-24 10:18:18.558 [INFO ] [.o.u.w.i.servlet.WebAppServlet] - Started Classic UI at /classicui/openhab.app
2016-12-24 10:18:21.215 [INFO ] [insteonplm.InsteonPLMActivator] - Insteon PLM binding has been started.
2016-12-24 10:20:23.361 [ERROR] [o.u.i.items.ItemUIRegistryImpl] - Cannot retrieve item Date for widget org.openhab.model.sitemap.Text
2016-12-24 10:20:23.494 [ERROR] [o.u.i.items.ItemUIRegistryImpl] - Cannot retrieve item Date for widget org.openhab.model.sitemap.Text
2016-12-24 10:20:23.494 [ERROR] [o.u.i.items.ItemUIRegistryImpl] - Cannot retrieve item Date for widget org.openhab.model.sitemap.Text
2016-12-24 10:20:30.061 [INFO ] [.o.b.i.InsteonPLMActiveBinding] - Item: SwitchLinc got command OFF
2016-12-24 10:20:32.009 [INFO ] [.o.b.i.InsteonPLMActiveBinding] - Item: SwitchLinc got command ON
2016-12-24 10:21:09.885 [INFO ] [.o.b.i.InsteonPLMActiveBinding] - Item: SwitchLinc got command OFF

I would like to note that in the log, it said my device “20.A5.DA” could not be found. This is my dimmer switch.

Yes, I copied and pasted lots of my sitemap from the demo.sitemap file, just to see what I was missing. Anyway, what did I forget? All help is appreciated, and I apologize that I am a noob. Like I said, I did look in other threads, but I could not find my exact problem.

Once again, thanks to everyone.

You need to comment out the relevant lines (remove the # sign) and fill in the config for your specific hardware.

Thank you so much! I spent a day wondering why this was not working, but as soon as a removed the #, viola! Thank you again for your help, and Merry Christmas!