An Anova Precision Cooker (Sous Vide) Bluetooth API Python Wrapper
This is a Python wrapper of the Anova Precision Cooker (Sous Vide) API via the Bluetooth LE connection. Under the hood, it utilizes peplin/pygatt for the Bluetooth LE communications.
The library is tested on C.H.I.P with Debian + Python 2.7 and Python 3.4
- This work relies heavily on the researches from dfrankland/sous-vide, a very nice API for Node JS. Commands used in pyanova are based on its research on the Android APP APK.
- Bluetooh LE communication is made easy with pygatt
- pygatt - specifically, it uses the gatttool backend
- bluez - specifically, the gatttool backend requires hcitool, make sure you can find
hcitool
in your system.
Once the prerequisite are satisfied, you can install pyanova with pip: pip install pyanova
The GATTTool backend normally requires root permission. Hence you might need to run your program with root permission or setup passwordless sudo for 'hcitool'.
You can initialize PyAnova easily with automode which will automatically discover and connect to the first available Anova device
from pyanova import pyanova
pa = pyanova.PyAnova()
pa.get_status()
Alternatively, you can fully control the discover and connect phrases of an PyAnova object
from pyanova import pyanova
pa = pyanova.PyAnova(auto_connect=False)
devices = pa.discover(list_all=False, timeout=3)
pa.connect_device(devices[0])
pa.get_status()
- Support Anova Nano: c3V6a2Vy#10
- Unit tests
- Autogen docs
- Probably swtich to pygattlib?
see: samples/pyanova_terminal.py
This software may harm your device. Use it at your own risk.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.