project structure: elm.py, db.py, prompts.py, diagnose.py, web UI (Flask), config

This commit is contained in:
“Naeel”
2026-05-25 07:46:04 +04:00
parent 200a27c26e
commit 6cc42bc340
13 changed files with 1089 additions and 1 deletions
+24
View File
@@ -0,0 +1,24 @@
# Elmer configuration
# Значения вида ${VAR} подставляются из переменных окружения
deepseek:
api_key: "${DEEPSEEK_API_KEY}"
model: "deepseek-chat"
elm327:
# Bluetooth-порт (обычно /dev/rfcomm0 после pairing)
port: "/dev/rfcomm0"
baudrate: 38400
# PID'ы для чтения (можно переопределить)
pids:
"0105": ["coolant_temp", "°C"]
"010C": ["rpm", "об/мин"]
"010D": ["speed", "км/ч"]
"0111": ["throttle_pos", "%"]
"010B": ["map", "кПа"]
"010F": ["iat", "°C"]
"011F": ["runtime_since_start", "с"]
"0104": ["engine_load", "%"]
"0106": ["stft_b1", "%"]
"0107": ["ltft_b1", "%"]