mirror of
https://github.com/MarkParker5/STARK.git
synced 2024-11-29 08:22:03 +02:00
11 lines
290 B
Python
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')
|