Metadata-Version: 2.1
Name: lmdirect
Version: 0.1.0
Summary: A Python implementation of the local La Marzocco API
Home-page: https://github.com/rccoleman/lmdirect
Author: Rob Coleman
Author-email: rccoleman@gmail.com
License: MIT
Description: # lmdirect
        ## Local API access to network-connected La Marzocco espresso machines
        
        This is a prototype library for interacting with the local network API of a La Marzocco espresso machine.  It's still in the beginning stages, but currently it's able to retrieve configuration and status information from the machine and turn it on/off.  I've reverse-engineered this from decoding the network traffic between the mobile app and the machine, so it's incomplete, imperfect, and may have significant bugs.  It works on my La Marzocco GS/3, but I can't guarantee that you'll have a similar experience with yours.
        
        **You take any and all risks from using this on your machine!**
        
        ### Preparation & Installation
        
        Using this library is an advanced exercise.  You'll need to do the following:
        * Find the `client_id` and `client_secret` for your machine by sniffing the network traffic while operating the mobile app (`mitmproxy` is good for this).  You'll need to capture a token request to https://cms.lamarzocco.io/oauth/v2/token and find the `client_id` and `client_secret` in the request.
        * Use the `client_id` & `client_secret` along with the username & password that you set up when you registered the machine with the mobile app to retrieve an OAUTH2 token (password_grant)
        * Use the OAUTH2 token to retrieve your customer info via a `GET` to `https://cms.lamarzocco.io/api/customer` and grab your 32-byte AES-256 key at `data.fleet[0].communicationKey`in the JSON response.
        
        Once you have the key, construct a file called `config.json` with these contents and put it in the directory along with `test.py`:
        
        ```
        {
            "key": "MyUnicodeEncodedKey",
            "ip_addr": "MyIPAddress"
        }
        ```
        
        ### Running the test app
        
        Now, run `python test.py` and you should get a prompt that looks like this:
        
        `1 = ON, 2 = OFF, 3 = Status, Other = quit:`
        
        You can hit `1` to turn the machine on, `2` to turn it off, `3` to dump a dict of all the config and status items that it's received from your machine, and any other key to quit.  The app requests all status & config information every 5 seconds, so you should see the values change when the state of the machine changes.
        
        Note that the machine only accepts a single connection at a time, so you cannot run this app and the mobile app at the same time.  The second one will block until you close the first instance.  This means that you can't experiment by running this app and manipulating settings using the mobile app simultaneously, but you can change settings on the machine itself and see the values update here.
        
        ### Notes
        
        So far, these are the commands that I’ve found:
        
        * A command that I call `D8` that appears to request the same info that you get from the “status” cloud endpoint. This is a read starting with “R”, and has a preamble of `40000020`.
        * A command that I call `E9` that appears to request the same info that you get from the “configuration” cloud endpoint. This is a read starting with “R”, and has a preamble of `0000001F`
        * A command that I call `EB` that requests the auto on/off schedule. This is a read starting with “R”, and has a preamble of `0310001D`
        * A command that writes a value, and it starts with “W” and has a preamble of `00000001`. I’ve only used this to turn the machine on and off so far, so there may be other preambles.
        
        The responses have a matching “R” or “W” and mostly-matching preamble based on the command and these are the types that I’ve found and decoded (more or less):
        
        * A periodic short status broadcast that gives the current brew/steam boiler temps. I don’t need to send a command to get this - it may just be sent to whoever has an active socket connection. Preamble is `401C0004`
        * A response to the `D8` command with status info
        * A response to the `E9` command with config info
        * A response to the `EB` command with the auto on/off schedule and what’s enabled
        * A “confirmation” response to a “write” command from the app (message to the machine starting with “W”). This includes the string “OK” if it succeeded.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Description-Content-Type: text/markdown
