I did a factory reset on the NAO v6 robot, because I wanted to change its name, but unfortunately I could not because I did not find any option, is there any way to change its name, or is the name a standard robot?
Asked
Active
Viewed 526 times
2 Answers
1
There is an API for that: ALSystem.setRobotName. After setting the robot name, you need to reboot the robot if you want Choregraphe find it by its name.
That means that you can connect to the robot using SSH, and type:
qicli call ALSystem.setRobotName "My robot's name"
sudo reboot

Victor Paléologue
- 2,025
- 1
- 17
- 27
-
You can add a "Python Script" Box in Choregraphe and put the following code in the "onLoad" function: `from naoqi import ALProxy alSystemProxy = ALProxy("ALSystem", "your ip-adress of robot", 9559) alSystemProxy.setRobotName("new robot name")` – Xyndra May 12 '21 at 13:23
0
You can also type its ip address in your browser and directly change the robot's name.

Mim Sahir
- 13
- 3