def get_player_info(heosobj, command, data): """CLI 4.2.2""" update_players(heosobj, data)
def player_playback_error(heosobj, command, data): """CLI 5.7""" if command == 'event/player_playback_error': update_players(heosobj, data)
def player_repeat_mode_changed(heosobj, command, data): """CLI 5.10""" if command == 'event/repeat_mode_changed': update_players(heosobj, data)
def player_shuffle_mode_changed(heosobj, command, data): """CLI 5.11""" if command == 'event/shuffle_mode_changed': update_players(heosobj, data)
def player_volume_changed(heosobj, command, data): """CLI 5.9""" if command == 'event/player_volume_changed': update_players(heosobj, data)