]> www.vanbest.org Git - motioneye-debian/commitdiff
updated readme for raspicam
authorCalin Crisan <ccrisan@gmail.com>
Sun, 27 Oct 2013 14:06:14 +0000 (16:06 +0200)
committerCalin Crisan <ccrisan@gmail.com>
Sun, 27 Oct 2013 14:17:06 +0000 (16:17 +0200)
raspicam/README.md [new file with mode: 0644]
raspicam/readme.txt [deleted file]

diff --git a/raspicam/README.md b/raspicam/README.md
new file mode 100644 (file)
index 0000000..37c6037
--- /dev/null
@@ -0,0 +1,34 @@
+## This folder is only meaningful for Raspberry PI devices used with the CSI camera board. ##
+
+1. make sure you have installed `uv4l` and `uv4l-raspicam` packages:
+   <http://www.linux-projects.org/modules/sections/index.php?op=viewarticle&artid=14>
+
+2. copy `motion` and `v4l2-ctl` scripts to `/usr/local/bin`;
+   they serve as wrappers for their corresponding programs and will
+   make the CSI camera work out of the box with motionEye:
+   
+        sudo cp motion /usr/local/bin
+        sudo cp v4l2-ctl /usr/local/bin
+
+3. make the scripts executable:
+
+        sudo chmod +x /usr/local/bin/motion
+        sudo chmod +x /usr/local/bin/v4l2-ctl
+
+4. the `uv4l` daemon must be started at boot; add the following line to `/etc/rc.local`,
+   *before* the line that starts motionEye:
+
+        test -x /usr/local/bin/motion && /usr/local/bin/motion -h > /dev/null 2>&1
+
+5. if you wish to start motionEye at boot, add this to `/etc/rc.local` (assuming motionEye lives in pi's home directory):
+
+        sudo -u pi /home/pi/motioneye/motioneye.py > /home/pi/motioneye/run/motioneye.log 2>&1 &
+
+        
+## CSI camera board troubleshooting ##
+
+* make sure you run the latest version of the Raspberry PI firmware
+(you may need a `rpi-update` for the latest `uv4l` version to work)
+* make sure you have enabled the camera module in `raspi-config`
+* don't overclock your PI too much, using the camera module causes core overheating already
+* don't reduce the memory allocated to the GPU too much
diff --git a/raspicam/readme.txt b/raspicam/readme.txt
deleted file mode 100644 (file)
index f6e2962..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-This folder is only meaningful for Raspberry PI devices used with the CSI camera board.
-
-1) make sure you have installed uv4l and uv4l-raspicam packages:
-    http://www.linux-projects.org/modules/sections/index.php?op=viewarticle&artid=14
-
-2) copy `motion' and `v4l2-ctl' scripts to /usr/local/bin;
-they serve as wrappers for their corresponding programs and will
-make the CSI camera work out of the box with motionEye:
-    sudo cp motion /usr/local/bin
-    sudo cp v4l2-ctl /usr/local/bin
-
-3) make the scripts executable:
-    sudo chmod +x /usr/local/bin/motion
-    sudo chmod +x /usr/local/bin/v4l2-ctl
-