Monitor Meater wireless meat thermometers (Original, Plus, Block, Pro) via Bluetooth or WiFi/Cloud API. Use when the user wants to check cooking temperatures, monitor probe status, or track meat doneness.
Monitor Meater wireless meat thermometers via Bluetooth Low Energy (BLE) or the Meater Cloud API (for remote/WiFi access).
Best for: Local monitoring, real-time updates
Requirements:
bleak library: pip3 install bleakBest for: Remote monitoring, historical data, Meater Block users
Requirements:
# Scan for probes
python3 scripts/meater.py scan
# Read temperatures
python3 scripts/meater.py read --address "AA:BB:CC:DD:EE:FF"
# Login and list cooks
export MEATER_EMAIL="[email protected]"
export MEATER_PASSWORD="your_password"
python3 scripts/meater_cloud.py devices
# Monitor current cook
python3 scripts/meater_cloud.py monitor --device-id "PROBE_ID"
| Command | Description |
|---|---|
scan | Scan for nearby Meater probes |
read | Read current temperatures once |
monitor | Continuously monitor temperatures |
info | Get probe info (battery, firmware) |
| Command | Description |
|---|---|
login | Authenticate with Meater Cloud |
devices | List registered probes/devices |
cooks | List active and recent cooks |
monitor | Monitor cook via cloud |
history | Get cook history |
Meater probes provide:
meater.py - Bluetooth CLI toolmeater_cloud.py - Cloud API CLI toolble-protocol.md - Bluetooth protocol documentationcloud-api.md - Meater Cloud API documentationpython3 scripts/meater.py scan
python3 scripts/meater.py read --address "AA:BB:CC:DD:EE:FF"
export MEATER_EMAIL="[email protected]"
export MEATER_PASSWORD="password"
python3 scripts/meater_cloud.py devices
python3 scripts/meater_cloud.py monitor --device-id "ABC123"
python3 scripts/meater.py monitor --address "AA:BB:CC:DD:EE:FF" --interval 5
python3 scripts/meater_cloud.py history --limit 10