Control LG smart home appliances via the ThinQ Connect API.
echo "YOUR_TOKEN" > ~/.config/lg-thinq/tokenecho "MX" > ~/.config/lg-thinq/countryAll scripts are in the skill's scripts/ directory. Activate venv first:
cd ~/clawd && source .venv/bin/activate
python3 skills/lg-thinq/scripts/thinq.py devices
python3 skills/lg-thinq/scripts/thinq.py status <device_id>
python3 skills/lg-thinq/scripts/thinq.py status fridge # alias
# Set fridge temperature (0-6°C)
python3 skills/lg-thinq/scripts/thinq.py fridge-temp 3
# Set freezer temperature (-24 to -14°C typical)
python3 skills/lg-thinq/scripts/thinq.py freezer-temp -15
# Toggle express fridge
python3 skills/lg-thinq/scripts/thinq.py express-fridge on|off
# Toggle express freeze
python3 skills/lg-thinq/scripts/thinq.py express-freeze on|off
# Toggle eco mode
python3 skills/lg-thinq/scripts/thinq.py eco on|off
python3 skills/lg-thinq/scripts/thinq.py status washer
python3 skills/lg-thinq/scripts/thinq.py status dryer
| Device | Status | Control |
|---|---|---|
| -------- | -------- | --------- |
| Refrigerator | ✅ temp, door, modes | ✅ temp, express, eco |
| WashTower Washer | ✅ state, time | ⚠️ limited |
| WashTower Dryer | ✅ state, time | ⚠️ limited |
| Air Conditioner | ✅ temp, mode | ✅ temp, mode, fan |
NOT_CONNECTED_DEVICE: Device offline, check WiFi or open ThinQ appINVALID_COMMAND_ERROR: Wrong command format or value out of rangeNOT_PROVIDED_FEATURE: Feature not supported by this modelUser says → Action:
status fridgefridge-temp 5express-freeze onstatus fridge (check doorStatus)status washer共 1 个版本