mirror of
https://github.com/MarkParker5/STARK.git
synced 2025-01-28 11:33:45 +02:00
9 lines
266 B
Python
9 lines
266 B
Python
from Command import Command # import parent class
|
|
|
|
class RPi(Command):
|
|
def start(this, string): # main method
|
|
pass
|
|
|
|
def hdmi_cec(this, command):
|
|
os.system(f'echo \'{command}\' | cec-client -s -d 1')
|