with samsungctl.Remote(config) as remote:
remote.KEY_VOLUP()
I get the following error:
Traceback (most recent call last):
File "C:/Users/chrma/Desktop/PythonProjects/SamsungCTL/main.py", line 3, in
config = samsungctl.Config(
AttributeError: module 'samsungctl' has no attribute 'Config'
Process finished with exit code 1
I really want to get control of this display. Can you please help.
I am trying to use the samsungctl package.
my program right now is simply:
import samsungctl
config = samsungctl.Config( name='samsungctl', description='samsungctl-library', method='websocket', host='10.0.0.243' )
with samsungctl.Remote(config) as remote: remote.KEY_VOLUP()
I get the following error: Traceback (most recent call last): File "C:/Users/chrma/Desktop/PythonProjects/SamsungCTL/main.py", line 3, in
config = samsungctl.Config(
AttributeError: module 'samsungctl' has no attribute 'Config'
Process finished with exit code 1
I really want to get control of this display. Can you please help.