https://github.com/khuei/lightmeter
Light Meter for Android
https://github.com/khuei/lightmeter
android lightmeter
Last synced: 4 months ago
JSON representation
Light Meter for Android
- Host: GitHub
- URL: https://github.com/khuei/lightmeter
- Owner: khuei
- License: mit
- Created: 2024-09-10T20:05:20.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-09-27T14:10:01.000Z (9 months ago)
- Last Synced: 2025-01-11T20:15:13.141Z (5 months ago)
- Topics: android, lightmeter
- Language: Kotlin
- Homepage:
- Size: 262 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Light Meter
## Overview
`lightmeter` is an Android application that uses the device's light
sensor to calculate optimal camera settings for exposure. The app allows users
to adjust ISO and aperture settings and calculates the corresponding shutter
speed to achieve proper exposure.
![]()
## Installation
See releases page
## Usage
1. Launch the App: Open the app on your Android device.
2. Point to the direction where you want take photo of
3. Adjust ISO and Aperture: Use the on-screen controls to adjust ISO and aperture settings.
4. View Shutter Speed: The app displays the current lux value and calculates the appropriate shutter speed based on the selected settings.## Shutter Speed Calculation Formula
$${Shutter Speed} = \frac{ISO^2}{N^2 \times 2^{EV}}$$
Where:
- *N* = Aperture
- *L* = Lux
- *EV* = Exposure Value, calculated as:$${EV} = {baseEV} + \frac{\ln{(ISO / 100)}}{\ln{2}}$$
- *baseEV*: assumed to be 0 for ISO 100 and aperture f/1.0 at lux = 1