Implement synchronized LED wall output
This commit is contained in:
@@ -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()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user