1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2024-11-29 08:22:03 +02:00
STARK/Raspi/Raspi.py
2020-11-28 08:25:22 +02:00

11 lines
290 B
Python

from Command import Command # import parent class
import os
class Raspi(Command):
def start(this, string): # main method
pass
@staticmethod
def hdmi_cec(command):
os.system(f'echo \'{command}\' | cec-client -s -d 1')