Skip to content

Commit 924a6c6

Browse files
committed
Change documentation domain
1 parent 8ca24ea commit 924a6c6

37 files changed

+51
-51
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ jobs:
6262
if: ${{ !steps.generate-pdf.outputs.GITBOOK_PDF_OK }}
6363
run: |
6464
rm -f _book/clover*.pdf
65-
wget --no-verbose https://clover.coex.tech/clover_ru.pdf -P _book/
66-
wget --no-verbose https://clover.coex.tech/clover_en.pdf -P _book/
65+
wget --no-verbose https://clovercoex.tech/clover_ru.pdf -P _book/
66+
wget --no-verbose https://clovercoex.tech/clover_en.pdf -P _book/
6767
- name: Upload artifact
6868
# if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
6969
uses: actions/upload-pages-artifact@v3

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Clover is an open source [ROS](https://www.ros.org)-based framework, providing u
66

77
COEX Clover Drone is an educational programmable drone kit, suited perfectly for running clover software. The kit is shipped unassembled and includes Pixracer-compatible autopilot running PX4 firmware, Raspberry Pi 4 as a companion computer, a camera for computer vision navigation as well as additional sensors and peripheral devices. Batteries included.
88

9-
The main documentation is available at [https://clover.coex.tech](https://clover.coex.tech/). Official website: [coex.tech/clover](https://coex.tech/clover).
9+
The main documentation is available at [https://clovercoex.tech](https://clovercoex.tech/).
1010

1111
[__Support us on Kickstarter!__](https://www.kickstarter.com/projects/copterexpress/cloverdrone)
1212

@@ -30,11 +30,11 @@ Image features:
3030
* Configured networking
3131
* OpenCV
3232
* [`mavros`](http://wiki.ros.org/mavros)
33-
* Periphery drivers for ROS ([GPIO](https://clover.coex.tech/en/gpio.html), [LED strip](https://clover.coex.tech/en/leds.html), etc)
33+
* Periphery drivers for ROS ([GPIO](https://clovercoex.tech/en/gpio.html), [LED strip](https://clovercoex.tech/en/leds.html), etc)
3434
* `aruco_pose` package for marker-assisted navigation
3535
* `clover` package for autonomous drone control
3636

37-
API description for autonomous flights is available [on GitBook](https://clover.coex.tech/en/simple_offboard.html).
37+
API description for autonomous flights is available [on GitBook](https://clovercoex.tech/en/simple_offboard.html).
3838

3939
For manual package installation and running see [`clover` package documentation](clover/README.md).
4040

book.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"blank": true
3030
},
3131
"sitemap": {
32-
"hostname": "https://clover.coex.tech"
32+
"hostname": "https://clovercoex.tech"
3333
},
3434
"toolbar": {
3535
"buttons":

clover/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ To start connection to the flight controller, use:
5050
roslaunch clover clover.launch
5151
```
5252

53-
For the simulation information see the [corresponding article](https://clover.coex.tech/en/simulation.html).
53+
For the simulation information see the [corresponding article](https://clovercoex.tech/en/simulation.html).
5454

5555
> Note that the package is configured to connect to `/dev/px4fmu` by default (see [previous section](#manual-installation)). Install udev rules or specify path to your FCU device in `mavros.launch`.

clover/examples/camera.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Information: https://clover.coex.tech/camera
1+
# Information: https://clovercoex.tech/camera
22

33
# Example on basic working with the camera and image processing:
44

clover/examples/flight.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Information: https://clover.coex.tech/programming
1+
# Information: https://clovercoex.tech/programming
22

33
import rospy
44
from clover import srv

clover/examples/flight_marker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Information: https://clover.coex.tech/aruco
1+
# Information: https://clovercoex.tech/aruco
22

33
import rospy
44
from clover import srv

clover/examples/get_telemetry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Information: https://clover.coex.tech/en/simple_offboard.html#gettelemetry
1+
# Information: https://clovercoex.tech/en/simple_offboard.html#gettelemetry
22

33
import rospy
44
from clover import srv

clover/examples/gps.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Information: https://clover.coex.tech/en/simple_offboard.html#navigateglobal
1+
# Information: https://clovercoex.tech/en/simple_offboard.html#navigateglobal
22

33
import rospy
44
from clover import srv
@@ -16,7 +16,7 @@
1616
set_rates = rospy.ServiceProxy('set_rates', srv.SetRates)
1717
land = rospy.ServiceProxy('land', Trigger)
1818

19-
# https://clover.coex.tech/en/snippets.html#wait_arrival
19+
# https://clovercoex.tech/en/snippets.html#wait_arrival
2020
def wait_arrival(tolerance=0.2):
2121
while not rospy.is_shutdown():
2222
telem = get_telemetry(frame_id='navigate_target')
@@ -27,7 +27,7 @@ def wait_arrival(tolerance=0.2):
2727
start = get_telemetry()
2828

2929
if math.isnan(start.lat):
30-
raise Exception('No global position, install and configure GPS sensor: https://clover.coex.tech/gps')
30+
raise Exception('No global position, install and configure GPS sensor: https://clovercoex.tech/gps')
3131

3232
print('Start point global position: lat={}, lon={}'.format(start.lat, start.lon))
3333

clover/examples/leds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Information: https://clover.coex.tech/led
1+
# Information: https://clovercoex.tech/led
22

33
import rospy
44
from clover.srv import SetLEDEffect

0 commit comments

Comments
 (0)