In the docs for Smart Apps you can add a paragraph to preference to explain stuff.
http://docs.smartthings.com/en/latest/smartapp-developers-guide/preferences-and-settings.html#paragraph
But Device docs are very limited.
@jim
http://docs.smartthings.com/en/latest/device-type-developers-guide/device-preferences.html
I tried this but it didnāt work. I donāt know if sections works eitherā¦
preferences {
paragraph "This us how you can make a paragraph element"
input āsampleInputā, ānumberā, title: āSample Input Titleā,
description: āThis is the sample input.ā, defaultValue: 20,
required: false, displayDuringSetup: true
}
UPDATE: SORRYā¦found solution in sample mentioned on the pageā¦keeping post so jim can perhaps improve the example on the page to include this line.
input description: "Mesasge Goes here...", displayDuringSetup: false, type: "paragraph", element: "paragraph"