Skip to content

Geo-JTao/teleoperation

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

128 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

teleoperation

teleoperation

πŸš€ Environment Setup

  1. Clone the official repository
    git clone https://github.com/FFTAI/teleoperation.git
  1. Create a virtual environment and install the required packages
    conda create -n teleop python==3.11.10
    conda activate teleop
    pip install -e '.[fourier,realsense]' # add other optional dependencies if needed
    pip uninstall typing # this is a workaround, vuer installs typing, but it is obsolete in newer python versions
  1. (Optional) Install ZED SDK

    The ZED setup composes with two parts:

    • Install the ZED SDK: ZED SDK coould be installed from the official website. Please select the version that matches your operating system.

    • Install the ZED Python API

      The ZED python API could be installed with following command:

      # Activate the your virtual environment
      conda activate teleop
      
      # install Python (x64 version) and the pip package manager. Then install the dependencies via pip in a terminal.
      python -m pip install cython numpy opencv-python pyopengl
      
      # Install ZED python API
      cd /usr/local/zed/
      python get_python_api.py
  2. (Optional) Install Intel RealSense Setup For setting up Intel RealSense, there are two steps that need to be done:

    • Install the librealsense for using realsense with official instructions
    • Cheking the serial number of the camera and update the realsense.yaml file in the camera directory inside config directory.

    [!NOTE] If you are using multi realsense cameras, you need to update the realsense_multi.yaml file with the serial number of each camera.

  3. (Optional) Install DepthAI library for Oak camera The depthai library could be installed with following command:

    $ python3 -m pip install depthai-sdk
  4. Setup fourier-grx

The fourier GR series robots are controlled by the fourier-grx package. The fourier-grx package is only available for Python 3.11. Thus, we suggest you to create a new virtual environment with Python 3.11 and install the package in the new environment. For more information, please refer to the official Fourier GRX Documentation

    conda create -n grx python==3.11
    conda activate grx
    pip install fourier-grx==1.0.0a19
    cd ./server_config
    grx run ./gr1t2.yaml --namespace gr/daq

Then in another terminal, you can run the following command to do the initial calibration, make sure the robot is in the initial position.

    conda activate grx
    grx calibrate

After the calibration, there should be a sensor_offset.json file in the ./server_config directory.

πŸ‘“ Setup VisionPro

The VisionPro setup is the same as the original OpenTeleVision.

🌐 Local Machine Connection

Apple restricts WebXR access on non-HTTPS connections. To test the application locally, you need to set up a self-signed certificate and install it on the client device. Here's what you'll need:

  1. An Ubuntu machine.
  2. A router.
  3. VisionPro connected to the same network with the Ubuntu machine.

Note

Please ensure that both the VisionPro and the Ubuntu machine are on the same network.

πŸ” Self-Signed Certificate

We'll be using mkcert to create a self-signed certificate. and mkcert is a simple tool for making locally-trusted development certificates. It requires no configuration. Here's how to set it up:

  1. Please follow the instructions on the official website to install mkcert.

  2. check the internet IP information with

    ifconfig | grep inet
  1. Creating the certificate with mkcert, make sure to put the IP address of your computer in the command
    mkcert -install && mkcert -cert-file cert.pem -key-file key.pem {Your IP address} localhost 127.0.0.1

example usage:

    mkcert -install && mkcert -cert-file cert.pem -key-file key.pem 192.168.1.100 your-computer.local localhost 127.0.0.1

Important

192.168.1.100 is a placeholder IP address just for example, please replace it with your actual IP address

Tip

For Ubuntu machines, you can use the zeroconf address instead of the IP address for additional convenience. The zeroconf address is usually $(hostname).local. You can find it by running echo "$(hostname).local" in the terminal.

  1. Turn on firewall setup
    sudo iptables -A INPUT -p tcp --dport 8012 -j ACCEPT
    sudo iptables-save
    sudo iptables -L

or setup firewall with ufw

    sudo ufw allow 8012
  1. install ca-certificates on VisionPro
    mkcert -CAROOT

Copy the rootCA.pem file to the VisionPro device through the Airdrop.

Settings > General > About > Certificate Trust Settings. Under "Enable full trust for root certificates", turn on trust for the certificate.

Settings > Apps > Safari > Advanced > Feature Flags > Enable WebXR Related Features

Note

For some general setting up questions on visionpro could be found in the VisionPro Setting FAQ.

  1. Certicates path Place key.pem and cert.pem into the certs folder to make sure the certificates are accessible by scripts.

  2. open the browser on Safari on VisionPro and go to https://192.168.1.100:8012?ws=wss://192.168.1.100:8012

