#!/bin/bash

echo 255 > $lcd_backlight

if test "$1" = start -o "$1" = on; then
    (tcmd-camera-preview >/dev/null 2>&1 &)
else
    killall tcmd-camera-preview
fi

#ask-result Can you see the camera preview on LCD?
