Skip to content

Commit

Permalink
Bump version to 2.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
iizukanao committed Jan 30, 2023
1 parent 1dcad16 commit 0fa99eb
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log
==========

Version 2.0.10 *(2023-01-30)*
----------------------------

- Added `--autofocus-mode` and `--lens-position` options for Camera Module 3.

Version 2.0.9 *(2022-12-07)*
----------------------------

Expand Down
17 changes: 13 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ chmod +x make_dirs.sh
alsamixer

# Install picam binary
wget https://github.com/iizukanao/picam/releases/download/v2.0.9/picam-2.0.9-`uname -m`.tar.xz
tar xvf picam-2.0.9-*.tar.xz
cp picam-2.0.9-*/picam ~/picam/
wget https://github.com/iizukanao/picam/releases/download/v2.0.10/picam-2.0.10-`uname -m`.tar.xz
tar xvf picam-2.0.10-*.tar.xz
cp picam-2.0.10-*/picam ~/picam/

# Run picam
cd ~/picam
Expand Down Expand Up @@ -187,7 +187,7 @@ $ touch hooks/unmute
#### Command options

```txt
picam version 2.0.9
picam version 2.0.10
Usage: picam [options]
Options:
Expand Down Expand Up @@ -295,6 +295,15 @@ Options:
--hdmi Preview output HDMI port (0 or 1; default=0)
HDMI port selection only works in console mode (when X is not running)
--query Query camera capabilities then exit
[autofocus] (available on Camera Module 3)
--autofocus-mode <mode> AF (autofocus) algorithm. <mode> is one of:
continuous: Continuous autofocus (default)
manual: Manual mode
--lens-position <num> Move lens to the reciprocal of the focal distance in
meters, also known as diopters. Implies "--autofocus-mode manual".
To focus on objects 2m away, use 0.5 (1m / 0.5 = 2m).
To focus on objects 25cm away, use 4 (1m / 4 = 0.25m).
Use 0 for maximum focus distance.
[timestamp] (may be a bit heavy on Raspberry Pi 1)
--time Enable timestamp
--timeformat <spec> Timestamp format (see "man strftime" for spec)
Expand Down
2 changes: 1 addition & 1 deletion picam_option/picam_option.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ extern "C" {
#include "text/text.h"

#define PROGRAM_NAME "picam"
#define PROGRAM_VERSION "2.0.9"
#define PROGRAM_VERSION "2.0.10"

typedef struct white_balance_option {
const char *name;
Expand Down

0 comments on commit 0fa99eb

Please sign in to comment.