Implement synchronized LED wall output

This commit is contained in:
TJY
2026-07-16 12:52:42 +08:00
parent 8590fafac1
commit fe906e028b
11 changed files with 335 additions and 283 deletions
+3 -4
View File
@@ -5,7 +5,7 @@ from pydantic_settings import BaseSettings, SettingsConfigDict
class Settings(BaseSettings):
app_host: str = "127.0.0.1"
app_host: str = "0.0.0.0"
app_port: int = 8000
public_base_url: str = "http://127.0.0.1:8000"
@@ -13,8 +13,8 @@ class Settings(BaseSettings):
wall_height: int = 3510
target_fps: int = 60
switch_prepare_delay_ms: int = 1400
action_prepare_delay_ms: int = 650
switch_prepare_delay_ms: int = 2000
action_prepare_delay_ms: int = 900
initial_state_delay_ms: int = 160
command_ttl_seconds: int = 45
@@ -27,4 +27,3 @@ class Settings(BaseSettings):
@lru_cache
def get_settings() -> Settings:
return Settings()