-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f7263e5
commit a56cb95
Showing
1 changed file
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,18 @@ | ||
# wrp_sdk | ||
Weston Robot Platform SDK | ||
# Weston Robot Platform SDK (wrp_sdk) | ||
|
||
wrp_sdk provides C++ interface to mobile robot bases and robot peripherals (IMU, Ultrasonic, GPS, Camera Lift, etc.) from Weston Robot. wrp_sdk is provided as a Debian installation package and you can install it by following the steps given below. For sample code, please check the "sample-*" branches of this repository. | ||
|
||
## Supported platforms | ||
|
||
* OS: Ubuntu 18.04, Ubuntu 20.04 | ||
* Architecture: x86_64, arm64 | ||
|
||
## Install the SDK | ||
|
||
``` | ||
sudo apt-get install libglfw3-dev libyaml-cpp-dev libopencv-dev | ||
echo "deb https://westonrobot.jfrog.io/artifactory/wrtoolbox-release $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/weston-robot.list | ||
curl -sSL 'https://westonrobot.jfrog.io/artifactory/api/security/keypair/wr-deb/public' | sudo apt-key add - | ||
sudo apt-get update | ||
sudo apt-get install wr_assisted_teleop | ||
``` |