コード例 #1
0
 def handle_temperature(update: Update):
     res, output, error = Util.execute("vcgencmd measure_temp")
     TelegramBotManager().bot.send_message(chat_id=update.message.chat_id,
                                           text=output)
コード例 #2
0
def reboot_bot(*, telegram_id):
    Util.execute("reboot")
コード例 #3
0
def shutdown_bot(*, telegram_id):
    Util.execute("shutdown now -h")
コード例 #4
0
def exec_cmd_bot(*, telegram_id, command):
    res, output, error = Util.execute(command)
    if len(output) == 0:
        output = "Empty"
    return output