Experimental event counting algo
[mirrors/Programs.git] / c / goertzel / sleepmon.sh
CommitLineData
890439ae
TM
1#!/bin/sh
2# Simple sleep monitor (Harvie 2012)
3#
4# You probably have soundcard with one output and input
5# Take PIR motion sensor from security system
6# Use PIR to switch connection between left channels of output and input (tips of 3.5mm jacks)
7# Connect grounds of these two together (maybe you will not need it - depending on your soundcard)
8# Power up PIR
9# Launch this script
10# Use alsamixer and some GUI recorder (like audacity) to tune volume to some usable level
11# Place PIR facing to your bed and go sleep
12# Wake up
13# Enjoy your data
14
f51cf844 15
5e47bf73 16out=/tmp/sleeplog-"$(date +%F_%T)".txt
890439ae
TM
17speaker-test -t sine &>/dev/null &
18tresh=10
19lastdate=0
f51cf844
TM
20screen=false
21while getopts "s" OPT; do
22 test "$OPT" == 's' && screen=true;
23done
2fbfcde7 24echo "Writing to file: $out";
19a509d1 25arecord | ./goertzel -n i -q -l c -t $tresh -d 4 | while read line; do
890439ae
TM
26 date="$(date +%s)"
27 time="$(echo "$line" | cut -f 1)"
28 level="$(echo "$line" | cut -f 2)"
5e47bf73 29 echo -ne "$time\t$date\t$(date '+%F%t%T')\t"
890439ae 30 test "$level" -gt "$tresh" && {
7cd5c7da 31 echo -n "0 Nothing detected...";
f1a48c15 32 $screen && xset dpms force off || true;
890439ae 33 } || {
7cd5c7da 34 echo -n "1 Motion detected!!!!";
f1a48c15 35 $screen && xset dpms force on;
890439ae
TM
36 }
37 test "$lastdate" != 0 && {
38 after=$(( $date - $lastdate))
39 echo -ne "\t$level After $after secs";
40 }
41 echo;
7cd5c7da 42 ./sleepplot.sh "$out" &>/dev/null;
890439ae
TM
43 lastdate="$date";
44done | tee "$out"
45kill $!
19a509d1 46echo
890439ae 47echo "Your file: $out"
This page took 0.166441 seconds and 4 git commands to generate.