feat: Add ISS SSTV decoder mode

Add slow-scan television decoder for receiving images from ISS.
Includes new Space dropdown in navigation grouping Satellite and SSTV modes.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-01-29 14:51:06 +00:00
parent 40acca20b2
commit 8e204725b2
7 changed files with 1979 additions and 4 deletions

View File

@@ -24,6 +24,8 @@ def register_blueprints(app):
from .spy_stations import spy_stations_bp
from .controller import controller_bp
from .offline import offline_bp
from .updater import updater_bp
from .sstv import sstv_bp
app.register_blueprint(pager_bp)
app.register_blueprint(sensor_bp)
@@ -47,6 +49,8 @@ def register_blueprints(app):
app.register_blueprint(spy_stations_bp)
app.register_blueprint(controller_bp) # Remote agent controller
app.register_blueprint(offline_bp) # Offline mode settings
app.register_blueprint(updater_bp) # GitHub update checking
app.register_blueprint(sstv_bp) # ISS SSTV decoder
# Initialize TSCM state with queue and lock from app
import app as app_module