Improved goertzel documentation
[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
890439ae
TM
16out=/tmp/sleeplog-"$(date +%F_%r)".txt
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
c7611c89 24arecord | ./goertzel -n -q -l -t $tresh -d 4 | while read line; do
890439ae
TM
25 date="$(date +%s)"
26 time="$(echo "$line" | cut -f 1)"
27 level="$(echo "$line" | cut -f 2)"
28 echo -ne "$time\t$date\t$(date '+%F%t%r')\t"
29 test "$level" -gt "$tresh" && {
30 echo -n "Nothing detected...";
f1a48c15 31 $screen && xset dpms force off || true;
890439ae
TM
32 } || {
33 echo -n "Motion detected!!!!";
f1a48c15 34 $screen && xset dpms force on;
890439ae
TM
35 }
36 test "$lastdate" != 0 && {
37 after=$(( $date - $lastdate))
38 echo -ne "\t$level After $after secs";
39 }
40 echo;
41 lastdate="$date";
42done | tee "$out"
43kill $!
44echo "Your file: $out"
This page took 0.1488 seconds and 4 git commands to generate.