1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2025-07-02 22:36:54 +02:00
Files
STARK/Raspi/Raspi.py
MarkParker5 1b705620b2 small fix
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')