diff --git a/source/_integrations/surepetcare.markdown b/source/_integrations/surepetcare.markdown index 4397d27bab5..1f218f42007 100644 --- a/source/_integrations/surepetcare.markdown +++ b/source/_integrations/surepetcare.markdown @@ -25,9 +25,6 @@ To add a flap, feeder or pet, add the following to your `configuration.yaml` fil surepetcare: username: YOUR_SURE_PETCARE_LOGIN password: YOUR_SURE_PETCARE_PASSWORD - feeders: [12345, 67890] - flaps: [13579] - pets: [24680] ``` {% configuration %} @@ -39,23 +36,6 @@ surepetcare: description: The Sure Petcare Password required: true type: string - flaps: - description: The IDs of the Sure Petcare flaps - required: false - type: list - feeders: - description: The IDs of the Sure Petcare feeders - required: false - type: list - pets: - description: The Sure Petcare IDs of the Pets to show - required: false - type: list - scan_interval: - description: "Minimum time interval between updates. Supported formats: `scan_interval: 'HH:MM:SS'`, `scan_interval: 'HH:MM'` and Time period dictionary (see example below)." - required: false - default: 3 minutes - type: time {% endconfiguration %} ## Services @@ -75,16 +55,3 @@ This service lets you change the locking state of a flap. - `locked_in` - flap is 'in only' - pets can come in but not go back out. - `locked_out` - flap is 'out only' - pets can go out, but not back in. - `locked_all` - flap is locked both ways. - -## Getting the IDs of your flaps, feeders and pets - -There are (at least) three ways, sorted in "descending convenience order": - -- Use the [surepy](https://github.com/benleb/surepy) tool (uses the same library as this integration) from [@benleb](https://github.com/benleb). A Python tool to get your token simply by running a single command (check `surepy --help` for the exact command). -- Use the [sp_cli.py](https://github.com/rcastberg/sure_petcare/blob/master/sp_cli.py) from [@rcastberg](https://github.com/rcastberg) to fetch the IDs from the Sure Petcare API. With the default setting, the IDs will be written as JSON to `~/.surepet.cache`. -- Visit [surepetcare.io](https://surepetcare.io) and log in with your Sure Petcare credentials. Open the developer tools in Chrome/Firefox, switch to the "Network" tab and refresh the page. Now look for calls to `start` (`pets`, `` and others are also possible, but `start` shows you all information at once). Click on this call and in the JSON displayed you will find all the needed IDs. - -

- - Where to find the IDs vie Browser developer console -

diff --git a/source/images/integrations/surepetcare/spc_ids.png b/source/images/integrations/surepetcare/spc_ids.png deleted file mode 100644 index ab543537fbf..00000000000 Binary files a/source/images/integrations/surepetcare/spc_ids.png and /dev/null differ