--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/slotUI/SlotCli.py Sat Dec 03 11:11:06 2011 +0100 @@ -0,0 +1,22 @@ +#!/usr/bin/env python +""" +Freeslot project +Command line interface +""" + +from freeslot import Blackbox + +class SlotCli(): + def __init__(self): + self.box = Blackbox() + self.box.connect() + + def run(self): + """ + Keyboard loop to control it??? + """ + return None + +if __name__ == "__main__": + app = SlotCli() + app.run() \ No newline at end of file