1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2025-07-02 22:36:54 +02:00
Files
STARK/Raspi/Raspi.py

9 lines
268 B
Python
Raw Normal View History

from Command import Command # import parent class
2020-11-28 08:14:52 +02:00
class Raspi(Command):
def start(this, string): # main method
pass
2020-11-28 07:14:25 +02:00
def hdmi_cec(this, command):
os.system(f'echo \'{command}\' | cec-client -s -d 1')