/di-usb-library

Python library for reading figures/discs and setting light colours on Disney Infinity base.

Primary LanguagePython

Disney Infinity USB Base library

Python. Requires hidapi.

Tested with the PS3/4 and Wii U base. I think the XBox bases are different and so likely won't work.

from infinity import InfinityBase

base = InfinityBase()

# this will be run whenever a figure or disk is added/removed
base.onTagsChanged = lambda: print("Tags added or removed.")

base.connect()

# get all the figures and disks on the base 
base.get_all_tags(print)

base.set_color(1, 200, 0, 0)

base.set_color(2, 0, 56, 0)

base.fade_color(3, 0, 0, 200)

time.sleep(3)

base.flash_color(3, 0, 0, 200)

while True:
    pass