Desmond-Dong commited on
Commit
f493f8c
·
1 Parent(s): 0813da7

CRITICAL FIX: Rename duplicate _reachy_on_listening to _reachy_on_idle - tap detection was never re-enabled

Browse files
Files changed (1) hide show
  1. reachy_mini_ha_voice/satellite.py +1 -1
reachy_mini_ha_voice/satellite.py CHANGED
@@ -809,7 +809,7 @@ class VoiceSatelliteProtocol(APIServer):
809
  except Exception as e:
810
  _LOGGER.error("Reachy Mini motion error: %s", e)
811
 
812
- def _reachy_on_listening(self) -> None:
813
  """Called when returning to idle state (HA state: Idle)."""
814
  # Disable high-frequency face tracking, switch to adaptive mode
815
  self._set_conversation_mode(False)
 
809
  except Exception as e:
810
  _LOGGER.error("Reachy Mini motion error: %s", e)
811
 
812
+ def _reachy_on_idle(self) -> None:
813
  """Called when returning to idle state (HA state: Idle)."""
814
  # Disable high-frequency face tracking, switch to adaptive mode
815
  self._set_conversation_mode(False)