Skip to content

Commit a62531a

Browse files
committed
Add discoverable mode instructions for wiimotes
1 parent 03ee0aa commit a62531a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wiimotes.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def run(self):
2626
max_wiimotes = 4
2727
while not self.should_stop:
2828
if (self.usb_container.devices_count == 0):
29-
print '[' + bcolors.OKBLUE + 'WiimoteSearch' + bcolors.ENDC + '] Looking for wiimotes'
29+
print '[' + bcolors.OKBLUE + 'WiimoteSearch' + bcolors.ENDC + '] Looking for wiimotes (Press 1+2)'
3030
start = time.time()
3131
while (self.usb_container.devices_count < max_wiimotes and time.time() - start <= 60 and not self.should_stop):
3232
try:
@@ -76,4 +76,4 @@ def main():
7676
wiimote_search.join()
7777
print '[' + bcolors.WARNING + 'Main' + bcolors.ENDC + '] Reached end'
7878
sys.exit(0)
79-
main()
79+
main()

0 commit comments

Comments
 (0)