Skip to content

Latest commit

 

History

History
49 lines (27 loc) · 1.04 KB

README.md

File metadata and controls

49 lines (27 loc) · 1.04 KB

Brightness Module

Description

Module to control the bright of Android device.

Accessing the Brightness Module

To access this module from JavaScript, you would do the following:

var bright = require("com.apaladini.brightness");

The bright variable is a reference to the Module object.

Functions

getSystemBrightLevel

Return a float value (0-1) of current system bright level

setSystemBrightLevel

Set a float value (0-1) to system bright level

getWindowBrightLevel (Android only)

Return a float value (0-1) of current window bright level

setWindowBrightLevel (Android only)

Set a float value (0-1) to window bright level

Info

On Android, to use "setSystemBrightLevel", your app need permission to write on system settings. To do this, edit your tiapp.xml and insert this:

<android xmlns:android="http://schemas.android.com/apk/res/android">
    <manifest>
        <uses-permission android:name="android.permission.WRITE_SETTINGS"/>
    </manifest>
</android>

Usage

See sample code

Author

Adriano Paladini