[SOLVED] Switching from PaperUI based config to Text file config only

The hue textual configuration is well documented and easy. You just need the lightId as an attribute and you can get that from the hue app. Navigate to the about page of the app, there you will find the lightId. The types are well documented in the binding documentation.

This is the syntax i use if a bridge is involved:

Bridge hue:bridge:<bridgeid> [ ipAddress="<ip>", userName = "<username>" ] 
{ 
    Thing 0210 15 "SZDL" @ "SZ" [ lightId="15" ]
}

I used to use the network binding as well, it’s pretty straight foward, no bridge involved:

Thing network:pingdevice:10_10_10_1 "modem" @ "FE" [ hostname="10.10.10.1", retry=1, timeout=5000, refreshInterval=60000 ]

I do not use the others, so i can’t comment on that.