Code Monkey home page Code Monkey logo

Comments (14)

thoukydides avatar thoukydides commented on May 17, 2024

Unfortunately, the provided log file was captured without debug (-D) so I am having to make some guesses as to what is happening.

Based on this section:

[HomeConnect] [Kaffeevollautomat] Switching appliance on to read program options
[HomeConnect] [Kaffeevollautomat] Active (Run)
[HomeConnect] [Kaffeevollautomat] On
[HomeConnect] [Kaffeevollautomat] On
[HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.Beverage.Ristretto to read its options
[HomeConnect] [Kaffeevollautomat] Manual mode (remote start allowed, being operated locally)
[HomeConnect] [Kaffeevollautomat] Home Connect API error: Request cannot be performed since OperationState is not Ready [SDK.Error.WrongOperationState]

it looks like the plugin switches the appliance on, but the Home Connect API then rejects the request to select a program. The plugin then gives up trying to read the program options, so will try again when next restarted.

Between switching the appliance on and attempting to select a program the Home Connect API looks like it provided events for:

  • BSH.Common.Status.OperationState = BSH.Common.EnumType.OperationState.Run
    (the Active (Run) log entry)
  • BSH.Common.Setting.PowerState = BSH.Common.EnumType.PowerState.On
    (the On log entries)
  • BSH.Common.Status.LocalControlActive = true
    (the Manual mode (remote start allowed, being operated locally) log entry)

The second of these confirms that the power was successfully switched on. The first and third are presumably due to the appliance going through a self-cleaning cycle. It looks like I need to get the plugin to wait for that to finish before it can iterate through the programs.

I suspect that a debug log would reveal that the appliance is providing an (undocumented) event indicating that it is running a cleaning cycle. Without that information it will be difficult to change this plugin to handle it better.

from homebridge-homeconnect.

DJay-X avatar DJay-X commented on May 17, 2024

I see. Sorry for not providing the correct "full" log. I don't know how to get the -D log for a homebridge instance I am running the plugin.
I changed the file etc/default/homebridge-2nd-Instance

# Defaults / Configuration options for homebridge
# The following settings tells homebridge where to find the config.json file and where to persist the data (i.e. pairing and others)
#HOMEBRIDGE_OPTS=-U /var/homebridge >> /var/log/homebridge.log 2>> //var/log/homebridge.err
HOMEBRIDGE_OPTS=-I -U /var/homebridge-2nd-Instance

# If you uncomment the following line, homebridge will log more
# You can display this via systemd's journalctl: journalctl -f -u homebridge
DEBUG=* homebridge-2nd-Instance -D
HOMEBRIDGE_CONFIG_UI_TERMINAL=1

started

sudo systemctl start homebridge-2nd-Instance
sudo journalctl -f -u homebridge-2nd-Instance

and received the provided log.

If you could kindly tell how to get a proper log with my instance of course I'm happy to send it to you. Thanks again.

from homebridge-homeconnect.

thoukydides avatar thoukydides commented on May 17, 2024

My guess is that the DEBUG value is not being used (since the DEBUG=* debugging it not being captured either). It depends what your corresponding systemd configuration file says.

Try adding the -D to HOMEBRIDGE_OPTS instead.

from homebridge-homeconnect.

thoukydides avatar thoukydides commented on May 17, 2024

I have modified the plugin so that after switching the appliance on to query the programs it waits for it to indicate that it is BSH.Common.EnumType.OperationState.Ready before continuing. From the various log files that you have provided (both today and previously for issue #10), your Bosch CTL636ES6/03 CoffeeMaker appears to consistently take between 45 and 50 seconds to be ready after being told to switch on, so I have implemented a timeout of 2 minutes to be safe. Hopefully this will work with most appliances. Needless to say, the Home Connect API documentation does not provide any hint that this is necessary...

This is implemented in v0.17.1. However, before you upgrade, please can you first confirm that you can reproduce the original failure. To do this you will need to find and delete the cache file for this appliance.

Locating the cache file

Based on your /etc/default/homebridge-2nd-Instance configuration file, I would expect the cache files to be stored in the /var/homebridge-2nd-Instance/homebridge-homeconnect/persist/ directory.

This directory should contain three files (see Files Storing Plugin State):

  • 130b9cf2dc079eb8116e6fca2c2ec001: This stores the information currently being used to construct the configuration schema.
  • 94a08da1fecbb6e8b46990538c7b50b2: This stores the OAuth tokens used to authenticate with your Home Connect account.
  • 9821f57728368e7e8c33dc260c204471: This is the cache of responses for your appliance.

Reproduce the problem

Please do the following to ensure that the original problem can be reproduced before upgrading to the new version of the plugin:

  1. Stop Homebridge.
  2. Delete the 9821f57728368e7e8c33dc260c204471 cache file.
  3. Ensure that the CoffeeMaker is switched off.
  4. Start Homebridge.

This should behave the same as previously, i.e. it should switch the appliance on and then fail with an error in the log:

Home Connect API error: Request cannot be performed since OperationState is not Ready [SDK.Error.WrongOperationState]

A little while later the log should contain a warning like:

Possible missing options for 24 programs
To update the program options for this appliance:
  - Enable remote control on the appliance
  - Avoid operating the appliance locally
  - Ensure that no program is active
  - Fill any consumables that may be required
  - Either restart Homebridge or invoke the appliance's Identify routine

Upgrade and try again

If the problem was successfully reproduced with v0.17.0 then try with the new version:

  1. Stop Homebridge.
  2. Install version v0.17.1 of this plugin.
  3. Delete the 9821f57728368e7e8c33dc260c204471 cache file again.
  4. Ensure that the CoffeeMaker is switched off.
  5. Start Homebridge.

The appliance should switch on again, but this time after it is ready it should then select each program in turn, and then switch off.

The log file should then contain something like:

Finished reading available program options

Restarting Homebridge again should not switch the appliance or select programs automatically. However, invoking the Identify routine should.

from homebridge-homeconnect.

Kohle81 avatar Kohle81 commented on May 17, 2024

Hi,

I have updated to version 0.17.1 an now, when I start homebridge with this plugin, the coffee maker turns on by starting homebridge.......

And if I turn off the coffeemaker and I want to turn on, it doesnβ€˜t work.....

from homebridge-homeconnect.

thoukydides avatar thoukydides commented on May 17, 2024

I have updated to version 0.17.1 an now, when I start homebridge with this plugin, the coffee maker turns on by starting homebridge.......

Which is the correct behaviour since v0.17.0 to fix issue #17.

And if I turn off the coffeemaker and I want to turn on, it doesnβ€˜t work.....

What are you expecting me to do with that comment? I don't see any problems with either my physical appliances or the appliance simulators.

How did you turn the appliance off and on? With a HomeKit app, with Siri, with the Home Connect app, or manually on the appliance?
Did it turn off and on correctly?

What "doesn't work" afterwards?

What does the Homebridge log file show? Are there any errors? Did it complete reading the available program options at startup?

As usual, the quickest way for me to try and fix any issue would be with a log file that has debug enabled (-D), together with a clear explanation of what was tried, what you expected to happen, and what actually happened.

from homebridge-homeconnect.

DJay-X avatar DJay-X commented on May 17, 2024

Morning.. and thanks a lot for your work and the step by step instructions.

I followed your instructions. v0.17.0 I deleted the 9821 cache file, restarted homebridge and the coffee machine was turning on. Problem was successfully reproduced with v0.17.0.

Feb 25 09:10:53 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:53] Homebridge is running on port 51842.
Feb 25 09:10:53 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:53] [HomeConnect] [Kaffeevollautomat] Event Drip Tray Full
Feb 25 09:10:53 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:53] [HomeConnect] [Kaffeevollautomat] Active (Run)
Feb 25 09:10:53 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:53] [HomeConnect] [Kaffeevollautomat] On
Feb 25 09:10:53 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:53] [HomeConnect] [Kaffeevollautomat] On
Feb 25 09:10:53 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:53] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.Beverage.Ristretto to read its options
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat] Home Connect API error: Request cannot be performed since OperationState is not Ready [SDK.Error.WrongOperationState]
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat] SET selected program ConsumerProducts.CoffeeMaker.Program.Beverage.Ristretto
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat] PUT https://api.home-connect.com/api/homeappliances/BOSCH-CTL636ES6-xxxxxxxxxxxx/programs/selected
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat] Home Connect API error: Request cannot be performed temporarily! due to local actuated user intervention [BSH.Common.Error.LockedByLocalControl]
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat] SET BSH.Common.Setting.PowerState=BSH.Common.EnumType.PowerState.Standby
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat] PUT https://api.home-connect.com/api/homeappliances/BOSCH-CTL636ES6-xxxxxxxxxxxx/settings/BSH.Common.Setting.PowerState
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat] Home Connect API error: Request cannot be performed since OperationState is not Ready [SDK.Error.WrongOperationState]
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat] Reading available programs and options
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat] PUT https://api.home-connect.com/api/homeappliances/BOSCH-CTL636ES6-xxxxxxxxxxxx/programs/selected
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat] Event Drip Tray Full off (ignored)
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat] Event Drip Tray Full
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat] Manual mode (remote start allowed, being operated locally)
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat] Possible missing options for 26 programs
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat] To update the program options for this appliance:
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat]   - Enable remote control on the appliance
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat]   - Avoid operating the appliance locally
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat]   - Ensure that no program is active
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat]   - Fill any consumables that may be required
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat]   - Either restart Homebridge or invoke the appliance's Identify routine
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat] Adding services for 5 programs
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat]     'Latte Macchiato' (ConsumerProducts.CoffeeMaker.Program.Beverage.LatteMacchiato)
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat]     'Americano' (ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Americano)
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat]     'Flat White' (ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.FlatWhite)
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat]     'Espresso' (ConsumerProducts.CoffeeMaker.Program.Beverage.Espresso)
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat]     'Caffè Crema' (ConsumerProducts.CoffeeMaker.Program.Beverage.Coffee)
Feb 25 09:10:54 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:54] [HomeConnect] [Kaffeevollautomat] Removing services for 0 programs
Feb 25 09:10:57 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:10:57] [HomeConnect] Configuration schema file updated: /var/homebridge-2nd-Instance/.homebridge-homeconnect-v1.schema.json
Feb 25 09:11:02 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:11:02] [HomeConnect] [Kaffeevollautomat] Remote operation enabled (remote start allowed)
Feb 25 09:11:13 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:11:13] [HomeConnect] [Kaffeevollautomat] Manual mode (remote start allowed, being operated locally)
Feb 25 09:11:18 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:11:18] [HomeConnect] [Kaffeevollautomat] Event Drip Tray Full off (ignored)
Feb 25 09:11:19 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:11:19] [HomeConnect] [Kaffeevollautomat] Remote operation enabled (remote start allowed)
Feb 25 09:12:31 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:12:31] [HomeConnect] [Kaffeevollautomat] Manual mode (remote start allowed, being operated locally)
Feb 25 09:12:35 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:12:35] [HomeConnect] [Kaffeevollautomat] Remote operation enabled (remote start allowed)
Feb 25 09:12:49 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:12:49] [HomeConnect] [Kaffeevollautomat] Manual mode (remote start allowed, being operated locally)
Feb 25 09:12:53 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:12:53] [HomeConnect] [Kaffeevollautomat] Remote operation enabled (remote start allowed)
Feb 25 09:13:28 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:13:28] [HomeConnect] [Kaffeevollautomat] Inactive (Ready)
Feb 25 09:13:35 raspberrypi-3BPlus homebridge[17489]: [2020-2-25 9:13:35] [HomeConnect] Configuration schema file updated: /var/homebridge-2nd-Instance/.homebridge-homeconnect-v1.schema.json

