20180516
This commit is contained in:
parent
5e4fbfce73
commit
9ee04f6a20
@ -1 +1 @@
|
|||||||
23
|
29
|
||||||
|
74
gpio/info.sh
74
gpio/info.sh
@ -5,6 +5,7 @@
|
|||||||
# Date: 20180118
|
# Date: 20180118
|
||||||
# Time: 17:17
|
# Time: 17:17
|
||||||
#
|
#
|
||||||
|
#
|
||||||
# AUthor: aixiao@aixiao.me.
|
# AUthor: aixiao@aixiao.me.
|
||||||
#
|
#
|
||||||
|
|
||||||
@ -60,7 +61,7 @@ function INIT()
|
|||||||
stop=0;
|
stop=0;
|
||||||
|
|
||||||
#时间范围
|
#时间范围
|
||||||
high="1730";
|
high="1700";
|
||||||
low="2300";
|
low="2300";
|
||||||
|
|
||||||
#当前时间
|
#当前时间
|
||||||
@ -97,7 +98,7 @@ function INIT()
|
|||||||
}
|
}
|
||||||
#风扇
|
#风扇
|
||||||
wiringpi_wind="1"; #脚位
|
wiringpi_wind="1"; #脚位
|
||||||
l_temperature="20"; #不高于这个摄氏温度
|
l_temperature="28"; #不高于这个摄氏温度
|
||||||
temperature=$(cat ${bindir}/data/wind.data 2> ${null}); #温度,摄氏度
|
temperature=$(cat ${bindir}/data/wind.data 2> ${null}); #温度,摄氏度
|
||||||
start_wind="${bindir}/info_light ${wiringpi_wind} 1"; #${wiringpi_wind} 高电压
|
start_wind="${bindir}/info_light ${wiringpi_wind} 1"; #${wiringpi_wind} 高电压
|
||||||
stop_wind="${bindir}/info_light ${wiringpi_wind} 0"; #${wiringpi_wind} 低电压
|
stop_wind="${bindir}/info_light ${wiringpi_wind} 0"; #${wiringpi_wind} 低电压
|
||||||
@ -105,7 +106,7 @@ function INIT()
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#红外线守护进程
|
#红外线守护进程.
|
||||||
function infrared()
|
function infrared()
|
||||||
{
|
{
|
||||||
while true; do
|
while true; do
|
||||||
@ -114,12 +115,12 @@ function infrared()
|
|||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
#灯守护进程
|
#灯主进程.
|
||||||
function light_daemon()
|
function light()
|
||||||
{
|
{
|
||||||
while true; do
|
while true; do
|
||||||
if test ${W} != "0"; then : 不是周日.
|
if test ${W} != "0"; then : 不是周日.
|
||||||
if [ $now -ge $high -a $now -le $low ]; then : 7:30 - 19:00自动检测,其他时间段不管,手动.
|
if [ $now -ge $high -a $now -le $low ]; then : 19:30 - 23:00自动检测,其他时间段不管,手动.
|
||||||
if [ "${phonelogic}" == "0" ]; then : phone 如果在线.
|
if [ "${phonelogic}" == "0" ]; then : phone 如果在线.
|
||||||
if test "${lightpinvalue}" = "0"; then : 检测灯pin值.
|
if test "${lightpinvalue}" = "0"; then : 检测灯pin值.
|
||||||
${start_light};
|
${start_light};
|
||||||
@ -144,6 +145,10 @@ while true; do
|
|||||||
if test "${lightpinvalue}" = "0"; then : 检测灯pin值.
|
if test "${lightpinvalue}" = "0"; then : 检测灯pin值.
|
||||||
${start_light};
|
${start_light};
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
if test "${lightpinvalue}" = "1"; then
|
||||||
|
${stop_light};
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
if [ "${phonelogic}" == "1" ]; then : 不在时间段就关闭,手动.
|
if [ "${phonelogic}" == "1" ]; then : 不在时间段就关闭,手动.
|
||||||
@ -158,6 +163,7 @@ SLEEP 60;
|
|||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#声音传感器守护进程.
|
||||||
function sound_daemon()
|
function sound_daemon()
|
||||||
{
|
{
|
||||||
while :; do
|
while :; do
|
||||||
@ -166,42 +172,45 @@ function sound_daemon()
|
|||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#声音传感器主进程.
|
||||||
function sound()
|
function sound()
|
||||||
{
|
{
|
||||||
:
|
:
|
||||||
}
|
}
|
||||||
|
|
||||||
#灯主进程
|
#风扇守护进程.
|
||||||
|
function wind_daemon()
|
||||||
|
{
|
||||||
|
while true; do
|
||||||
|
${bindir}/wind > ${bindir}/data/wind.data; : 温度传感器获取室内温度信息.
|
||||||
|
SLEEP 9;
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
#风扇主进程.
|
||||||
function wind()
|
function wind()
|
||||||
{
|
{
|
||||||
INIT
|
INIT
|
||||||
while true ; do
|
while true ; do
|
||||||
if [[ "${phonelogic}" == "0" ]]; then : 手机在不在.
|
if [[ "${phonelogic}" == "0" ]]; then : 手机在不在?
|
||||||
if [[ "${temperature}" -ge "${l_temperature}" ]]; then : 温度大于37摄氏度.
|
if [[ "${temperature}" -ge "${l_temperature}" ]]; then : 温度大于等于$l_temperature摄氏度.
|
||||||
echo "温度够"
|
if test "${status_wind}" = "0"; then
|
||||||
if test "${status_wind}" = "0"; then
|
${start_wind};
|
||||||
${start_wind};
|
SLEEP 180; : 开启后风扇运行3分钟.
|
||||||
|
${stop_wind};
|
||||||
|
SLEEP 60; : 开启后风扇停止运行1分钟,这样是怕吹感冒了.
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
test "${status_wind}" = "1" && ${stop_wind}; : 小于$l_temperature温度就检测或关闭.
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
test "${status_wind}" = "1" && ${stop_wind};
|
test "${status_wind}" = "1" && ${stop_wind}; : 手机不再就检测或关闭.
|
||||||
fi
|
fi
|
||||||
else
|
SLEEP 7;
|
||||||
test "${status_wind}" = "1" && ${stop_wind};
|
|
||||||
fi
|
|
||||||
SLEEP 9;
|
|
||||||
INIT;
|
INIT;
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
#风扇守护进程
|
|
||||||
function wind_daemon()
|
|
||||||
{
|
|
||||||
while true; do
|
|
||||||
${bindir}/wind > ${bindir}/data/wind.data;
|
|
||||||
SLEEP 60;
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
#主进程
|
#主进程
|
||||||
function main_()
|
function main_()
|
||||||
{
|
{
|
||||||
@ -233,17 +242,18 @@ case ${ai} in
|
|||||||
;;
|
;;
|
||||||
h|?)
|
h|?)
|
||||||
echo -ne "
|
echo -ne "
|
||||||
\e[1;31mraspberrypi zero w GPIO Modular\e[0m
|
\e[1;31mraspberrypi zero w & 3, GPIO Modular\e[0m
|
||||||
$0 Usage: $0 [-?|h] [-d] [-s] [-x] [light|temperature|wind]
|
$0 Usage: $0 [-?|h] [-d] [-s] [-x] [light|temperature|wind]
|
||||||
-d : Daemon.
|
-?|h : Printf Help
|
||||||
-s : kill Daemon, signal: stop.
|
-d : Daemon.
|
||||||
-x : Print commands and their arguments as they are executed.
|
-s : kill Daemon, signal: stop.
|
||||||
|
-x : Print commands and their arguments as they are executed.
|
||||||
|
|
||||||
light : light Modular.
|
light : light Modular.
|
||||||
temperature : temperature Modular.
|
temperature : temperature Modular.
|
||||||
wind : Wind Modular.
|
wind : Wind Modular.
|
||||||
|
|
||||||
by aixiao.
|
by aixiao@aixiao.me.
|
||||||
"
|
"
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
@ -256,7 +266,7 @@ eval array=(${@})
|
|||||||
for i in ${array[@]}; do
|
for i in ${array[@]}; do
|
||||||
case $i in
|
case $i in
|
||||||
light)
|
light)
|
||||||
eval light_daemon ${daemon}
|
eval light ${daemon}
|
||||||
echo $! > ${bindir}/log/light.pid 2> ${null}
|
echo $! > ${bindir}/log/light.pid 2> ${null}
|
||||||
;;
|
;;
|
||||||
temperature)
|
temperature)
|
||||||
|
@ -1 +1 @@
|
|||||||
19529
|
14602
|
||||||
|
@ -1 +1 @@
|
|||||||
14392
|
16325
|
||||||
|
Loading…
Reference in New Issue
Block a user