@@ -18,18 +18,20 @@ drive the camera on a Raspberry Pi.
18
18
19
19
## Warnings/Issues:
20
20
* No security, no encryption (if your network has other users, they can also connect to the server).
21
- * Running multiple raspistills at the same time can cause the camera to lock up.
22
21
* The picam-based server's zoom isn't fully working.
23
22
* The live view is semi-live, it's slow, perhaps a zombie-view more than a live-view.
24
23
* Kivy settings don't seem to support placing restrictions on values and I haven't yet coded any sanity checks of my own.
25
24
* Switching to scene mode Auto seems to improve brightness/contrast.
26
- * -ev doesn't seem to do much.
25
+ * Negative ev sometimes doesn't seem to do much.
26
+ * Running multiple raspistills at the same time can cause the camera to lock up (it's best not to run more than one client at a time).
27
27
28
28
## Prerequisites
29
29
30
30
### On your RaspberryPi - assuming Raspbian
31
31
Install the python-twisted package (used for client/server networking).
32
-
32
+ ```
33
+ sudo apt-get install python-twisted
34
+ ```
33
35
PiKam inclues a server that uses the raspistill command to drive the
34
36
camera. If you setup your Raspberry Pi so that raspistill works,
35
37
then piKam shold work too.
@@ -41,9 +43,9 @@ the picam module then follow Sean's installation instructions at https://github
41
43
42
44
Picam requires the python image library, which can be
43
45
installed by running the following command:
44
-
46
+ ```
45
47
sudo apt-get install python-imaging-tk
46
-
48
+ ```
47
49
### On your selected Kivy client platform
48
50
49
51
I use piKam on Linux and Android, but it would likely run on
0 commit comments