I turned coffee maker off, stopped Homebridge, installed v0.17.1, deleted 9821 cache file. Restart Homebridge.

Coffee maker was turning on and flushing a while.
Then coffee maker was turning off again.

Feb 25 09:23:50 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:23:50] Homebridge is running on port 51842.
Feb 25 09:23:52 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:23:52] [HomeConnect] [Kaffeevollautomat] Actively reading options for 26 programs
Feb 25 09:23:52 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:23:52] [HomeConnect] [Kaffeevollautomat] Switching appliance on to read program options
Feb 25 09:23:53 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:23:53] [HomeConnect] [Kaffeevollautomat] On
Feb 25 09:23:53 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:23:53] [HomeConnect] [Kaffeevollautomat] Active (Run)
Feb 25 09:23:53 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:23:53] [HomeConnect] [Kaffeevollautomat] On
Feb 25 09:23:54 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:23:54] [HomeConnect] [Kaffeevollautomat] Manual mode (remote start allowed, being operated locally)
Feb 25 09:24:02 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:02] [HomeConnect] [Kaffeevollautomat] Remote operation enabled (remote start allowed)
Feb 25 09:24:40 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:40] [HomeConnect] [Kaffeevollautomat] Inactive (Ready)
Feb 25 09:24:40 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:40] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.Beverage.Ristretto to read its options
Feb 25 09:24:42 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:42] [HomeConnect] [Kaffeevollautomat] Home Connect API error: Request cannot be performed since OperationState is not Ready [SDK.Error.WrongOperationState]
Feb 25 09:24:42 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:42] [HomeConnect] [Kaffeevollautomat] SET selected program ConsumerProducts.CoffeeMaker.Program.Beverage.Ristretto
Feb 25 09:24:42 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:42] [HomeConnect] [Kaffeevollautomat] PUT https://api.home-connect.com/api/homeappliances/BOSCH-CTL636ES6-xxxxxxxxxxxx/programs/selected
Feb 25 09:24:42 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:42] [HomeConnect] [Kaffeevollautomat] Home Connect API error: The request content was malformed:
Feb 25 09:24:42 raspberrypi-3BPlus homebridge[20072]: Object is missing required member 'data' [400]
Feb 25 09:24:42 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:42] [HomeConnect] [Kaffeevollautomat] SET selected program undefined
Feb 25 09:24:42 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:42] [HomeConnect] [Kaffeevollautomat] PUT https://api.home-connect.com/api/homeappliances/BOSCH-CTL636ES6-xxxxxxxxxxxx/programs/selected
Feb 25 09:24:42 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:42] [HomeConnect] [Kaffeevollautomat] Active (Run)
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat] Off
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat] Home Connect API error: Request cannot be performed since OperationState is not Ready [SDK.Error.WrongOperationState]
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat] Reading available programs and options
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat] PUT https://api.home-connect.com/api/homeappliances/BOSCH-CTL636ES6-xxxxxxxxxxxx/programs/selected
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat] Possible missing options for 26 programs
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat] To update the program options for this appliance:
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat]   - Enable remote control on the appliance
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat]   - Avoid operating the appliance locally
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat]   - Ensure that no program is active
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat]   - Fill any consumables that may be required
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat]   - Either restart Homebridge or invoke the appliance's Identify routine
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat] Adding services for 5 programs
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat]     'Latte Macchiato' (ConsumerProducts.CoffeeMaker.Program.Beverage.LatteMacchiato)
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat]     'Americano' (ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Americano)
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat]     'Flat White' (ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.FlatWhite)
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat]     'Espresso' (ConsumerProducts.CoffeeMaker.Program.Beverage.Espresso)
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat]     'Caffè Crema' (ConsumerProducts.CoffeeMaker.Program.Beverage.Coffee)
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat] Removing services for 0 programs
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat] Inactive (Inactive)
Feb 25 09:24:44 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:44] [HomeConnect] [Kaffeevollautomat] Off
Feb 25 09:24:47 raspberrypi-3BPlus homebridge[20072]: [2020-2-25 9:24:47] [HomeConnect] Configuration schema file updated: /var/homebridge-2nd-Instance/.homebridge-homeconnect-v1.schema.json