You will see the message "Your connection is not secure" because we are using a self-signed certificate. Click "Advanced" and then "proceed to website". You will be prompted to accept the certificate.

Also, since the python script is not running, the browser will show a message "Safari cannot open the page because the server could not be found.". This is expected behavior. Refresh the page after running the python script and you will see the VR session.

  1. Run the python script on the Ubuntu machine. Please see the Usage section for more details.

Note

You should be able to use this with Oculus Quest 2 as well. The setup process is more involved, but you should be able to stream using adb follwoing this issue.

πŸ•ΉοΈ Usage

Start up the GRX server

    cd ./server_config
    grx run ./gr1t2.yaml --namespace gr/daq

Before running the GRX server, make sure the robot is in the initial position. Also, if you are first time using the robot, you need to do the calibration first. You can use the grx calibrate command to do the initial calibration. THe initial position of the robot looks like this:

initial position

Run the teleoperation script

We manage the config with Hydra. You can select config files and override with hydra's override syntax.

    python -m teleoperation.main --config-name teleop_gr1 camera=realsense

By default the script uses Oak camera with GR1T2 robot equipped with Fourier hands. If you want to use another robot or camera, you can modify the config file or use the command line arguments.

    python -m teleoperation.main --config-name teleop_gr1 camera=realsense

To use the realsense camera, first make sure to specify the serial number in configs/camera/realsense.yaml or configs/camera/realsense_multi.yaml depending on the number of cameras you are using, you can use the following command:

    python -m teleoperation.main --config-name teleop_gr1 camera=realsense # for single realsense camera
    python -m teleoperation.main --config-name teleop_gr1 camera=realsense_multi # for multi realsense camera

To use a generic camera with opencv, you can use the following command:

    python -m teleoperation.main --config-name teleop_gr1 camera=opencv

To record data, use the daq config file and specify the task name, the syntax is the same as the teleoperation config file.

    python -m teleoperation.main --config-name daq_gr1 task_name=${task_name}

Caution

If you are using the real robot with Fourier GRX, please make sure to leave enough empty space between the robot and the table to avoid the robot arm collide with the table. Or you could place the robot arm on the table. The robot resume to the initial teleoperation position before and after the teleoperation session. The sample illustration about place the robot arm on the table is shown below:

Teleoperation position

Start the teleoperation

After running the python command, you can open the browser on the VisionPro device and go to https://your-hostname.local:8012?ws=wss://your-hostname.local:8012. Or if you already in this website, you can refresh the page and click until see the camera image in the VR session.

Finallly, Click the Enter VR button and give necessary permissions to start the VR session. Make sure to reset the Vision Pro tracking by long press the crown button on the Vision Pro device until you hear a sound.

After starting the script, the robot will move to its start position. The operator should try to put their hands in the same start position (elbows 90 degree, hands open), and then hit the Space key to start the teleoperation.🦾

Afterwards, the operator can start the teleoperation by moving their hands in the VR session. The robot will mimic the operator's hand movements in real-time.

To stop the teleoperation, the operator can hit the Space key again.

You may watch the video to see how to access the VR session inside the VisionPro device: VisionPro operation video

Tip

You could use the pins to help you to lock the robot's waist if you don't want to use the waist. However, make sure you are calling use use_waist=false in the command. Otherwise, the robot's waist will be broken. THe pins are located in the image below:

Pin position

Pin position

πŸ› οΈ Development

We manage the development environment with the pdm package manager. Thus, please make sure to install pdm first following the official guide here.

    pdm install -d -Gfourier -Gdepthai -Grealsense -v

To select the specific environment, you can run the following command:

    pdm use

And to activate the environment, you can run the following command:

    eval "$(pdm venv activate)"

πŸ™ Credits

This project is based on the amazing OpenTeleVision project. We would like to thank the original authors for their contributions.

πŸ“– Citation

If you find this project useful, please consider citing it:

@misc{teleoperation,
  author = {Yuxiang Gao, Fourier Co Ltd},
  title = {teleoperation},
  year = {2024},
  publisher = {GitHub},
  journal = {GitHub repository},
  howpublished = {\url{https://github.com/FFTAI/teleoperation}}
}

About

A.K.A. Fourier Advanced Robot Teleoperation System (F.A.R.T.S.) πŸ’¨

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 97.9%
  • JavaScript 1.2%
  • Other 0.9%