wayne: Adjust overlays for recently added light capability
* Led capability LIGHTS_ADJUSTABLE_BATTERY_LED_BRIGHTNESS was recently added to the Lineage SDK. Declare such capability, since our targets don't have RGB battery leds, but the lights HAL supports brightness control via the alpha channel for battery and notification lights. Change-Id: Ifcdc4816d27f7b781712dde6eb9b2e4f73449c6c
This commit is contained in:
parent
7712e1328f
commit
e3b3f7d5ba
1 changed files with 25 additions and 4 deletions
|
@ -14,21 +14,42 @@
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
<resources>
|
<resources>
|
||||||
|
<!-- Default value for proximity check on screen wake
|
||||||
|
NOTE ! - Enable for devices that have a fast response proximity sensor (ideally < 300ms)-->
|
||||||
|
<bool name="config_proximityCheckOnWake">true</bool>
|
||||||
|
<bool name="config_proximityCheckOnWakeEnabledByDefault">true</bool>
|
||||||
|
|
||||||
<!-- All the capabilities of the LEDs on this device, stored as a bit field.
|
<!-- All the capabilities of the LEDs on this device, stored as a bit field.
|
||||||
This integer should equal the sum of the corresponding value for each
|
This integer should equal the sum of the corresponding value for each
|
||||||
of the following capabilities present:
|
of the following capabilities present:
|
||||||
|
// Device has a color adjustable battery light.
|
||||||
LIGHTS_RGB_NOTIFICATION_LED = 1
|
LIGHTS_RGB_NOTIFICATION_LED = 1
|
||||||
|
// Device has a color adjustable notification light.
|
||||||
LIGHTS_RGB_BATTERY_LED = 2
|
LIGHTS_RGB_BATTERY_LED = 2
|
||||||
LIGHTS_MULTIPLE_NOTIFICATION_LED = 4 (deprecated)
|
LIGHTS_MULTIPLE_NOTIFICATION_LED = 4 (deprecated)
|
||||||
|
// The notification light has adjustable pulsing capability.
|
||||||
LIGHTS_PULSATING_LED = 8
|
LIGHTS_PULSATING_LED = 8
|
||||||
|
// Device has a multi-segment battery light that is able to
|
||||||
|
// use the light brightness value to determine how many
|
||||||
|
// segments to show (in order to represent battery level).
|
||||||
LIGHTS_SEGMENTED_BATTERY_LED = 16
|
LIGHTS_SEGMENTED_BATTERY_LED = 16
|
||||||
|
// The notification light supports HAL adjustable brightness
|
||||||
|
// via the alpha channel.
|
||||||
|
// Note: if a device notification light supports LIGHTS_RGB_NOTIFICATION_LED
|
||||||
|
// then HAL support is not necessary for brightness control. In this case,
|
||||||
|
// brightness support will be provided by lineage-sdk through the scaling of
|
||||||
|
// RGB color values.
|
||||||
LIGHTS_ADJUSTABLE_NOTIFICATION_LED_BRIGHTNESS = 32
|
LIGHTS_ADJUSTABLE_NOTIFICATION_LED_BRIGHTNESS = 32
|
||||||
|
// Device has a battery light.
|
||||||
LIGHTS_BATTERY_LED = 64
|
LIGHTS_BATTERY_LED = 64
|
||||||
|
// The battery light supports HAL adjustable brightness via
|
||||||
|
// the alpha channel.
|
||||||
|
// Note: if a device battery light supports LIGHTS_RGB_BATTERY_LED then HAL
|
||||||
|
// support is not necessary for brightness control. In this case,
|
||||||
|
// brightness support will be provided by lineage-sdk through the scaling of
|
||||||
|
// RGB color values.
|
||||||
|
LIGHTS_ADJUSTABLE_BATTERY_LED_BRIGHTNESS = 128
|
||||||
For example, a device with notification and battery lights that supports
|
For example, a device with notification and battery lights that supports
|
||||||
pulsating and RGB control would set this config to 75. -->
|
pulsating and RGB control would set this config to 75. -->
|
||||||
<integer name="config_deviceLightCapabilities">104</integer>
|
<integer name="config_deviceLightCapabilities">232</integer>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
Loading…
Reference in a new issue