#!/bin/sh

[ "${ACTION}" = "released" ] || exit 0

. /lib/functions.sh

logger "$BUTTON pressed for $SEEN seconds"

if [ "$SEEN" -lt 3 ]
then
	echo "Please press 3s" > /dev/console
#elif [ "$SEEN" -ge 3 -a "$SEEN" -lt 5]
#then
#	echo "3-5s" > /dev/console
elif [ "$SEEN" -gt 3 ]
then
fi

return 0
