2ちゃんねる ■掲示板に戻る■ 全部 1- 最新50    

■ このスレッドは過去ログ倉庫に格納されています

ハザマ「やだな…強そう」

1 :ハザマさん:2024/10/02(水) 07:57:13.79 ID:NEL/hX3rx
import wiimote
def generate_pine_script(input_commands):
    script = "// Generated Pine Script\n"
    for command in input_commands:
        if command == "button_a":script += "plot(close)\n"
        elif command == "button_b":script += "plot(open)\n"
    return script
def main():
    wm = wiimote.Wiimote()
    wm.connect()  # Wiiリモコンに接続
    input_commands = []
    print("Wiiリモコンのボタンを押して入力を取得します。")
    try:
        while True:
            wm.poll()  # 状態を更新
            if wm.a_button: input_commands.append("button_a")
                print("Aボタンが押されました。")
            if wm.b_button:         input_commands.append("button_b")
                print("Bボタンが押されました。")
            if wm.home_button:  # Homeボタンで終了
                break
    except KeyboardInterrupt:
        pass
    finally:
        wm.disconnect()  # Wiiリモコンから切断
    pine_script = generate_pine_script(input_commands)
    print("生成されたPine Script:\n", pine_script)
if __name__ == "__main__":
    main()

総レス数 1
2 KB
掲示板に戻る 全部 前100 次100 最新50
read.cgi ver.24052200