Compare commits
77 Commits
fix-builde
...
web-improv
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9c1d854223 | ||
|
|
1f2ba65669 | ||
|
|
27be9eb281 | ||
|
|
f8222e1028 | ||
|
|
dce0c00773 | ||
|
|
dc8c5d9db9 | ||
|
|
261faaec0e | ||
|
|
dbd9a4a238 | ||
|
|
80d446e857 | ||
|
|
609a7ab014 | ||
|
|
c0d9bd7ef0 | ||
|
|
cdd6000c58 | ||
|
|
480a9b1f0a | ||
|
|
4943cb94b0 | ||
|
|
e0ca1272bb | ||
|
|
cb88537ddc | ||
|
|
659380c575 | ||
|
|
b4a8119bd7 | ||
|
|
c72eb1b440 | ||
|
|
f825901a19 | ||
|
|
200c5dea57 | ||
|
|
0504569b0c | ||
|
|
9829ee2e72 | ||
|
|
dfdaf3aa4f | ||
|
|
63f979c2ff | ||
|
|
b8dafce816 | ||
|
|
19e0b94fda | ||
|
|
957e57692c | ||
|
|
0d49c426eb | ||
|
|
b1f104ce5e | ||
|
|
80177b3ea4 | ||
|
|
3223d3817e | ||
|
|
4612f7e9f0 | ||
|
|
a026410fdb | ||
|
|
dd1a212cd0 | ||
|
|
20b6824012 | ||
|
|
6f6933234c | ||
|
|
3edafbef97 | ||
|
|
7740a136ce | ||
|
|
380112de6a | ||
|
|
79f5c6d0e7 | ||
|
|
e207b55966 | ||
|
|
043a4ad67c | ||
|
|
dbeb2b354d | ||
|
|
6134965f2a | ||
|
|
976bb7aeea | ||
|
|
faa0e6d8d2 | ||
|
|
d02151aedd | ||
|
|
7f0606397e | ||
|
|
fb2842a0a1 | ||
|
|
9a9621ab4b | ||
|
|
171804149c | ||
|
|
0cb7494023 | ||
|
|
e0a81e0ca8 | ||
|
|
1e5e9cdc43 | ||
|
|
5e315c477e | ||
|
|
f45000f595 | ||
|
|
48a1385a1a | ||
|
|
765c470baa | ||
|
|
fd69beed7b | ||
|
|
1d4179bccf | ||
|
|
0b2095bbb8 | ||
|
|
a0436fbcc5 | ||
|
|
aee867d6bc | ||
|
|
3c078ab92f | ||
|
|
d780aedb88 | ||
|
|
a16d9d80fc | ||
|
|
10d250d96a | ||
|
|
acdcf20392 | ||
|
|
796d614f5e | ||
|
|
f8de7443d7 | ||
|
|
5c3ffdbeb6 | ||
|
|
1c732137c6 | ||
|
|
345aad9e64 | ||
|
|
02c67ea71a | ||
|
|
050e0fedb9 | ||
|
|
0e9b54934c |
@@ -77,6 +77,7 @@ jobs:
|
||||
- sudo sh -c "echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | debconf-set-selections"
|
||||
- sudo apt update && sudo apt install -y calibre msttcorefonts
|
||||
- npm install gitbook-cli -g
|
||||
- gitbook fetch 3.2.3 && npm i npm@3.10.10 --prefix=~/.gitbook/versions/3.2.3/ # fixing https://travis-ci.org/github/CopterExpress/clover/jobs/766541125#L932
|
||||
- npm install markdownlint-cli -g
|
||||
- npm install svgexport -g
|
||||
- gitbook -V
|
||||
@@ -87,7 +88,13 @@ jobs:
|
||||
- ./check_unused_assets.py
|
||||
- gitbook install
|
||||
- gitbook build
|
||||
- gitbook pdf ./ _book/clover.pdf
|
||||
- for i in 1 2 3 4; do gitbook pdf ./ _book/clover.pdf && break || sleep 1; done
|
||||
- sudo apt-get install ghostscript
|
||||
- gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/default -dNOPAUSE -dQUIET -dBATCH -dDetectDuplicateImages -dCompressFonts=true -r150 -sOutputFile=_book/clover_ru_compressed.pdf _book/clover_ru.pdf
|
||||
- gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/default -dNOPAUSE -dQUIET -dBATCH -dDetectDuplicateImages -dCompressFonts=true -r150 -sOutputFile=_book/clover_en_compressed.pdf _book/clover_en.pdf
|
||||
- rm _book/clover_ru.pdf && mv _book/clover_ru_compressed.pdf _book/clover_ru.pdf
|
||||
- rm _book/clover_en.pdf && mv _book/clover_en_compressed.pdf _book/clover_en.pdf
|
||||
- ls -lah _book/clover*.pdf
|
||||
deploy:
|
||||
provider: pages
|
||||
local_dir: _book
|
||||
|
||||
@@ -21,6 +21,7 @@ Clover drone is used on a wide range of educational events, including [Copter Ha
|
||||
Preconfigured image for Raspberry Pi with installed and configured software, ready to fly, is available [in the Releases section](https://github.com/CopterExpress/clover/releases).
|
||||
|
||||
[](https://travis-ci.org/CopterExpress/clover)
|
||||

|
||||
|
||||
Image features:
|
||||
|
||||
|
||||
@@ -111,7 +111,7 @@ generate_messages(
|
||||
|
||||
## Generate dynamic reconfigure parameters in the 'cfg' folder
|
||||
generate_dynamic_reconfigure_options(
|
||||
cfg/DetectorParams.cfg
|
||||
cfg/Detector.cfg
|
||||
)
|
||||
|
||||
###################################
|
||||
|
||||
11
builder/assets/examples/get_telemetry.py
Normal file
@@ -0,0 +1,11 @@
|
||||
# Information: https://clover.coex.tech/en/simple_offboard.html#gettelemetry
|
||||
|
||||
import rospy
|
||||
from clover import srv
|
||||
|
||||
rospy.init_node('flight')
|
||||
|
||||
get_telemetry = rospy.ServiceProxy('get_telemetry', srv.GetTelemetry)
|
||||
|
||||
# Print drone's state
|
||||
print(get_telemetry())
|
||||
@@ -65,7 +65,7 @@ echo_stamp "#6 Turn on UART"
|
||||
# https://github.com/RPi-Distro/raspi-config/pull/75
|
||||
/usr/bin/raspi-config nonint do_serial 1
|
||||
/usr/bin/raspi-config nonint set_config_var enable_uart 1 /boot/config.txt
|
||||
/usr/bin/raspi-config nonint set_config_var dtoverlay pi3-disable-bt /boot/config.txt
|
||||
echo dtoverlay=pi3-disable-bt >> /boot/config.txt
|
||||
systemctl disable hciuart.service
|
||||
|
||||
# After adding to Raspbian OS
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
# copies or substantial portions of the Software.
|
||||
#
|
||||
|
||||
set -ex # Exit immidiately on non-zero result
|
||||
set -e # Exit immidiately on non-zero result
|
||||
|
||||
REPO=$1
|
||||
REF=$2
|
||||
@@ -76,9 +76,11 @@ my_travis_retry sudo -u pi rosdep update
|
||||
|
||||
export ROS_IP='127.0.0.1' # needed for running tests
|
||||
|
||||
echo_stamp "Reconfiguring Clover repository for simplier unshallowing"
|
||||
cd /home/pi/catkin_ws/src/clover
|
||||
git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
|
||||
# echo_stamp "Reconfiguring Clover repository for simplier unshallowing" # TODO: bring back
|
||||
# cd /home/pi/catkin_ws/src/clover
|
||||
# git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
|
||||
echo_stamp "Remove .git from Clover to reduce the size"
|
||||
rm -rf /home/pi/catkin_ws/src/clover/.git # TODO: remove
|
||||
|
||||
echo_stamp "Build and install Clover"
|
||||
cd /home/pi/catkin_ws
|
||||
@@ -99,6 +101,7 @@ rm -rf build # remove build artifacts
|
||||
echo_stamp "Build Clover documentation"
|
||||
cd /home/pi/catkin_ws/src/clover
|
||||
NPM_CONFIG_UNSAFE_PERM=true npm install gitbook-cli -g
|
||||
NPM_CONFIG_UNSAFE_PERM=true gitbook fetch 3.2.3 && npm i npm@3.10.10 --prefix=~/.gitbook/versions/3.2.3/ # fixing https://travis-ci.org/github/CopterExpress/clover/jobs/766541125#L932
|
||||
NPM_CONFIG_UNSAFE_PERM=true gitbook install
|
||||
gitbook build
|
||||
touch node_modules/CATKIN_IGNORE docs/CATKIN_IGNORE _book/CATKIN_IGNORE clover/www/CATKIN_IGNORE apps/CATKIN_IGNORE # ignore documentation files by catkin
|
||||
|
||||
@@ -82,9 +82,7 @@ apt-get update
|
||||
|
||||
# Let's retry fetching those packages several times, just in case
|
||||
echo_stamp "Software installing"
|
||||
apt-cache policy cmake
|
||||
apt-cache policy cmake-data
|
||||
my_travis_retry apt-get install --no-install-recommends -y cmake-data=3.13.4-1 cmake=3.13.4-1
|
||||
my_travis_retry apt-get install --no-install-recommends -y cmake-data=3.13.4-1 cmake=3.13.4-1 # FIXME: using older CMake due to https://travis-ci.org/github/CopterExpress/clover/jobs/764367665#L6984
|
||||
my_travis_retry apt-get install --no-install-recommends -y \
|
||||
unzip \
|
||||
zip \
|
||||
@@ -97,6 +95,7 @@ lsof \
|
||||
git \
|
||||
dnsmasq \
|
||||
tmux \
|
||||
tree \
|
||||
vim \
|
||||
libjpeg8 \
|
||||
tcpdump \
|
||||
@@ -129,7 +128,7 @@ curl https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip2.py
|
||||
python3 get-pip.py
|
||||
python get-pip2.py
|
||||
rm get-pip.py get-pip2.py
|
||||
my_travis_retry pip install --upgrade pip
|
||||
#my_travis_retry pip install --upgrade pip
|
||||
#my_travis_retry pip3 install --upgrade pip
|
||||
|
||||
echo_stamp "Make sure both pip and pip3 are installed"
|
||||
@@ -150,6 +149,7 @@ my_travis_retry pip install --prefer-binary rpi_ws281x
|
||||
echo_stamp "Setup Monkey"
|
||||
mv /etc/monkey/sites/default /etc/monkey/sites/default.orig
|
||||
mv /root/monkey /etc/monkey/sites/default
|
||||
sed -i 's/SymLink Off/SymLink On/' /etc/monkey/monkey.conf
|
||||
systemctl enable monkey.service
|
||||
|
||||
echo_stamp "Install Node.js"
|
||||
|
||||
@@ -41,3 +41,6 @@ pip install --upgrade pytest
|
||||
cd /root/catkin_ws
|
||||
source devel/setup.bash
|
||||
catkin_make run_tests && catkin_test_results
|
||||
|
||||
# Step 5: Install packages
|
||||
catkin_make install
|
||||
|
||||
@@ -43,6 +43,8 @@ rosversion aruco_pose
|
||||
rosversion vl53l1x
|
||||
rosversion mavros
|
||||
rosversion mavros_extras
|
||||
rosversion ws281x
|
||||
rosversion led_msgs
|
||||
rosversion dynamic_reconfigure
|
||||
rosversion tf2_web_republisher
|
||||
rosversion compressed_image_transport
|
||||
|
||||
@@ -11,8 +11,7 @@
|
||||
<arg name="rangefinder_vl53l1x" default="true"/>
|
||||
<arg name="led" default="true"/>
|
||||
<arg name="blocks" default="false"/>
|
||||
<arg name="rc" default="true"/>
|
||||
<arg name="shell" default="true"/>
|
||||
<arg name="rc" default="false"/>
|
||||
|
||||
<arg name="simulator" default="false"/> <!-- flag that we are operating on a simulated drone -->
|
||||
|
||||
@@ -91,9 +90,6 @@
|
||||
<param name="use_fake_gcs" value="false"/>
|
||||
</node>
|
||||
|
||||
<!-- Shell access through ROS service -->
|
||||
<node name="shell" pkg="clover" type="shell" output="screen" if="$(arg shell)"/>
|
||||
|
||||
<!-- Update static directory -->
|
||||
<node pkg="roswww_static" name="roswww_static" type="main.py" clear_params="true">
|
||||
<param name="default_package" value="clover"/>
|
||||
|
||||
@@ -6,13 +6,16 @@
|
||||
<arg name="viz" default="true"/>
|
||||
<arg name="respawn" default="true"/>
|
||||
<arg name="distance_sensor_remap" default="rangefinder/range"/>
|
||||
<arg name="usb_device" default="/dev/px4fmu"/>
|
||||
<arg name="prefix" default="" unless="$(eval fcu_conn == 'usb')"/>
|
||||
<arg name="prefix" default="rosrun clover waitfile $(arg usb_device)" if="$(eval fcu_conn == 'usb')"/>
|
||||
|
||||
<node pkg="mavros" type="mavros_node" name="mavros" required="false" clear_params="true" respawn="$(arg respawn)" unless="$(eval fcu_conn == 'none')" respawn_delay="1" output="screen">
|
||||
<node pkg="mavros" type="mavros_node" name="mavros" launch-prefix="$(arg prefix)" required="false" clear_params="true" respawn="$(arg respawn)" unless="$(eval fcu_conn == 'none')" respawn_delay="1" output="screen">
|
||||
<!-- UART connection -->
|
||||
<param name="fcu_url" value="/dev/ttyAMA0:921600" if="$(eval fcu_conn is None or fcu_conn == 'uart')"/>
|
||||
|
||||
<!-- USB connection -->
|
||||
<param name="fcu_url" value="/dev/px4fmu" if="$(eval fcu_conn == 'usb')"/>
|
||||
<param name="fcu_url" value="$(arg usb_device)" if="$(eval fcu_conn == 'usb')"/>
|
||||
|
||||
<!-- sitl before PX4 1.9.0 -->
|
||||
<param name="fcu_url" value="udp://@$(arg fcu_ip):14557" if="$(eval fcu_conn == 'udp')"/>
|
||||
|
||||
@@ -206,7 +206,7 @@ private:
|
||||
} catch (const tf2::TransformException& e) {
|
||||
// Invalidate previous frame
|
||||
prev_.release();
|
||||
return;
|
||||
goto publish_debug;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -218,6 +218,10 @@ private:
|
||||
flow_.quality = (uint8_t)(response * 255);
|
||||
flow_pub_.publish(flow_);
|
||||
|
||||
prev_ = curr_.clone();
|
||||
prev_stamp_ = msg->header.stamp;
|
||||
|
||||
publish_debug:
|
||||
// Publish debug image
|
||||
if (img_pub_.getNumSubscribers() > 0) {
|
||||
// publish debug image
|
||||
@@ -234,12 +238,9 @@ private:
|
||||
static geometry_msgs::TwistStamped velo;
|
||||
velo.header.stamp = msg->header.stamp;
|
||||
velo.header.frame_id = fcu_frame_id_;
|
||||
velo.twist.angular.x = flow_.integrated_x / integration_time.toSec();
|
||||
velo.twist.angular.y = flow_.integrated_y / integration_time.toSec();
|
||||
velo.twist.angular.x = flow_fcu.vector.x / integration_time.toSec();
|
||||
velo.twist.angular.y = flow_fcu.vector.y / integration_time.toSec();
|
||||
velo_pub_.publish(velo);
|
||||
|
||||
prev_ = curr_.clone();
|
||||
prev_stamp_ = msg->header.stamp;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
9
clover/src/waitfile
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# $ ./waitfile <file> <command> <args...>
|
||||
# wait until <file> appears and then invoke <command> with <args>
|
||||
|
||||
echo "wait for file $1"
|
||||
while [ ! -e "$1" ]; do sleep 1; done;
|
||||
echo "file $1 appeared"
|
||||
"${@:2}"
|
||||
@@ -28,19 +28,3 @@ def test_simple_offboard_services_available():
|
||||
def test_web_video_server(node):
|
||||
import urllib2
|
||||
urllib2.urlopen("http://localhost:8080").read()
|
||||
|
||||
def test_shell(node):
|
||||
execute = rospy.ServiceProxy('exec', srv.Execute)
|
||||
execute.wait_for_service(5)
|
||||
|
||||
res = execute(cmd='echo foo')
|
||||
assert res.code == 0
|
||||
assert res.output == 'foo\n'
|
||||
|
||||
res = execute(cmd='foo')
|
||||
assert res.code == 32512
|
||||
assert res.output == ''
|
||||
|
||||
res = execute(cmd='ls foo')
|
||||
assert res.code == 512
|
||||
assert res.output == ''
|
||||
|
||||
1
clover/www/clover.err
Symbolic link
@@ -0,0 +1 @@
|
||||
/tmp/clover.err
|
||||
1
clover/www/clover_version
Symbolic link
@@ -0,0 +1 @@
|
||||
/etc/clover_version
|
||||
@@ -1,27 +1,35 @@
|
||||
<style>
|
||||
body { font-family: sans-serif; }
|
||||
main { max-width: 600px; margin: 50px auto; }
|
||||
</style>
|
||||
|
||||
<title>Clover Drone Kit Tools</title>
|
||||
|
||||
<h1>Clover Drone Kit Tools</h1>
|
||||
<main>
|
||||
<h1>Clover Drone Kit Tools</h1>
|
||||
|
||||
<ul>
|
||||
<li><a href="docs">View documentation</a> (snapshot of <a href="https://clover.coex.tech">clover.coex.tech</a>)</li>
|
||||
<li><a href="" id="wvs">View image topics</a> (<code>web_video_server</code>)</li>
|
||||
<li><a href="" id="butterfly">Open web terminal</a> (<code>Butterfly</code>)</li>
|
||||
<li><a href="viz.html">View 3D visualization</a> (<code>ros3djs</code>)</li>
|
||||
<li><a href="aruco_map.html">3D visualization for markers map</a> (<code>ros3djs</code>)</li>
|
||||
<li><a href="../clover_blocks/">Blocks programming</a> (<code>Blockly</code>)</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li><a href="docs">View documentation</a> (snapshot of <a href="https://clover.coex.tech">clover.coex.tech</a>)</li>
|
||||
<li><a href="" id="wvs">View image topics</a> (<code>web_video_server</code>)</li>
|
||||
<li><a href="" id="butterfly">Open web terminal</a> (<code>Butterfly</code>)</li>
|
||||
<li><a href="viz.html">View 3D visualization</a> (<code>ros3djs</code>)</li>
|
||||
<li><a href="aruco_map.html">3D visualization for markers map</a> (<code>ros3djs</code>)</li>
|
||||
<li><a href="../clover_blocks/">Blocks programming</a> (<code>Blockly</code>)</li>
|
||||
<li><a href="clover.err">Clover console</a> (<code>/tmp/clover.err</code>)</li>
|
||||
</ul>
|
||||
|
||||
<div class="version"></div>
|
||||
<div class="version"></div>
|
||||
</main>
|
||||
|
||||
<script src="js/roslib.js"></script>
|
||||
<script type="text/javascript">
|
||||
document.querySelector("#wvs").href = location.protocol + '//' + location.hostname + ':8080';
|
||||
document.querySelector("#butterfly").href = location.protocol + '//' + location.hostname + ':57575';
|
||||
|
||||
// Determine image version
|
||||
var ros = new ROSLIB.Ros({ url: 'ws://' + location.hostname + ':9090' });
|
||||
var exec = new ROSLIB.Service({ ros: ros, name : '/exec', serviceType : 'clover/Execute' });
|
||||
exec.callService(new ROSLIB.ServiceRequest({ cmd: 'cat /etc/clover_version' }), function(result) {
|
||||
document.querySelector('.version').innerHTML = 'Version: ' + result.output;
|
||||
fetch('clover_version').then(function(response) {
|
||||
if (response.status !== 200) return;
|
||||
response.text().then(function(text) {
|
||||
document.querySelector('.version').innerHTML = 'Version: <code>' + text + '</code>';
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
@@ -11,7 +11,8 @@
|
||||
from __future__ import print_function
|
||||
|
||||
import rospy
|
||||
import os
|
||||
import os, sys
|
||||
import traceback
|
||||
import threading
|
||||
import re
|
||||
import uuid
|
||||
@@ -116,7 +117,12 @@ def run(req):
|
||||
rospy.loginfo('Program forced to stop')
|
||||
except Exception as e:
|
||||
rospy.logerr(str(e))
|
||||
error_pub.publish(str(e))
|
||||
traceback.print_exc()
|
||||
etype, value, tb = sys.exc_info()
|
||||
fmt = traceback.format_exception(etype, value, tb)
|
||||
fmt.pop(1) # remove 'clover_blocks' file frame
|
||||
exc_info = ''.join(fmt)
|
||||
error_pub.publish(str(e) + '\n\n' + exc_info)
|
||||
|
||||
rospy.loginfo('Program terminated')
|
||||
running_lock.release()
|
||||
|
||||
@@ -52,7 +52,7 @@ target_compile_options(throttling_camera PRIVATE -std=c++11)
|
||||
add_dependencies(throttling_camera ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
|
||||
|
||||
install(DIRECTORY launch DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})
|
||||
install(DIRECTORY meshes DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})
|
||||
install(DIRECTORY models DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})
|
||||
install(DIRECTORY resources DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})
|
||||
|
||||
catkin_install_python(PROGRAMS scripts/aruco_gen
|
||||
|
||||
BIN
docs/assets/Hardaton_Quidditch/1.jpg
Normal file
|
After Width: | Height: | Size: 141 KiB |
BIN
docs/assets/Hardaton_Quidditch/2.jpg
Normal file
|
After Width: | Height: | Size: 143 KiB |
BIN
docs/assets/Hardaton_Quidditch/3.jpg
Normal file
|
After Width: | Height: | Size: 137 KiB |
BIN
docs/assets/Hardaton_Quidditch/4.jpg
Normal file
|
After Width: | Height: | Size: 141 KiB |
BIN
docs/assets/Hardaton_Quidditch/5.jpg
Normal file
|
After Width: | Height: | Size: 102 KiB |
BIN
docs/assets/Hardaton_Quidditch/6.jpg
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
docs/assets/Hardaton_Quidditch/7.jpg
Normal file
|
After Width: | Height: | Size: 87 KiB |
BIN
docs/assets/Hardaton_Quidditch/8.jpg
Normal file
|
After Width: | Height: | Size: 46 KiB |
BIN
docs/assets/Hardaton_Quidditch/Hardaton.jpg
Normal file
|
After Width: | Height: | Size: 96 KiB |
BIN
docs/assets/Hardaton_Quidditch/team.jpg
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
docs/assets/advancedClover1.png
Normal file
|
After Width: | Height: | Size: 159 KiB |
BIN
docs/assets/advancedClover2.png
Normal file
|
After Width: | Height: | Size: 329 KiB |
BIN
docs/assets/advancedClover3.png
Normal file
|
After Width: | Height: | Size: 248 KiB |
BIN
docs/assets/amls/data_structure.png
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
docs/assets/amls/drone_meme.jpg
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
docs/assets/amls/follow_the_white_rabbit.png
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
docs/assets/amls/gimbal_assembly.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
docs/assets/amls/gimbal_camera_mount.png
Normal file
|
After Width: | Height: | Size: 92 KiB |
BIN
docs/assets/amls/gimbal_filter_mount.png
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
docs/assets/amls/gimbal_plane_mount.png
Normal file
|
After Width: | Height: | Size: 120 KiB |
BIN
docs/assets/amls/grabbing_system_1.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
docs/assets/amls/grabbing_system_2.png
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
BIN
docs/assets/amls/liberty-x_front_cutout_2_small_gps.png
Normal file
|
After Width: | Height: | Size: 190 KiB |
BIN
docs/assets/amls/liberty-x_side_cutout_2_small.png
Normal file
|
After Width: | Height: | Size: 182 KiB |
BIN
docs/assets/amls/light_sensors.png
Normal file
|
After Width: | Height: | Size: 149 KiB |
BIN
docs/assets/amls/logo_book.png
Normal file
|
After Width: | Height: | Size: 148 KiB |
BIN
docs/assets/amls/mpu6050_gyro.png
Normal file
|
After Width: | Height: | Size: 149 KiB |
BIN
docs/assets/amls/ms5611_barometer.png
Normal file
|
After Width: | Height: | Size: 60 KiB |
BIN
docs/assets/amls/platform_roof.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
docs/assets/amls/platform_side_transparent.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
docs/assets/anticorona/camera.jpg
Normal file
|
After Width: | Height: | Size: 122 KiB |
BIN
docs/assets/anticorona/charging_drone.jpg
Normal file
|
After Width: | Height: | Size: 109 KiB |
BIN
docs/assets/anticorona/drone_assembled.jpg
Normal file
|
After Width: | Height: | Size: 59 KiB |
BIN
docs/assets/anticorona/drone_frame.jpg
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
docs/assets/anticorona/drone_with_jetson.jpg
Normal file
|
After Width: | Height: | Size: 60 KiB |
BIN
docs/assets/anticorona/human_view.jpg
Normal file
|
After Width: | Height: | Size: 89 KiB |
BIN
docs/assets/anticorona/masks.jpg
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
docs/assets/anticorona/release.jpg
Normal file
|
After Width: | Height: | Size: 93 KiB |
BIN
docs/assets/anticorona/release_Cad.jpg
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
docs/assets/anticorona/robot_view.jpg
Normal file
|
After Width: | Height: | Size: 144 KiB |
|
Before Width: | Height: | Size: 415 KiB After Width: | Height: | Size: 46 KiB |
BIN
docs/assets/copterhack2021/1.jpg
Normal file
|
After Width: | Height: | Size: 79 KiB |
BIN
docs/assets/copterhack2021/2.jpg
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
docs/assets/ddrone/final.gif
Normal file
|
After Width: | Height: | Size: 669 KiB |
BIN
docs/assets/ddrone/full_holder.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
docs/assets/ddrone/full_holder_in_real.jpg
Normal file
|
After Width: | Height: | Size: 488 KiB |
BIN
docs/assets/ddrone/holder.png
Normal file
|
After Width: | Height: | Size: 61 KiB |
BIN
docs/assets/ddrone/instruction.png
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
docs/assets/ddrone/pressing_mechanism.png
Normal file
|
After Width: | Height: | Size: 46 KiB |
BIN
docs/assets/ddrone/pressing_mechanism_in_real.jpg
Normal file
|
After Width: | Height: | Size: 421 KiB |
BIN
docs/assets/ddrone/screen_2.png
Normal file
|
After Width: | Height: | Size: 50 KiB |
BIN
docs/assets/dromap/1.2fig.png
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
docs/assets/dromap/1.3fig.png
Normal file
|
After Width: | Height: | Size: 63 KiB |
BIN
docs/assets/dromap/3.jpeg
Normal file
|
After Width: | Height: | Size: 125 KiB |
BIN
docs/assets/dromap/HLA.jpg
Normal file
|
After Width: | Height: | Size: 144 KiB |
BIN
docs/assets/dromap/Maze1.jpg
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
docs/assets/dromap/Picture1.png
Normal file
|
After Width: | Height: | Size: 60 KiB |
BIN
docs/assets/dromap/algorth_logic.png
Normal file
|
After Width: | Height: | Size: 165 KiB |
BIN
docs/assets/dromap/hectortest1.jpg
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
docs/assets/dromap/hectortest2.jpg
Normal file
|
After Width: | Height: | Size: 102 KiB |
4202
docs/assets/dxf/4.2/grip_spacer.dxf
Normal file
BIN
docs/assets/dxf/4.2/grip_spacer.png
Normal file
|
After Width: | Height: | Size: 8.7 KiB |
BIN
docs/assets/easytofly/logo.png
Normal file
|
After Width: | Height: | Size: 214 KiB |
BIN
docs/assets/easytofly/pcb_scan.jpg
Normal file
|
After Width: | Height: | Size: 107 KiB |
BIN
docs/assets/easytofly/sensors.jpg
Normal file
|
After Width: | Height: | Size: 46 KiB |
BIN
docs/assets/generative-design-frame/f.JPG
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
docs/assets/generative-design-frame/obstacle.png
Normal file
|
After Width: | Height: | Size: 110 KiB |
BIN
docs/assets/generative-design-frame/p1.JPG
Normal file
|
After Width: | Height: | Size: 296 KiB |
BIN
docs/assets/generative-design-frame/p21.JPG
Normal file
|
After Width: | Height: | Size: 194 KiB |
BIN
docs/assets/generative-design-frame/p22.jpg
Normal file
|
After Width: | Height: | Size: 189 KiB |
BIN
docs/assets/generative-design-frame/p23.jpg
Normal file
|
After Width: | Height: | Size: 208 KiB |
BIN
docs/assets/generative-design-frame/p31.jpg
Normal file
|
After Width: | Height: | Size: 113 KiB |
BIN
docs/assets/generative-design-frame/p32.jpg
Normal file
|
After Width: | Height: | Size: 133 KiB |
BIN
docs/assets/generative-design-frame/preservedgeometry.png
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
docs/assets/oktapadzog/24-5.jpg
Normal file
|
After Width: | Height: | Size: 53 KiB |
BIN
docs/assets/oktapadzog/Pixhawk.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
docs/assets/oktapadzog/frame_assembly_4.png
Normal file
|
After Width: | Height: | Size: 61 KiB |
BIN
docs/assets/oktapadzog/image.gif
Normal file
|
After Width: | Height: | Size: 671 KiB |
BIN
docs/assets/oktapadzog/octo.png
Normal file
|
After Width: | Height: | Size: 236 KiB |
BIN
docs/assets/race_timing_sys_copterhack/diagram.jpg
Normal file
|
After Width: | Height: | Size: 47 KiB |