Has anyone created an app that allows you to view the events from multiple different devices together in a single list?
Like this page, but events from two or more devices, instead of just one:
I feel like it should be straightforward: read the events from all selected devices, sort by date & time, display in a table. Iām debating about creating an app for it myself, but I wanted to know if anyone else has already done it before I reinvent the wheel
Wrote this some time back when I was trying to determine which motion detector was seeing motion first.
https://raw.githubusercontent.com/thebearmay/hubitat/main/apps/motionTiming.groovy
A little rough, but if you change line 66
input "qryDevice", "capability.motionSensor", title: "Devices of Interest:", multiple: true, required: true, submitOnChange: true
to
input "qryDevice", "capability.*", title: "Devices of Interest:", multiple: true, required: true, submitOnChange: true
it may get you close.
1 Like
Thank you! I had stumbled across your Lock History app and was starting to pick it apart, but Motion Timing is more streamlined and should be easier to start with. Thanks again!