Skip to content

Commit

Permalink
Update readconfigparam.js
Browse files Browse the repository at this point in the history
fix for:
In the selected field the value '1' in the section 'TakeImage' in the field 'CamGainceiling' is invalid. PLEASE CHECK BEFORE SAVING!
  • Loading branch information
SybexX authored Jul 20, 2024
1 parent 132834c commit ee38bc7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sd-card/html/readconfigparam.js
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,8 @@ function getCamConfig() {
}
if (!param["TakeImage"]["CamGainceiling"]["found"]) {
param["TakeImage"]["CamGainceiling"]["found"] = true;
param["TakeImage"]["CamGainceiling"].value1 = '1';
// param["TakeImage"]["CamGainceiling"].value1 = '1';
param["TakeImage"]["CamGainceiling"].value1 = 'x4';
}
if (!param["TakeImage"]["CamQuality"]["found"]) {
param["TakeImage"]["CamQuality"]["found"] = true;
Expand Down

0 comments on commit ee38bc7

Please sign in to comment.