botafar#

Add global remote controls and a real time livestream to your projects

  • Share a link and let others take the controls one by one

  • Forward the livestream to Twitch or YouTube (optional)

  • No hardware required, a phone can be used as a camera

  • Arduino and Raspberry Pi tutorials available

  • Desktop and mobile browser support, no apps, no signups

It works by decorating existing functions and class methods to respond to user input:

import botafar

j = botafar.Joystick("W","A","S","D")

@j.on_left
def turn_left():
    print("left!")

@j.on_right
def turn_right():
    print("right!")

# [email protected]_up, on_down, on_center

botafar.run()

result

Check botafar.com for currently online bots!