1{
2    "light": {
3        "low": {
4            "soc": [0, 10],
5            "rgb": [255, 0, 0]
6        },
7        "normal": {
8            "soc": [10, 90],
9            "rgb": [255, 255, 0]
10        },
11        "high": {
12            "soc": [90, 100],
13            "rgb": [0, 255, 0]
14        }
15    },
16    "temperature": {
17        "high": 680,
18        "low": -500
19    },
20    "soc": {
21        "shutdown": 1,
22        "critical": 5,
23        "warning": 10,
24        "low": 20,
25        "normal": 90,
26        "high": 99,
27        "full": 100
28    },
29    "charger": {
30        "current_limit":{
31            "path": "/data/service/el0/battery/current_limit"
32        },
33        "voltage_limit":{
34            "path": "/data/service/el0/battery/voltage_limit"
35        },
36        "type": {
37            "path": "/data/service/el0/battery/charger_type"
38        }
39    },
40    "charge_scene" :{
41        "wireless": {
42            "support": {
43                "path": "",
44                "type": "",
45                "expect_value": ""
46            },
47            "get": {
48                "path": ""
49            },
50            "set": {
51                "path": ""
52            }
53        }
54    },
55    "uevent": {
56        "SUBSYSTEM=hw_power": {
57            "BATTERY_UNDER_VOLTAGE=1": "shutdown",
58            "BATTERY_UNDER_VOLTAGE=2": "reboot",
59            "BATTERY_UNDER_VOLTAGE=3": "sendcommonevent"
60        }
61    }
62}
63