1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
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)
|