[APP][Pro] Chronograph - Adds precise timer, stopwatch and transition functionality to Homey

@Arie_J_Godschalk
I saved a script once, this shows all timers/stopwatches/transitions used in flows.
From the returned data I think it shows all timers etc. I created and occur in a flowcard.
Might be of any use, Arie!

const flowsDic = await Homey.flow.getFlows();
const flows = Object.values(flowsDic)
const actions = flows.map(f => f.actions.filter(a => a.uri === 'homey:app:nl.fellownet.chronograph')).flat()
log(actions.reduce((a,x,y,z) => ({...a, [x.args.name]:x.id.split('_')[0] }), {}))

//log(actions)
//log(flowsDic)

1 Like