Skip to content

Commit

Permalink
Added support for auto white balance.
Browse files Browse the repository at this point in the history
  • Loading branch information
RobboRob authored May 29, 2020
1 parent 04d942b commit 2c7137e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion capture_RPiHQ.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ int main(int argc, char *argv[])
daytimeDelay = atoi(argv[i + 1]);
i++;
}
else if (strcmp(argv[i], "-autoawb") == 0)
else if (strcmp(argv[i], "-awb") == 0)
{
asiAutoAWB = atoi(argv[i + 1]);
i++;
Expand Down
13 changes: 5 additions & 8 deletions settings.json.repo_RPiHQ
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,18 @@
"exposure":"30000",
"autogain":"0",
"gain":"1",
"coolerEnabled":"0",
"targetTemp":"0",
"gamma":"50",
"brightness":"50",
"wbr":"0",
"wbb":"0",
"awb":"0",
"wbr":"2",
"wbb":"2",
"bin":"1",
"delay":"10",
"daytimeDelay": "5000",
"type":"1",
"quality":"95",
"filename":"image.jpg",
"flip":"0",
"latitude":"60.7N",
"longitude":"135.05W",
"angle":"-6",
"time":"1"
}
"angle":"-6"
}

0 comments on commit 2c7137e

Please sign in to comment.