-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata.py
More file actions
43 lines (42 loc) · 1.15 KB
/
data.py
File metadata and controls
43 lines (42 loc) · 1.15 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
categories = {
"Choose a category...": {},
"Smart Sockets": {
"Wiwo S20 WiFi Socket": [
"Nmap Scan",
"Sniff Packets",
"Check Open Ports",
"Switch On",
"Switch Off"
],
"TP-Link Smart Plug": None,
"D-Link Mydlink Plug W215": None,
"Wemo Mini WiFi Plug": None,
"Awair Glow Smart Plug": None
},
"Thermostats": {
"Nest Thermostat 3rd": None,
"Honeywell Thermostat": None,
"Lyric T5 Thermostat": None
},
"IP Cameras": {
"D-link Wireless N Camera": None,
"D-Link DCS 5222L Camera": None,
"August Doorbell Camera": None,
},
"Smart Speakers": {
"Triby Kitchen Speaker": None,
"HomePod Smart Speaker": None,
"Sonos Play Speaker": None,
"Talkies Toy Speaker": None
},
"Health Care": {
"Garmin Vivosmart Fitness": None,
"Fitbit Surge Fitness Tracker": None,
"iHealth Edge Activity Tracker": None,
"Sport BP Heart Rate Monitor": None
}
}
scripts = {
"Switch On": "tests/test.py on",
"Switch Off": "tests/test.py off"
}