1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2025-06-27 22:28:33 +02:00
Files
STARK/Features/Raspi/Raspi.py
2021-08-22 17:24:30 +03:00

11 lines
292 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')