Skip to content

Commit

Permalink
manual clone as static html into /docs for https://opensolo.github.io…
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbuzz committed Nov 28, 2023
1 parent 3f5ed12 commit a618580
Show file tree
Hide file tree
Showing 510 changed files with 74,164 additions and 2,213 deletions.
2 changes: 1 addition & 1 deletion book/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ Navigate using the sidebar or the "next page" arrows to begin.

## License

The Solo Development Guide is released as [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/). See our [Github Repository](https://github.com/3drobotics/solodevguide) for more details.
The Solo Development Guide is released as [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/). See our [Github Repository](https://github.com/opensolo/solodevguide) for more details.
2 changes: 1 addition & 1 deletion book/advanced-logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ The system logs directory (`/log` on both Solo and the Controller) contains all

Logs of a particular type share the same prefix (e.g. `solo.tlog`) and have a numeric suffix to indicate how old they are (e.g. `solo.tlog` is the most recent log, `solo.tlog.1` is the second most recent log, etc.). When a new log is created all logs are pushed down one number. At most, 20 logs are saved!

The main log types are listed below (we hope provide information about the other logs [as it becomes available](https://github.com/3drobotics/solodevguide/issues/224)).
The main log types are listed below (we hope provide information about the other logs [as it becomes available](https://github.com/opensolo/solodevguide/issues/224)).


### Solo Controller
Expand Down
8 changes: 4 additions & 4 deletions book/example-get-started.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Running the Examples

This guide contains a number of examples showing how to use DroneKit on Solo. These are stored on Github in separate folders under
[solodevguide/examples](https://github.com/3drobotics/solodevguide/tree/master/examples).
[solodevguide/examples](https://github.com/opensolo/solodevguide/tree/master/examples).

The examples can be run locally from your development computer to communicate with either Solo or a simulated copter, or they can be run on Solo itself.

Expand All @@ -15,7 +15,7 @@ The following instructions can be used to package each of the examples on a host
<div class="host-code"></div>

```
git clone https://github.com/3drobotics/solodevguide
git clone https://github.com/opensolo/solodevguide
cd solodevguide/examples/helloworld
```

Expand Down Expand Up @@ -57,7 +57,7 @@ The following instructions explain how to run the examples locally from a host P
<div class="host-code"></div>

```
git clone https://github.com/3drobotics/solodevguide
git clone https://github.com/opensolo/solodevguide
cd solodevguide/examples/helloworld
```

Expand Down Expand Up @@ -85,7 +85,7 @@ The following instructions explain how to run the examples locally from a host P
<div class="host-code"></div>

```
git clone https://github.com/3drobotics/solodevguide
git clone https://github.com/opensolo/solodevguide
cd solodevguide/examples/helloworld
```

Expand Down
4 changes: 2 additions & 2 deletions book/example-helloworld.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ To run the example locally:
<div class="host-code"></div>

```
git clone https://github.com/3drobotics/solodevguide
git clone https://github.com/opensolo/solodevguide
cd solodevguide/examples/helloworld
```

Expand Down Expand Up @@ -134,7 +134,7 @@ To run the example on Solo
solo script pack
```

The libraries that are bundled are defined in the [requirements.txt](https://github.com/3drobotics/solodevguide/blob/master/examples/helloworld/requirements.txt) file in the example directory. For this example DroneKit itself is the only dependency:
The libraries that are bundled are defined in the [requirements.txt](https://github.com/opensolo/solodevguide/blob/master/examples/helloworld/requirements.txt) file in the example directory. For this example DroneKit itself is the only dependency:

<div class="any-code"></div>

Expand Down
2 changes: 1 addition & 1 deletion book/example-opencv.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Detect faces using the onboard camera in Solo.

**NOTE:** To run this example, please `git clone` or download all the files in the [opencv folder](https://github.com/3drobotics/solodevguide/tree/master/examples/opencv) on Github.
**NOTE:** To run this example, please `git clone` or download all the files in the [opencv folder](https://github.com/opensolo/solodevguide/tree/master/examples/opencv) on Github.

## Running a Custom OpenCV example

Expand Down
2 changes: 1 addition & 1 deletion book/example-skywriter.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Move solo around using high-level directional commands.

**NOTE:** To run this example, please `git clone` or download all the files in the [skywriter folder](https://github.com/3drobotics/solodevguide/tree/master/examples/skywriter) on Github.
**NOTE:** To run this example, please `git clone` or download all the files in the [skywriter folder](https://github.com/opensolo/solodevguide/tree/master/examples/skywriter) on Github.

## High-level directional commands

Expand Down
4 changes: 2 additions & 2 deletions book/example-stillframe.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Capturing Stills and Video

**NOTE:** To run this example, please `git clone` or download all the files in the [stillframe folder](https://github.com/3drobotics/solodevguide/tree/master/examples/stillframe) on Github.
**NOTE:** To run this example, please `git clone` or download all the files in the [stillframe folder](https://github.com/opensolo/solodevguide/tree/master/examples/stillframe) on Github.

## Description of the server

Expand Down Expand Up @@ -30,7 +30,7 @@ The server is implemented using _[flask](http://flask.pocoo.org/)_, and should b
See [Bundling Python](advanced-python.html) for an explanation of the following steps.
</aside>

Clone the [solodevguide](https://github.com/3drobotics/solodevguide) repository and cd into the [examples/stillframe](https://github.com/3drobotics/solodevguide/tree/master/examples/stillframe) directory.
Clone the [solodevguide](https://github.com/opensolo/solodevguide) repository and cd into the [examples/stillframe](https://github.com/opensolo/solodevguide/tree/master/examples/stillframe) directory.

In this folder, prepare your environment by running:

Expand Down
2 changes: 1 addition & 1 deletion book/example-webserver.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Building upon the Hello World! example, let's run a web server from Solo that is

This can provide an alternate interface to Solo internals than just the Solo app. For example, you can create a ground control station written entirely in JavaScript and HTML, or allow a control panel for custom (or even fully autonomous) actions by Solo!

**NOTE:** To run this example, please `git clone` or download all the files in the [webserver folder](https://github.com/3drobotics/solodevguide/tree/master/examples/webserver) on Github.
**NOTE:** To run this example, please `git clone` or download all the files in the [webserver folder](https://github.com/opensolo/solodevguide/tree/master/examples/webserver) on Github.

## Using Flask

Expand Down
2 changes: 1 addition & 1 deletion book/starting-contributing.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing

Thanks for your interest in contributing to this guide! We accept contributions [via pull requests or new issues on our Github repository](https://github.com/3drobotics/solodevguide).
Thanks for your interest in contributing to this guide! We accept contributions [via pull requests or new issues on our Github repository](https://github.com/opensolo/solodevguide).

Our goal is to create an intuitive and comprehensive guide on how to work with Solo. Please submit issues you've had with the existing content, typographical corrections, or even whole new tutorials.

Expand Down
2 changes: 1 addition & 1 deletion book/starting-troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Factory resetting is the most reliable way to undo changes that break your system. To factory reset your Solo back to the "Gold Master" state, follow the [Factory Reset Procedure](http://3drobotics.com/kb/factory-reset/).

<aside class="note">
We are working on a programmatic way to [re-flash Solo and the Controller](https://github.com/3drobotics/solodevguide/issues/5).
We are working on a programmatic way to [re-flash Solo and the Controller](https://github.com/opensolo/solodevguide/issues/5).
</aside>

## Fetching System Logs
Expand Down
48 changes: 0 additions & 48 deletions docs/README.md

This file was deleted.

35 changes: 0 additions & 35 deletions docs/SUMMARY.md

This file was deleted.

Loading

0 comments on commit a618580

Please sign in to comment.