Skip to content
This repository was archived by the owner on Apr 10, 2022. It is now read-only.

Commit 6caeb07

Browse files
committed
fix urls.
1 parent f48a9ec commit 6caeb07

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ python:
55
install:
66
- pip install -r requirements.txt
77
# explicitly overwrite the mavlink that was installed earlier since that will be the wrong public version
8-
- git clone ssh://git@github.com/3drobotics/mavlink-solo
8+
- git clone ssh://git@github.com/OpenSolo/mavlink-solo
99
- cd mavlink-solo/pymavlink
1010
- python setup.py install
1111
- cd ../..

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ The main dependencies of this project are:
3030

3131
* [dronekit-python](https://github.com/dronekit/dronekit-python) - ShotManager uses *DroneKit Python* to implement the movement behavior required by shots. ([Docs here](http://python.dronekit.io/)).
3232
* [dronekit-python-solo](https://github.com/dronekit/dronekit-python-solo) - An extension for dronekit-python that enables Solo-specific functionality.
33-
* [sololink-python](https://github.com/3drobotics/sololink-python) - ShotManager uses this to acquire information about Artoo buttons (A,B,Pause,Fly) and to get and remap RC stick values. This is the Python interface for [SoloLink](https://github.com/3drobotics/SoloLink).
34-
* [mavlink-solo](https://github.com/3drobotics/mavlink-solo) - ShotManager uses this C-library to package (and read) MAVLink messages in communications with the Pixhawk and GoPro.
33+
* [sololink-python](https://github.com/OpenSolo/sololink-python) - ShotManager uses this to acquire information about Artoo buttons (A,B,Pause,Fly) and to get and remap RC stick values. This is the Python interface for [SoloLink](https://github.com/OpenSolo/SoloLink).
34+
* [mavlink-solo](https://github.com/OpenSolo/mavlink-solo) - ShotManager uses this C-library to package (and read) MAVLink messages in communications with the Pixhawk and GoPro.
3535
* [numpy](https://github.com/numpy/numpy) - A popular mathematics library for Python.
3636

3737
The project is a dependency of:
@@ -66,9 +66,9 @@ sudo apt-get install python-scipy python-opencv ccache gawk git python-pip pytho
6666
sudo pip install pymavlink MAVProxy==1.4.38
6767
```
6868

69-
4] Clone [ardupilot-solo](https://github.com/3drobotics/ardupilot-solo) to your home directory.
69+
4] Clone [ardupilot-solo](https://github.com/OpenSolo/ardupilot-solo) to your home directory.
7070
```
71-
git clone https://github.com/3drobotics/ardupilot-solo.git
71+
git clone https://github.com/OpenSolo/ardupilot-solo.git
7272
```
7373

7474
5] Navigate to the ArduCopter directory.
@@ -129,7 +129,7 @@ source shotman_venv/bin/activate
129129
2] Install shotmanager dependencies.
130130
```
131131
pip install dronekit dronekit-solo numpy nose mock
132-
git clone https://github.com/3drobotics/sololink-python.git
132+
git clone https://github.com/OpenSolo/sololink-python.git
133133
cd ~/sololink-python
134134
sudo python setup.py install
135135
cd ..

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ numpy
55
enum34
66
dronekit>=2.0.0
77
dronekit-solo
8-
-e git+ssh://git@github.com/3drobotics/sololink-python.git#egg=sololink
8+
-e git+ssh://git@github.com/OpenSolo/sololink-python.git#egg=sololink

0 commit comments

Comments
 (0)