-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
72 lines (67 loc) · 1.63 KB
/
config.json.example
File metadata and controls
72 lines (67 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"port": 32500,
"log_dir": "",
"tv_player_name": "",
"webhook_token": "",
"dry_run": false,
"hue": {
"enabled": true,
"bridge_ip": "192.168.1.xxx",
"api_user": "your-hue-api-username",
"lights": [1, 2, 3]
},
"govee": {
"enabled": false,
"api_key": "your-govee-api-key",
"device": "AA:BB:CC:DD:EE:FF:00:11",
"model": "H6076"
},
"home_assistant": {
"enabled": false,
"url": "http://homeassistant.local:8123",
"token": "your-long-lived-access-token",
"verify_ssl": true,
"transition_seconds": 1,
"entity_ids": ["light.living_room_lamp"],
"mode_scenes": {
"movie": "",
"pause": "",
"normal": ""
}
},
"state_restore": {
"enabled": true,
"fallback_mode": "normal",
"home_assistant_scene_id": "plex_lights_preplay",
"capture_govee_state": true
},
"modes": {
"movie": {
"hue_brightness": 13,
"hue_color_temp": 500,
"govee_brightness": 5,
"govee_color": {"r": 255, "g": 120, "b": 20},
"ha_brightness_pct": 5,
"ha_color_temp_kelvin": 2200,
"ha_rgb_color": [255, 120, 20]
},
"pause": {
"hue_brightness": 77,
"hue_color_temp": 400,
"govee_brightness": 25,
"govee_color": {"r": 255, "g": 160, "b": 60},
"ha_brightness_pct": 25,
"ha_color_temp_kelvin": 2600,
"ha_rgb_color": [255, 160, 60]
},
"normal": {
"hue_brightness": 254,
"hue_color_temp": 366,
"govee_brightness": 100,
"govee_color": {"r": 255, "g": 200, "b": 120},
"ha_brightness_pct": 100,
"ha_color_temp_kelvin": 3000,
"ha_rgb_color": []
}
}
}