discstation 0.1.29 → 0.1.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -8
- package/arduino/{v1 → DiscStation}/DiscStation.ino +341 -155
- package/docs/PLATFORM_SUPPORT.md +16 -0
- package/install-macos.sh +6 -3
- package/install.sh +1 -1
- package/package.json +1 -1
- package/requirements-optional.txt +8 -0
- package/src/discstation.py +156 -1
- package/src/discstation_burn.py +15 -2
- package/arduino/c6/DiscStation_C6.ino +0 -1185
- package/arduino/c6/secrets.h.example +0 -14
- /package/arduino/{v1 → DiscStation}/secrets.h.example +0 -0
package/README.md
CHANGED
|
@@ -9,8 +9,8 @@ use every mode.
|
|
|
9
9
|
## Hardware
|
|
10
10
|
|
|
11
11
|
- **Brain:** Raspberry Pi 4/5 (or any Linux box)
|
|
12
|
-
- **Remote (optional):** ESP32 DevKit
|
|
13
|
-
|
|
12
|
+
- **Remote (optional):** ESP32 DevKit (WROOM-32) with an SSD1306 OLED, a
|
|
13
|
+
rotary encoder, and 3 buttons — connected by **USB serial** or over **Wi-Fi**
|
|
14
14
|
(see below) — or none at all; the web UI / mobile app's on-screen remote
|
|
15
15
|
covers the same controls when no ESP32 is detected, and steps aside
|
|
16
16
|
(greyed out, auto-collapsing) the moment one appears.
|
|
@@ -61,9 +61,7 @@ remote can talk to the host over Wi-Fi instead of a USB cable.
|
|
|
61
61
|
│ ├── discstation_meta.py # TMDb video metadata
|
|
62
62
|
│ └── static/ # Built-in web UI (index.html, app.js, style.css)
|
|
63
63
|
├── mobile/ # Expo (React Native) companion app
|
|
64
|
-
├── arduino/
|
|
65
|
-
│ ├── c6/ # ESP32-C6 firmware
|
|
66
|
-
│ └── v1/ # ESP32 DevKit firmware
|
|
64
|
+
├── arduino/DiscStation/ # ESP32 DevKit remote firmware
|
|
67
65
|
├── scripts/setup.mjs # `discstation-setup` — cross-OS installer dispatch
|
|
68
66
|
├── docs/ # Platform support notes
|
|
69
67
|
├── install.sh / install-macos.sh / install-windows.ps1
|
|
@@ -113,10 +111,9 @@ Support by OS:
|
|
|
113
111
|
# Linux host
|
|
114
112
|
./install.sh
|
|
115
113
|
|
|
116
|
-
# Arduino
|
|
114
|
+
# Arduino (ESP32 DevKit remote)
|
|
117
115
|
arduino-cli lib install QRCode
|
|
118
|
-
|
|
119
|
-
# to the matching ESP32 board
|
|
116
|
+
arduino-cli compile --upload -b esp32:esp32:esp32 -p /dev/ttyUSB0 arduino/DiscStation
|
|
120
117
|
|
|
121
118
|
# macOS host
|
|
122
119
|
./install-macos.sh
|