> For the complete documentation index, see [llms.txt](https://saral.sunbird.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://saral.sunbird.org/learn/features/improved-low-light-performance-manual-edit.md).

# Improved Low light Performance - Manual Edit

Saral App is used in the field to collect data, but the challenge is in few places where there is low lighting or layout format challenge causing difficulty to scan layout. So once user login to Saral App, and isManualEditEnabled flag is set, Scanning Layout for a duration more than the set time defined by scanTimeoutMs shows a popup\\

"Do you want to continue with manual edit screen ?". On clicking yes user can enter/edit data manually.\\

This feature is available from v1.5.9 release and above.

![](/files/LvjeKClPj3zVgPicJDJ8)

![](/files/gRT3aUdFLVsNCpd6sHoB)

Manual Edit option can be controlled by following configuration:

```
isManualEditEnabled - boolean
scanTimeoutMs - integer
```

`isManualEditEnabled` is a boolean property in `/schools/login` API response. if it's set to true then Manual Edit process will be enabled.\
`scanTimeoutMs` is an integer property in `/schools/login` API response. It specifies the scanning timeout.\\

`/schools/login` API response with `isManualEditEnabled` and `scanTimeoutMs` configuration reference.

```
{
"school" : {
    "storeTrainingData" : true,
    "name" : "Dummy school 4",
    "schoolId" : "u002",
    "state" : "up",
    "autoSynch" : true,
    "autoSynchFrequency" : 9000,
    "autoSyncBatchSize": 20,
    "isManualEditEnabled": true,
    "scanTimeoutMs": 60000
}
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://saral.sunbird.org/learn/features/improved-low-light-performance-manual-edit.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
