aboutsummaryrefslogtreecommitdiff
path: root/aneatocli.py
diff options
context:
space:
mode:
authorLionel <lionel.miquel46@gmail.com>2018-12-12 15:56:05 +0100
committerLionel <lionel.miquel46@gmail.com>2018-12-12 22:44:53 +0100
commit0a7e66f5d187e76bb9902c5cd2e3d5196739d5e3 (patch)
tree48b8ba84049cf27d33173c6e35e65851036b383b /aneatocli.py
parent6f9abf1f236f8662e9953ef666913130d3e26e6e (diff)
downloadaneatocli-0a7e66f5d187e76bb9902c5cd2e3d5196739d5e3.tar.gz
aneatocli-0a7e66f5d187e76bb9902c5cd2e3d5196739d5e3.zip
Added all the main file. I'm not implementing OAuth for the moment.
Working on account logging func
Diffstat (limited to 'aneatocli.py')
-rw-r--r--aneatocli.py126
1 files changed, 126 insertions, 0 deletions
diff --git a/aneatocli.py b/aneatocli.py
new file mode 100644
index 0000000..f6cac4f
--- /dev/null
+++ b/aneatocli.py
@@ -0,0 +1,126 @@
+"""
+aneatocli : a Neato Robot command and state querying cli.
+
+Usage:
+ aneatocli.py --go | --start-cleaning
+ aneatocli.py --stp | --stop-cleaning
+ aneatocli.py --pse | --pause-cleaning
+ aneatocli.py --res | --resume-cleaning
+ aneatocli.py --base |--send-to-base
+ aneatocli.py --gc | --get-commands
+ aneatocli.py --lsec | --load-secrets
+ aneatocli.py --acc | -account
+ aneatocli.py -h | --help
+ aneatocli.py -v | --version
+
+Options:
+ -h , --help Show this message.
+ -v , --version Show version.
+ --go , --start-cleaning Tell the robot to start cleaning.
+ --stp , --stop-cleaning Tell the robot to stop cleaning.
+ --pse , --pause-cleaning Tell the robot to pause cleaning.
+ --res , --resume-cleaning Tell the robot to resume cleaning.
+ --base ,--sendtobase Tell the robot to go back to its dock.
+ --gc , --get-commands Get the available commands.
+ --lsec , --load-secrets Get the Serial Number and the secret. You will be prompted for login.
+
+"""
+from sys import exit
+from os.path import exists as chkf
+from pprint import pprint
+import json
+global robot
+
+def loadCreds()
+ try:
+ with open("robotCreds.json","r") as json_file:
+ creds=json.load(json_file)
+ print("Your serial number is "+creds["serialID"]
+ +". \n Your secret is "+creds["secretID"]
+ +".\n Your robot "+creds["name"]+" have the following traits"+creds["traits"])
+ robot = Robot(creds["serialID"],creds["secretID"],creds["traits"],creds["name"])
+ except:
+ print("Cannot log your robot(s) with the provided infos.")
+
+def getCmds():
+ cmds=robot.state["availableCommands"]
+ try:
+ with open("robotstate.json", "w") as json_file:
+ json.dump(cmds, json_file)
+ print("File robotstate.json created")
+ except:
+ raise
+ exit()
+
+def startC():
+ if robot.state["availableCommands"]["start"]:
+d robot.start_cleaning()
+ else:
+ print("Cannot start the robot.")
+
+def stopC():
+ if robot.state["availableCommands"]["stop"]:
+ robot.stop_cleaning()
+ else:
+ print("Cannot stop the robot.")
+
+
+def pauseC():
+ if robot.state["availableCommands"]["pause"]:
+ robot.pause_cleaning()
+ else:
+ print("Cannot pause the robot.")
+
+def resumeC():
+ if robot.state["availableCommands"]["resume"]:
+ robot.resume_cleaning()
+ else:
+ print("Cannot resume the robot.")
+
+def go2B():
+ if robot.state["availableCommands"]["goToBase"]:
+ robot.send_to_base()
+ else:
+ print("Cannot send the robot to base.")
+
+
+
+
+def funCall(simpleArg, verboseArg, func, *args):
+ if arguments[simpleArg] or arguments[verboseArg]:
+ func( *args )
+
+
+
+
+getSecrets()
+
+try:
+ from pybotvac import Robot
+except:
+ print("pybotvac package is not installed.\n\nPlease run 'pip install pybotvac' from your command prompt\n")
+ exit()
+
+try:
+ from docopt import docopt
+
+except:
+ print("docopt package is not installed.\n\nPlease run 'pip install docopt==0.6.2' from your command prompt\n")
+ exit()
+
+if __name__ == '__main__':
+ arguments = docopt(__doc__, version='aneatocli 0.1')
+ #nts:useful pour debugging
+ pprint(arguments)
+
+
+
+funCall("--go","--start-cleaning",startC)
+funCall("--stp","--stop-cleaning",stopC)
+funCall("--pse","--pause-cleaning",pauseC)
+funCall("--res","--resume-cleaning",resumeC)
+funCall("--base","--send-to-base",go2B)
+funCall("--gc","--get-commands",getCmds)
+funCall("--lsec","--load-secrets",loadCreds)
+
+