-
Notifications
You must be signed in to change notification settings - Fork 4
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
Showing
11 changed files
with
58 additions
and
7 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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import React from 'react'; | ||
import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; | ||
import { useColorMode } from '@docusaurus/theme-common'; | ||
|
||
const ImageByColorMode = ({lightModeImage, darkModeImage}) => { | ||
const { colorMode } = useColorMode(); | ||
|
||
return ( | ||
<img | ||
src={colorMode === 'dark' ? darkModeImage : lightModeImage} | ||
alt={colorMode === 'dark' ? darkModeImage : lightModeImage} | ||
style={{ width: '100%', height: 'auto' }} | ||
/> | ||
); | ||
}; | ||
|
||
export default ImageByColorMode; |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,9 +1,24 @@ | ||
![](./logos.png) | ||
import ImageByColorMode from '../components/ImageByColorMode/ImageByColorMode.js'; | ||
|
||
<ImageByColorMode | ||
lightModeImage="./img/mrs_f4f_large_light.png" | ||
darkModeImage="./img/mrs_f4f_large_dark.png" | ||
/> | ||
|
||
# MRS UAV System Documentation | ||
|
||
The MRS UAV System is an **open-source software framework** developed by the Multi-Robot Systems Group at Czech Technical University, designed to **support advanced R&D in autonomous UAV systems**, from speed racing and decentralized swarming to GNSS-denied coordination of multi-UAV formations. | ||
|
||
Please continue to <Button label="🔗 Documentation" link="/docs/introduction" /> to read more about the system usability and licensing and check out our latest updates in our <Button label="🔗 Blog" link="/blog" />. | ||
<div class="text_image_side_by_side"> | ||
|
||
<p> | ||
The MRS UAV System is an **open-source software framework** developed by the Multi-Robot Systems Group at Czech Technical University, designed to assist researchers in **advanced R&D in autonomous UAV systems**, from speed racing and decentralized swarming to GNSS-denied coordination of multi-UAV formations. | ||
</p> | ||
|
||
![UAV image](img/x500_real.jpg) | ||
|
||
</div> | ||
|
||
<Button label="📖 Documentation" link="/docs/introduction" /> will give you **context** and show you the **features** of our system. | ||
|
||
And don't forget to check out our <Button label="✏️ blog" link="/blog" /> to read about our latest updates. | ||
|
||
**Note**: Older versions of the documentation are preserved, however, the versions are not maintained anymore. | ||
**Note on versioning:** Older versions of the documentation are preserved, but not maintained anymore. |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.