This repository was archived by the owner on May 28, 2024. It is now read-only.

Description
Hello,
I've come here because of the famous HA bug with LG soundbars, in particular the last few years. 2019-2021
I have been testing your code independently and I found that my soundbar: SN9YG has a new identifier for the list of equalisers.
Would it be possible to extend it and add it to a HA update?
I am attaching the code where you can see the identifier 19, which is not included in the code.
Would it be possible?
`
[DEBUG ON]
def speaker_callback(response):
"""Handle responses from the speakers."""
data = response["data"]
print(data)
[DEBUG ON]
speaker = temescal.temescal("192.168.1.79", callback=speaker_callback)
[DEBUG ON]
speaker.get_eq()
{'ai_eq_list': [19, 14, 0, 13, 6, 5, 15], 'i_curr_eq': 13, 'i_bass': 5, 'i_treble': 5}
[DEBUG ON]
`