By the book!

It's rare for me when things go exactly as they should, so I celebrate those rare occurrences. I ordered my monsterborg. While waiting I configured the software, including PS3 controller pairing. Upon arrival I assembled the Monsterborg powered it up and nothing... Then I realized I had to run the script to turn on the web UI and/or joystick. Did that, added to boot sequence and eureka! It worked!

Can't wait to start playing around with this thing and am already thinking of building a beach version to carry my "stuff" to the beach for me.

Thank you to the entire community for making software available, helping with questions, etc. really great!

Can't set or check battery, script error

Images: 
piborg's picture

I am guessing you are using Python 3, in which case the print lines in the example are wrong.

Instead of looking like this:

print 'some text'
print 'value: %d' % (someNumber)

they should have parenthesis ( ) around the text like this:

print('some text')
print('value: %d' % (someNumber))

I think everything else will be fine in the example scripts, most of what we have used is the same in Python 2 and 3 :)

Subscribe to Comments for "By the book!"