-
Notifications
You must be signed in to change notification settings - Fork 10
/
modes.py
57 lines (56 loc) · 1.62 KB
/
modes.py
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
# These are the launch modes of the app
mode_traffic = 'freebox-traffic'
mode_temp = 'freebox-temp'
mode_fan_speed = 'freebox-fan-speed'
mode_xdsl = 'freebox-xdsl'
mode_xdsl_errors = 'freebox-xdsl-errors'
mode_switch1 = 'freebox-switch1'
mode_switch2 = 'freebox-switch2'
mode_switch3 = 'freebox-switch3'
mode_switch4 = 'freebox-switch4'
mode_switch_bytes = 'freebox-switch-bytes'
mode_switch_packets = 'freebox-switch-packets'
mode_switch_stations = 'freebox-switch-stations'
mode_df = 'freebox-df'
mode_hddspin = 'freebox-hddspin'
mode_transmission_tasks = 'freebox-transmission-tasks'
mode_transmission_traffic = 'freebox-transmission-traffic'
mode_connection = 'freebox-connection'
mode_connection_log = 'freebox-connection-log'
mode_ftth = 'freebox-ftth'
mode_wifi_stations = 'freebox-wifi-stations'
mode_wifi_bytes = 'freebox-wifi-bytes'
mode_wifi_bytes_log = 'freebox-wifi-bytes-log'
modes = [
mode_traffic,
mode_temp,
mode_fan_speed,
mode_xdsl,
mode_xdsl_errors,
mode_switch1,
mode_switch2,
mode_switch3,
mode_switch4,
mode_switch_bytes + '1',
mode_switch_bytes + '2',
mode_switch_bytes + '3',
mode_switch_bytes + '4',
mode_switch_packets + '1',
mode_switch_packets + '2',
mode_switch_packets + '3',
mode_switch_packets + '4',
mode_switch_stations + '1',
mode_switch_stations + '2',
mode_switch_stations + '3',
mode_switch_stations + '4',
mode_df,
mode_hddspin,
mode_transmission_tasks,
mode_transmission_traffic,
mode_connection,
mode_connection_log,
mode_ftth,
mode_wifi_stations,
mode_wifi_bytes,
mode_wifi_bytes_log,
]