|
2 | 2 | config:
|
3 | 3 | # Configuration values to set up basic communication
|
4 | 4 | # Set your COM port e.g. COM3 for Windows, /dev/ttyACM0 for Linux...
|
| 5 | + # Use AUTO for COM port auto-discovery (may not work on every setup) |
5 | 6 | # COM_PORT: "/dev/ttyACM0"
|
6 | 7 | # COM_PORT: "COM3"
|
7 | 8 | COM_PORT: "AUTO"
|
8 | 9 |
|
9 | 10 | # Theme to use (located in res/themes)
|
10 |
| - # THEME: Terminal |
11 |
| - # THEME: Landscape6Grid |
12 |
| - # THEME: Cyberpunk |
13 |
| - # THEME: bash-dark-green |
| 11 | + # Available themes: |
| 12 | + # - 3.5inchTheme2 |
| 13 | + # - Terminal |
| 14 | + # - Landscape6Grid |
| 15 | + # - Cyberpunk |
| 16 | + # - bash-dark-green |
14 | 17 | THEME: 3.5inchTheme2
|
15 | 18 |
|
16 |
| - # Network metrics |
17 |
| - # Put the interface name or let it blank if the card does not exist |
| 19 | + # Hardware sensors reading |
| 20 | + # Choose the appropriate method for reading your hardware sensors: |
| 21 | + # - PYTHON use Python libraries (psutils, GPUtil...) to read hardware sensors (supports all OS but not all HW) |
| 22 | + # - LHM use LibreHardwareMonitor library to read hardware sensors (Windows only - NEEDS ADMIN RIGHTS) |
| 23 | + # - STUB use fake random data instead of real hardware sensors |
| 24 | + # - AUTO use the best method based on your OS: Windows OS will use LHM, other OS will use Python libraries |
| 25 | + HW_SENSORS: AUTO |
| 26 | + |
| 27 | + # Network interfaces |
18 | 28 | # Linux/MacOS interfaces are named "eth0", "wlan0", "wlp1s0", "enp2s0"...
|
19 | 29 | # For Windows use the interfaces pretty name: "Ethernet 2", "Wi-Fi", ...
|
20 |
| - ETH: "eth0" # Ethernet Card |
21 |
| - WLO: "wlan0" # Wi-Fi Card |
| 30 | + # Leave the fields empty if the card does not exist on your setup |
| 31 | + ETH: "" # Ethernet Card |
| 32 | + WLO: "" # Wi-Fi Card |
22 | 33 |
|
23 | 34 | display:
|
24 |
| - # Display resolution in portrait orientation |
25 |
| - # Do not use this setting to rotate display! Display orientation is managed by themes |
26 |
| - DISPLAY_WIDTH: 320 |
27 |
| - DISPLAY_HEIGHT: 480 |
| 35 | + # Display revision: A or B (for "flagship" version, use B) or SIMU for simulated LCD (image written in screencap.png) |
| 36 | + # To identify your revision: https://github.com/mathoudebine/turing-smart-screen-python/wiki/Hardware-revisions |
| 37 | + REVISION: A |
28 | 38 |
|
29 | 39 | # Display Brightness
|
30 | 40 | # Set this as the desired %, 0 being completely dark and 100 being max brightness
|
31 |
| - # Warning: screen can get very hot at high brightness! |
| 41 | + # Warning: revision A display can get hot at high brightness! |
32 | 42 | BRIGHTNESS: 20
|
33 | 43 |
|
34 |
| - # Display revision: A or B (for "flagship" version, use B) or SIMU for simulated LCD (image written in screencap.png) |
35 |
| - # To identify your revision: https://github.com/mathoudebine/turing-smart-screen-python/wiki/Hardware-revisions |
36 |
| - REVISION: A |
| 44 | + # Display reverse: true/false |
| 45 | + # Set to true to reverse display orientation (landscape <-> reverse landscape, portrait <-> reverse portrait) |
| 46 | + # Note: Display basic orientation (portrait or landscape) is defined by the theme you have selected |
| 47 | + DISPLAY_REVERSE: false |
| 48 | + |
| 49 | + # Display resolution in portrait orientation |
| 50 | + # Do not use this setting to rotate display! Use DISPLAY_REVERSE |
| 51 | + DISPLAY_WIDTH: 320 # Do not change unless you have a good reason |
| 52 | + DISPLAY_HEIGHT: 480 # Do not change unless you have a good reason |
| 53 | + |
| 54 | + |
0 commit comments