Hi,
When troubleshooting flows that contain removed devices, it can be quite hard to remember or understand what cards that now say ‘Card not available’ did previously. My suggestion is to add a preview of the card’s previous function when hovering over the info button.
7 Likes
Would love this, or at least that you can view the arguments that were once set.
1 Like
The function (capability) is showed already, albeit not very clear.
When you regularly run this script and save the results, you can find the corresponding device name, if it’s ID is specfied in the tooltip
// To find device IDs
const devices = await Homey.devices.getDevices();
console.log(`\nDevices overview`);
for (const device of Object.values(devices)) {
log(`\nName:\t\t ${device.name} \nID:\t\t ${device.id}`);
// To show ALL of the device data, uncomment the next lime:
//log(device);
};
return true;