Hi
I’m not sure if this is possible, but I want to setup a thing with a channel where, when I create the thing in the openhab backend ui (localhost:8080) I have the option to enter some parameters like ID on the device, username & password of some kind. These values should I have access to use in the backend when coding the other things.
<thing-type id="stick">
<label>Stick</label>
<description>Stick binding</description>
<channels>
<channel id="channelstick" typeId="stick-channel" />
</channels>
</thing-type>
<channel-type id="stick-channel">
<item-type>???</item-type>
<label>Stick channel</label>
<description>Stick channel for Binding</description>
</channel-type>
Supposed I created this thing and channel. How can I set this up, so when I create the thing in the openhab paper ui, I can write some parameters that I can access in the java backend?
Any suggestions?