This is a PHP Library to connect and control your Anova Sous Vide. It includes a basic CLI demo app which can schedule your anova to start at a given time.
This library is based on the api info in https://github.com/ammarzuberi/pyanova-api.
To use the library you need to grab it and install the dependencies using composer. You can run it on pretty much any machine with PHP 8+.
If you want to use docker, included is a docker image.
Simply run ./build.sh
and then ./run_prod.sh
. From there
connect to your container and you can run the demo app.
DEV Note: The build script will build both a dev and prod docker image. The difference is that the dev image links to the code on the host machine and prod image copies the code into the image. This allows devs to make changes to the code on their machine without having to rebuild the image. You can then use run_dev.sh to run the dev image.
You'll need your Anova credentials (email address and password) and device ID. You can get your device ID by going into the Anova app, clicking profile->setting wheel up top. You should see your device ID there.
Be sure your Anova is wifi connected.
To use the demo app, you run demo.php. Here's the usage:
When you run it the first time, you won't have a token yet. Enter your username and password. The script will spit out your token for future use. Once you have your token, you can run the app again in the future using that (recommended).
Here's an example run:
If you want to use the library for your own apps the basic usage is:
- Create an AnovaClient instance either with
$client = new AnovaClient(..)
if you have a token or$client = AnovaClient.fromEmailAndPassword(...)
if you don't. - Use the
$info = $client->getInfo()
to get the current state of the Anova. - Update the
$info
object to whatever new state you want and run$client->setInfo($info)
to tell the Anova to do its thing.
Take a look at the demo app for an example. The part you care about is probably just inside the main() method.