Thank you. I was hoping it might just be some broken links needing to be updated to at least get back some of the information (along with a follow-up for future page updates).
I do have a specific question that I was trying to solve, which is why I was looking at these pages.
For App code, when trying to do a selection of devices, I know to use code along the lines of . . .
allDeviceTypes.each { deviceType ->
input(
// Note: This name _must_ be converted to a String.
// If it isn't, then all devices will be removed when linking to Google Home
name: "${deviceType.name}.devices" as String,
type: "capability.Light",
title: "${deviceType.display} devices",
multiple: true
)
What I was trying to figure out - for the "type" field, is it possible to use complex expressions and how to do that.
For example, can you have something like
type: "capability.Light" and NOT "capability.SwitchLevel"
or
Type: "capability.Light" and "capability.SwitchLevel"