This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: "Z-Wave JS Scene Controller Zooz Zen37 800LR" | |
description: Create automations for the Zooz Zen37 800LR 4 button scene controller using the Z-WAVE JS integration. | |
domain: automation | |
input: | |
zen37lr: | |
name: Zooz ZEN37 wall remote | |
description: "List of available Zen37 800LR wall remotes." | |
selector: | |
device: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/gawk | |
# call with the "pg of interest" as parameter, as in: | |
# gawk -v PGID=21.37a7 -f this-file < log | |
func logtm(tst) | |
{ | |
gsub(/[:.]/," ",tst); split(tst,x); | |
return x[1]*3600 + x[2]*60 + x[3] + x[4]/1000.0 | |
} |