However, next stopping and restart Homebridge did turn the coffee maker on again, was switching through ALL possible coffee programs on the display of the machine and was then turning off again.

Feb 25 09:30:30 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:30:30] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.Beverage.MilkFroth to read its options
Feb 25 09:30:34 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:30:34] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.Beverage.WarmMilk to read its options
Feb 25 09:30:36 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:30:36] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.KleinerBrauner to read its options
Feb 25 09:30:37 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:30:37] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.GrosserBrauner to read its options
Feb 25 09:30:39 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:30:39] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Verlaengerter to read its options
Feb 25 09:30:40 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:30:40] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.VerlaengerterBraun to read its options
Feb 25 09:30:42 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:30:42] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.WienerMelange to read its options
Feb 25 09:30:44 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:30:44] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.FlatWhite to read its options
Feb 25 09:30:45 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:30:45] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Cortado to read its options
Feb 25 09:30:47 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:30:47] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.CafeCortado to read its options
Feb 25 09:30:48 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:30:48] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.CafeConLeche to read its options
Feb 25 09:30:50 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:30:50] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.CafeAuLait to read its options
Feb 25 09:30:51 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:30:51] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Doppio to read its options
Feb 25 09:30:55 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:30:55] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Kaapi to read its options
Feb 25 09:30:57 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:30:57] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.KoffieVerkeerd to read its options
Feb 25 09:30:57 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:30:57] [HomeConnect] Waiting 3 seconds before issuing Home Connect API request
Feb 25 09:31:04 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:04] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Galao to read its options
Feb 25 09:31:05 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:05] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Garoto to read its options
Feb 25 09:31:07 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:07] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Americano to read its options
Feb 25 09:31:09 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:09] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.RedEye to read its options
Feb 25 09:31:11 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:11] [HomeConnect] [Kaffeevollautomat] Home Connect API error: The request content was malformed:
Feb 25 09:31:11 raspberrypi-3BPlus homebridge[21394]: Object is missing required member 'data' [400]
Feb 25 09:31:11 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:11] [HomeConnect] [Kaffeevollautomat] SET selected program undefined
Feb 25 09:31:11 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:11] [HomeConnect] [Kaffeevollautomat] PUT https://api.home-connect.com/api/homeappliances/BOSCH-CTL636ES6-xxxxxxxxxxxx/programs/selected
Feb 25 09:31:11 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:11] [HomeConnect] [Kaffeevollautomat] Active (Run)
Feb 25 09:31:13 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:13] [HomeConnect] [Kaffeevollautomat] Off
Feb 25 09:31:13 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:13] [HomeConnect] [Kaffeevollautomat] Finished reading available program options
Feb 25 09:31:13 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:13] [HomeConnect] [Kaffeevollautomat] Adding services for 5 programs
Feb 25 09:31:13 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:13] [HomeConnect] [Kaffeevollautomat]     'Latte Macchiato' (ConsumerProducts.CoffeeMaker.Program.Beverage.LatteMacchiato)
Feb 25 09:31:13 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:13] [HomeConnect] [Kaffeevollautomat]     'Americano' (ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Americano)
Feb 25 09:31:13 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:13] [HomeConnect] [Kaffeevollautomat]     'Flat White' (ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.FlatWhite)
Feb 25 09:31:13 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:13] [HomeConnect] [Kaffeevollautomat]     'Espresso' (ConsumerProducts.CoffeeMaker.Program.Beverage.Espresso)
Feb 25 09:31:13 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:13] [HomeConnect] [Kaffeevollautomat]     'Caffè Crema' (ConsumerProducts.CoffeeMaker.Program.Beverage.Coffee)
Feb 25 09:31:13 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:13] [HomeConnect] [Kaffeevollautomat] Removing services for 0 programs
Feb 25 09:31:13 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:13] [HomeConnect] [Kaffeevollautomat] Inactive (Inactive)
Feb 25 09:31:13 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:13] [HomeConnect] [Kaffeevollautomat] Off
Feb 25 09:31:16 raspberrypi-3BPlus homebridge[21394]: [2020-2-25 9:31:16] [HomeConnect] Configuration schema file updated: /var/homebridge-2nd-Instance/.homebridge-homeconnect-v1.schema.json

