You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Vector's Name: This is the name displayed on his face for BLE pairing after you double-click while Vector is on the charger. Example: `Vector-A1B2`
8
-
* Vector's IP Address: The ip address can be found by first placing Vector on the charger, then double-clicking the button on his back, and finally raising and lowering his arms. It is possible for your ip to change based on your network settings, so it must be updated accordingly. Example: `192.168.43.48`
9
-
* Vector's Serial Number: You may find this number on the underside of your robot. Example: `00e20115`
10
-
11
-
These will be needed to run the `anki_vector.configure` executable submodule and set up authentication from your device to your Vector.
12
-
13
-
Your device must have Python 3.6.1 or later installed. Please see the documentation pages mentioned below for instructions to install Python.
During setup, you will configure your `anki_vector` SDK authentication from a terminal using `'python3 -m anki_vector.configure`.
23
13
24
-
By running this script, you will be asked to provide your Anki account credentials, and the script will download an authentication token and cert that will grant you access to the robot and his capabilities (such as camera and audio) as well as data stored on the robot (such as faces and photos).
25
-
26
-
The downloaded access token is equivalent to your account credentials. It will be stored in your user directory (~/.anki_vector) along with a robot identity certificate and other useful data for establishing a connection. Do not share your access token.
27
-
28
-
If you have any trouble, please post to the Vector forums at https://forums.anki.com/
29
-
30
-
---
14
+
## Getting Started
31
15
32
-
If you encounter any issues, please reach out to the forums team and let us know at https://forums.anki.com/
16
+
You can follow steps [here](http://developer.anki.com/vector/docs/)to set up your Vector robot with the SDK.
33
17
34
-
---
35
18
36
-
Use of Vector and the Vector SDK is subject to Anki's Privacy Policy and Terms and Conditions.
Use of Vector and the Vector SDK is subject to Anki's [Privacy Policy](https://www.anki.com/en-us/company/privacy) and [Terms and Conditions](https://www.anki.com/en-us/company/terms-and-conditions).
print("\n\nFind your robot ip address (ex. 192.168.42.42) by placing Vector on the charger, double-clicking Vector's backpack button,\n"
188
-
"then raising and lowering his arms. If you see {} on his face, reconnect Vector to your WiFi using the Vector Companion App.".format(colored("XX.XX.XX.XX", "red")))
194
+
"then raising and lowering his arms. If you see {} on his face, reconnect Vector to your WiFi using the Vector Companion App.".format(colored("XX.XX.XX.XX", "red")))
189
195
ip=input("Enter robot ip: ")
190
196
else:
191
197
print("Found robot ip address in environment variable '{}'".format(colored("ANKI_ROBOT_HOST", "green")))
192
198
print("Using IP: {}".format(colored(ip, "cyan")))
193
199
returnrobot_name, ip
194
200
201
+
195
202
defsave_cert(cert, name, serial, anki_dir):
196
203
"""Write Vector's certificate to a file located in the user's home directory"""
0 commit comments