pycirculate

A Python wrapper for the Anova 2.


Keywords
anova, bluetooth, bluepy, sous, vide
License
MIT
Install
pip install pycirculate==0.1.1a1

Documentation

pyCirculate

This is a Python wrapper library for interacting with the Anova 2 over Bluetooth LE.

It should work on any Linux with a working BlueZ install. Most of my testing and development took place on a Raspberry Pi.

Installation

  • Install bluepy (pip install bluepy).
  • pip install pycirculate

Usage

from pycirculate.anova import AnovaController

# Your device's MAC address can be found with `sudo hcitool lescan`
anova = AnovaController("84:EB:18:6E:xx:xx")

anova.read_unit()
# -> 'c'
anova.read_temp()
# -> '14.9'

anova.set_temp(63.5)
anova.start_anova()

anova.anova_status()
# -> 'running'

Additional examples can be found in the examples subdirectory.

Status

Alpha -- everything seems to work, but needs more testing.

TODO

Credits

I used the Circulate iOS library as a reference implementation for Anova commands.