Stopping and restarting homebridge another time und now the coffee maker was not turning on.

I turned the machine on asking Siri, machine was turning on.
I turned the machine off asking Siri, machine was turning off.

I stopped and restarted homebridge again a last time, and the coffee maker was not tuning on again.

I guess that's it?

Thanks again. I highly appreciate your effort.

from homebridge-homeconnect.

thoukydides avatar thoukydides commented on May 17, 2024

Thank you @DJay-X for running those tests and providing the log files.

Based on a quick look, there are a couple of things that concern me.

Firstly, your first run after v0.17.1 failed in the same way as v0.17.0. The relevant log entries are:

Inactive (Ready)
Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.Beverage.Ristretto to read its options
Home Connect API error: Request cannot be performed since OperationState is not Ready [SDK.Error.WrongOperationState]

In this case the plugin waited until it received an event saying that OperationState had changed to Ready, then tried to select a program which resulted in an error that the OperationState was not Ready. This looks like another bug in the Home Connect API. It might be possible to workaround this with an extra delay...

The second issue is that there are some unexpected errors in both your second and third logs:

Home Connect API error: The request content was malformed:
Object is missing required member 'data' [400]
SET selected program undefined

I think this is occurring when the plugin is attempting to restore the originally selected program after it has finished reading all of the options. The plugin read the selected program before starting the sequence, while the appliance was still switched off, but the appliance would not allow it to be read at that time. As a minimum I need to change the plugin to avoid trying to select a null program. Ideally it would also read the selected program after switching on the power, but it probably isn't worth the effort to do that given that this only affects the first time that the plugin is started.

