-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstructure.txt
More file actions
44 lines (43 loc) · 1.23 KB
/
structure.txt
File metadata and controls
44 lines (43 loc) · 1.23 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
.
├── config
│ └── config.yaml
├── doc
│ └── img
│ ├── PiHole_TFT_buttons.jpg
│ ├── PiTFT_buttons_parts.jpg
│ └── PiTFT_plugin.jpg
├── LICENSE
├── main.py
├── PADD
│ ├── padd.sh
│ └── README.md
├── README.md
├── requirements.txt
├── scripts
│ ├── README.md
│ └── start_display.sh
├── src
│ ├── __init__.py
│ ├── controllers
│ │ ├── __init__.py
│ │ └── button_manager.py
│ ├── display
│ │ ├── __init__.py
│ │ ├── backlight.py
│ │ ├── manager.py
│ │ └── tmux.py
│ ├── hardware
│ │ ├── __init__.py
│ │ ├── button.py
│ │ └── models.py
│ ├── services
│ │ ├── __init__.py
│ │ ├── pihole.py
│ │ └── system.py
│ └── utils
│ ├── __init__.py
│ ├── config.py
│ ├── constants.py
│ └── exceptions.py
└── structure.txt
12 directories, 30 files