Fix clientId: use MA_001 instead of 001

This enables WellNuo voice_ask API to return real sensor data
about Ferdinand (deployment_id=21) instead of generic responses.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Sergei 2026-01-18 21:30:46 -08:00
parent dcdd06739d
commit 321cd721ac

View File

@ -57,7 +57,7 @@ class WellNuoLLM(llm.LLM):
nonce = str(random.randint(0, 999999))
data = {
"function": "credentials",
"clientId": "001",
"clientId": "MA_001",
"user_name": WELLNUO_USER,
"ps": WELLNUO_PASSWORD,
"nonce": nonce,
@ -85,7 +85,7 @@ class WellNuoLLM(llm.LLM):
async with aiohttp.ClientSession() as session:
data = {
"function": "voice_ask",
"clientId": "001",
"clientId": "MA_001",
"user_name": WELLNUO_USER,
"token": token,
"question": user_message,