from homebridge-homeconnect.

Kohle81 avatar Kohle81 commented on May 17, 2024

Hello, I didn't want to attack you with my presentation. I just wanted to confirm what @ D-jay has already written. I had little time to write, so please excuse me. Do you still need my log?

Sent with GitHawk

from homebridge-homeconnect.

thoukydides avatar thoukydides commented on May 17, 2024

Based on a quick look, there are a couple of things that concern me.

Both of those issues should now be fixed in v0.17.2.
(Unfortunately, GitHub appears to be having problems at the moment so I can't push the changes to the repository, but the package has been released to npm.)

@DJay-X, if you are able to try this version in the same way (deleting the cache file first) then it would be good to confirm that neither error now occurs.

from homebridge-homeconnect.

Kohle81 avatar Kohle81 commented on May 17, 2024

from homebridge-homeconnect.

thoukydides avatar thoukydides commented on May 17, 2024

Thanks for confirming @Kohle81, that’s great news.

from homebridge-homeconnect.

DJay-X avatar DJay-X commented on May 17, 2024

Looks good to me as well.

Stopped Homebridge, installed v0.17.2, deleted the cache file und restart homebridge again.
First run the coffee maker turned on, switched to all programs and turned off after that.

Stopped Homebridge, restart Homebridge.
Coffee maker was not turning on.
Switched coffee maker on by asking Siri HomePod, and it turned on.
Switched coffee maker off by asking Siri HomePod, and it turned off.

I think all as expected. πŸ‘

Linux raspberrypi-3BPlus 4.19.66-v7+ #1253 SMP Thu Aug 15 11:49:46 BST 2019 armv7l

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Tue Feb 25 21:51:55 2020 from 192.168.178.23
pi@raspberrypi-3BPlus:~ $ sudo systemctl start homebridge-2nd-Instance
pi@raspberrypi-3BPlus:~ $ sudo journalctl -f -u homebridge-2nd-Instance
-- Logs begin at Sat 2020-02-22 02:24:22 CET. --
Feb 25 22:06:03 raspberrypi-3BPlus systemd[1]: Stopped Node.js HomeKit Server.
Feb 25 22:06:53 raspberrypi-3BPlus systemd[1]: Started Node.js HomeKit Server.
Feb 25 22:06:54 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:54] Loaded config.json with 0 accessories and 3 platforms.
Feb 25 22:06:54 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:54] ---
Feb 25 22:06:54 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:54] Loaded plugin: homebridge-config-ui-x
Feb 25 22:06:54 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:54] Registering platform 'homebridge-config-ui-x.config'
Feb 25 22:06:54 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:54] ---
Feb 25 22:06:55 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:55] Loaded plugin: homebridge-homeconnect
Feb 25 22:06:55 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:55] Registering platform 'homebridge-homeconnect.HomeConnect'
Feb 25 22:06:55 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:55] ---
Feb 25 22:06:55 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:55] Loaded plugin: homebridge-nest
Feb 25 22:06:55 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:55] Registering platform 'homebridge-nest.Nest'
Feb 25 22:06:55 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:55] ---
Feb 25 22:06:55 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:55] Loading 3 platforms...
Feb 25 22:06:55 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:55] [Config] Initializing config platform...
Feb 25 22:06:56 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:56] [Config] Spawning homebridge-config-ui-x with PID 3495
Feb 25 22:06:56 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:56] [HomeConnect] Initializing HomeConnect platform...
Feb 25 22:06:56 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:56] [HomeConnect] new HomeConnectPlatform
Feb 25 22:06:56 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:56] [Nest] Initializing Nest platform...
Feb 25 22:06:56 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:56] [Nest] Fetching Nest devices.
Feb 25 22:06:56 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:56] Loading 0 accessories...
Feb 25 22:06:56 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:56] [HomeConnect] Restored 1 cached accessories
Feb 25 22:06:56 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:56] [HomeConnect] Starting events stream for all appliances
Feb 25 22:06:56 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:56] [HomeConnect] [Kaffeevollautomat] Bosch CoffeeMaker (E-Nr: CTL636ES6/03)
Feb 25 22:06:57 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:57] [HomeConnect] [Kaffeevollautomat] Door closed
Feb 25 22:06:57 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:57] [HomeConnect] [Kaffeevollautomat] Inactive (Inactive)
Feb 25 22:06:57 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:57] [HomeConnect] [Kaffeevollautomat] Remote operation enabled (remote start allowed)
Feb 25 22:06:57 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:57] [HomeConnect] [Kaffeevollautomat] Off
Feb 25 22:06:57 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:57] [HomeConnect] [Kaffeevollautomat] Connected
Feb 25 22:06:57 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:57] [HomeConnect] [Kaffeevollautomat] Off
Feb 25 22:06:57 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:57] [HomeConnect] [Kaffeevollautomat] Can be placed in standby
Feb 25 22:06:57 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:06:57] [HomeConnect] [Kaffeevollautomat] Passively reading options for 26 programs
Feb 25 22:07:00 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:00] [Config] Homebridge Config UI X v4.10.3 is listening on :: port 8082
Feb 25 22:07:01 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:01] [Nest] initing protect "Esszimmer": deviceId: xxx structureId: xxx
Feb 25 22:07:01 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:01] [Nest] initing protect "Wohnzimmer": deviceId: xxx structureId: xxx
Feb 25 22:07:01 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:01] [Nest] initing protect "Schlafzimmer": deviceId: xxx structureId: xxx
Feb 25 22:07:01 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:01] [Nest] Initializing platform accessory 'Esszimmer'...
Feb 25 22:07:01 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:01] [Nest] Initializing platform accessory 'Wohnzimmer'...
Feb 25 22:07:01 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:01] [Nest] Initializing platform accessory 'Schlafzimmer'...
Feb 25 22:07:01 raspberrypi-3BPlus homebridge[3460]: Setup Payload:
Feb 25 22:07:01 raspberrypi-3BPlus homebridge[3460]: X-HM://0023IV4HA77J0
Feb 25 22:07:01 raspberrypi-3BPlus homebridge[3460]: Scan this code with your HomeKit app on your iOS device to pair with Homebridge:
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                                                       
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]: Or enter this code with your HomeKit app on your iOS device to pair with Homebridge:
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                        
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:     β”‚ 032-45-678 β”‚
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:     β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]:                        
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:02] Homebridge is running on port 51842.
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:02] [HomeConnect] [Kaffeevollautomat] Actively reading options for 26 programs
Feb 25 22:07:02 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:02] [HomeConnect] [Kaffeevollautomat] Switching appliance on to read program options
Feb 25 22:07:03 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:03] [HomeConnect] [Kaffeevollautomat] On
Feb 25 22:07:03 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:03] [HomeConnect] [Kaffeevollautomat] Active (Run)
Feb 25 22:07:03 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:03] [HomeConnect] [Kaffeevollautomat] On
Feb 25 22:07:03 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:03] [HomeConnect] [Kaffeevollautomat] Manual mode (remote start allowed, being operated locally)
Feb 25 22:07:12 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:12] [HomeConnect] [Kaffeevollautomat] Remote operation enabled (remote start allowed)
Feb 25 22:07:51 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:51] [HomeConnect] [Kaffeevollautomat] Inactive (Ready)
Feb 25 22:07:52 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:52] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.Beverage.Ristretto to read its options
Feb 25 22:07:54 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:54] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.Beverage.Espresso to read its options
Feb 25 22:07:55 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:55] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.Beverage.EspressoMacchiato to read its options
Feb 25 22:07:57 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:57] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.Beverage.Coffee to read its options
Feb 25 22:07:58 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:07:58] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.Beverage.Cappuccino to read its options
Feb 25 22:08:00 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:00] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.Beverage.LatteMacchiato to read its options
Feb 25 22:08:01 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:01] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.Beverage.CaffeLatte to read its options
Feb 25 22:08:03 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:03] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.Beverage.MilkFroth to read its options
Feb 25 22:08:04 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:04] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.Beverage.WarmMilk to read its options
Feb 25 22:08:06 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:06] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.KleinerBrauner to read its options
Feb 25 22:08:07 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:07] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.GrosserBrauner to read its options
Feb 25 22:08:09 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:09] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Verlaengerter to read its options
Feb 25 22:08:11 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:11] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.VerlaengerterBraun to read its options
Feb 25 22:08:12 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:12] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.WienerMelange to read its options
Feb 25 22:08:14 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:14] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.FlatWhite to read its options
Feb 25 22:08:16 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:16] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Cortado to read its options
Feb 25 22:08:17 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:17] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.CafeCortado to read its options
Feb 25 22:08:19 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:19] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.CafeConLeche to read its options
Feb 25 22:08:20 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:20] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.CafeAuLait to read its options
Feb 25 22:08:22 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:22] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Doppio to read its options
Feb 25 22:08:23 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:23] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Kaapi to read its options
Feb 25 22:08:25 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:25] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.KoffieVerkeerd to read its options
Feb 25 22:08:26 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:26] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Galao to read its options
Feb 25 22:08:28 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:28] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Garoto to read its options
Feb 25 22:08:29 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:29] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Americano to read its options
Feb 25 22:08:31 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:31] [HomeConnect] [Kaffeevollautomat] Temporarily selecting program ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.RedEye to read its options
Feb 25 22:08:33 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:33] [HomeConnect] [Kaffeevollautomat] Active (Run)
Feb 25 22:08:34 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:34] [HomeConnect] [Kaffeevollautomat] Off
Feb 25 22:08:35 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:35] [HomeConnect] [Kaffeevollautomat] Inactive (Inactive)
Feb 25 22:08:35 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:35] [HomeConnect] [Kaffeevollautomat] Off
Feb 25 22:08:35 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:35] [HomeConnect] [Kaffeevollautomat] Finished reading available program options
Feb 25 22:08:35 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:35] [HomeConnect] [Kaffeevollautomat] Adding services for 5 programs
Feb 25 22:08:35 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:35] [HomeConnect] [Kaffeevollautomat]     'Latte Macchiato' (ConsumerProducts.CoffeeMaker.Program.Beverage.LatteMacchiato)
Feb 25 22:08:35 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:35] [HomeConnect] [Kaffeevollautomat]     'Americano' (ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Americano)
Feb 25 22:08:35 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:35] [HomeConnect] [Kaffeevollautomat]     'Flat White' (ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.FlatWhite)
Feb 25 22:08:35 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:35] [HomeConnect] [Kaffeevollautomat]     'Espresso' (ConsumerProducts.CoffeeMaker.Program.Beverage.Espresso)
Feb 25 22:08:35 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:35] [HomeConnect] [Kaffeevollautomat]     'Caffè Crema' (ConsumerProducts.CoffeeMaker.Program.Beverage.Coffee)
Feb 25 22:08:35 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:35] [HomeConnect] [Kaffeevollautomat] Removing services for 0 programs
^C
pi@raspberrypi-3BPlus:~ $ sudo systemctl stop homebridge-2nd-Instance
pi@raspberrypi-3BPlus:~ $ sudo systemctl start homebridge-2nd-Instance
pi@raspberrypi-3BPlus:~ $ sudo journalctl -f -u homebridge-2nd-Instance
-- Logs begin at Sat 2020-02-22 02:24:22 CET. --
Feb 25 22:08:35 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:35] [HomeConnect] [Kaffeevollautomat]     'Latte Macchiato' (ConsumerProducts.CoffeeMaker.Program.Beverage.LatteMacchiato)
Feb 25 22:08:35 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:35] [HomeConnect] [Kaffeevollautomat]     'Americano' (ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Americano)
Feb 25 22:08:35 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:35] [HomeConnect] [Kaffeevollautomat]     'Flat White' (ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.FlatWhite)
Feb 25 22:08:35 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:35] [HomeConnect] [Kaffeevollautomat]     'Espresso' (ConsumerProducts.CoffeeMaker.Program.Beverage.Espresso)
Feb 25 22:08:35 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:35] [HomeConnect] [Kaffeevollautomat]     'Caffè Crema' (ConsumerProducts.CoffeeMaker.Program.Beverage.Coffee)
Feb 25 22:08:35 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:08:35] [HomeConnect] [Kaffeevollautomat] Removing services for 0 programs
Feb 25 22:09:22 raspberrypi-3BPlus systemd[1]: Stopping Node.js HomeKit Server...
Feb 25 22:09:22 raspberrypi-3BPlus homebridge[3460]: [2020-2-25 22:09:22] Got SIGTERM, shutting down Homebridge...
Feb 25 22:09:27 raspberrypi-3BPlus systemd[1]: Stopped Node.js HomeKit Server.
Feb 25 22:09:32 raspberrypi-3BPlus systemd[1]: Started Node.js HomeKit Server.
Feb 25 22:09:34 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:34] Loaded config.json with 0 accessories and 3 platforms.
Feb 25 22:09:34 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:34] ---
Feb 25 22:09:34 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:34] Loaded plugin: homebridge-config-ui-x
Feb 25 22:09:34 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:34] Registering platform 'homebridge-config-ui-x.config'
Feb 25 22:09:34 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:34] ---
Feb 25 22:09:35 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:35] Loaded plugin: homebridge-homeconnect
Feb 25 22:09:35 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:35] Registering platform 'homebridge-homeconnect.HomeConnect'
Feb 25 22:09:35 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:35] ---
Feb 25 22:09:35 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:35] Loaded plugin: homebridge-nest
Feb 25 22:09:35 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:35] Registering platform 'homebridge-nest.Nest'
Feb 25 22:09:35 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:35] ---
Feb 25 22:09:35 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:35] Loading 3 platforms...
Feb 25 22:09:35 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:35] [Config] Initializing config platform...
Feb 25 22:09:35 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:35] [Config] Spawning homebridge-config-ui-x with PID 4076
Feb 25 22:09:35 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:35] [HomeConnect] Initializing HomeConnect platform...
Feb 25 22:09:35 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:35] [HomeConnect] new HomeConnectPlatform
Feb 25 22:09:35 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:35] [Nest] Initializing Nest platform...
Feb 25 22:09:35 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:35] [Nest] Fetching Nest devices.
Feb 25 22:09:35 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:35] Loading 0 accessories...
Feb 25 22:09:35 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:35] [HomeConnect] Restored 1 cached accessories
Feb 25 22:09:35 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:35] [HomeConnect] Starting events stream for all appliances
Feb 25 22:09:36 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:36] [HomeConnect] [Kaffeevollautomat] Bosch CoffeeMaker (E-Nr: CTL636ES6/03)
Feb 25 22:09:36 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:36] [HomeConnect] [Kaffeevollautomat] Can be placed in standby
Feb 25 22:09:36 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:36] [HomeConnect] [Kaffeevollautomat] Door closed
Feb 25 22:09:36 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:36] [HomeConnect] [Kaffeevollautomat] Inactive (Inactive)
Feb 25 22:09:36 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:36] [HomeConnect] [Kaffeevollautomat] Remote operation enabled (remote start allowed)
Feb 25 22:09:36 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:36] [HomeConnect] [Kaffeevollautomat] Off
Feb 25 22:09:37 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:37] [HomeConnect] [Kaffeevollautomat] Connected
Feb 25 22:09:37 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:37] [HomeConnect] [Kaffeevollautomat] Finished reading available program options
Feb 25 22:09:37 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:37] [HomeConnect] [Kaffeevollautomat] Adding services for 5 programs
Feb 25 22:09:37 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:37] [HomeConnect] [Kaffeevollautomat]     'Latte Macchiato' (ConsumerProducts.CoffeeMaker.Program.Beverage.LatteMacchiato)
Feb 25 22:09:37 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:37] [HomeConnect] [Kaffeevollautomat]     'Americano' (ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.Americano)
Feb 25 22:09:37 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:37] [HomeConnect] [Kaffeevollautomat]     'Flat White' (ConsumerProducts.CoffeeMaker.Program.CoffeeWorld.FlatWhite)
Feb 25 22:09:37 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:37] [HomeConnect] [Kaffeevollautomat]     'Espresso' (ConsumerProducts.CoffeeMaker.Program.Beverage.Espresso)
Feb 25 22:09:37 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:37] [HomeConnect] [Kaffeevollautomat]     'Caffè Crema' (ConsumerProducts.CoffeeMaker.Program.Beverage.Coffee)
Feb 25 22:09:37 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:37] [HomeConnect] [Kaffeevollautomat] Removing services for 0 programs
Feb 25 22:09:40 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:40] [Config] Homebridge Config UI X v4.10.3 is listening on :: port 8082
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:41] [Nest] initing protect "Esszimmer": deviceId: xxx structureId: xxx
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:41] [Nest] initing protect "Wohnzimmer": deviceId: xxx structureId: xxx
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:41] [Nest] initing protect "Schlafzimmer": deviceId: xxx structureId: xxx
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:41] [Nest] Initializing platform accessory 'Esszimmer'...
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:41] [Nest] Initializing platform accessory 'Wohnzimmer'...
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:41] [Nest] Initializing platform accessory 'Schlafzimmer'...
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]: Setup Payload:
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]: X-HM://0023IV4HA77J0
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]: Scan this code with your HomeKit app on your iOS device to pair with Homebridge:
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                                                       
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]: Or enter this code with your HomeKit app on your iOS device to pair with Homebridge:
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                        
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:     β”‚ 032-45-678 β”‚
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:     β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]:                        
Feb 25 22:09:41 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:09:41] Homebridge is running on port 51842.
Feb 25 22:10:06 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:10:06] [HomeConnect] [Kaffeevollautomat] SET On
Feb 25 22:10:08 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:10:08] [HomeConnect] [Kaffeevollautomat] Active (Run)
Feb 25 22:10:08 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:10:08] [HomeConnect] [Kaffeevollautomat] On
Feb 25 22:10:08 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:10:08] [HomeConnect] [Kaffeevollautomat] On
Feb 25 22:10:08 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:10:08] [HomeConnect] [Kaffeevollautomat] Manual mode (remote start allowed, being operated locally)
Feb 25 22:10:16 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:10:16] [HomeConnect] [Kaffeevollautomat] Remote operation enabled (remote start allowed)
Feb 25 22:10:18 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:10:18] [HomeConnect] [Kaffeevollautomat] Inactive (Ready)
Feb 25 22:10:25 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:10:25] [HomeConnect] [Kaffeevollautomat] SET Off
Feb 25 22:10:25 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:10:25] [HomeConnect] [Kaffeevollautomat] Active (Run)
Feb 25 22:10:26 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:10:26] [HomeConnect] [Kaffeevollautomat] Selected program null is not supported by the Home Connect API
Feb 25 22:10:27 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:10:27] [HomeConnect] [Kaffeevollautomat] Off
Feb 25 22:10:27 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:10:27] [HomeConnect] [Kaffeevollautomat] Inactive (Inactive)
Feb 25 22:10:27 raspberrypi-3BPlus homebridge[4039]: [2020-2-25 22:10:27] [HomeConnect] [Kaffeevollautomat] Off
^

from homebridge-homeconnect.

thoukydides avatar thoukydides commented on May 17, 2024

Thanks @DJay-X. Everything in those logs is now as expected and intended.

from homebridge-homeconnect.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.