Always-on computer music
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

10 行
182B

  1. from pythonosc import udp_client
  2. import time
  3. osc = udp_client.SimpleUDPClient("0.0.0.0", 5005)
  4. while True:
  5. print("send")
  6. osc.send_message("/radio", 1337)
  7. time.sleep(1)