new pages
This commit is contained in:
@@ -20,7 +20,7 @@
|
|||||||
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/styles/monokai-sublime.min.css">
|
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/styles/monokai-sublime.min.css">
|
||||||
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/highlight.min.js"></script>
|
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/highlight.min.js"></script>
|
||||||
<!-- Meta -->
|
<!-- Meta -->
|
||||||
<meta content="640 - Getting Started | Dark Water" property="og:title">
|
<meta content="640 - Advanced | Dark Water" property="og:title">
|
||||||
<meta content="Dark Water Foundation documentation." name="description">
|
<meta content="Dark Water Foundation documentation." name="description">
|
||||||
|
|
||||||
<!-- Initializer -->
|
<!-- Initializer -->
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
<meta name="viewport" content="width=device-width">
|
<meta name="viewport" content="width=device-width">
|
||||||
|
|
||||||
<title>640 - Wiring everythin up | Dark Water</title>
|
<title>640 - Wiring everything up | Dark Water</title>
|
||||||
|
|
||||||
<!-- Flatdoc -->
|
<!-- Flatdoc -->
|
||||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/styles/monokai-sublime.min.css">
|
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/styles/monokai-sublime.min.css">
|
||||||
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/highlight.min.js"></script>
|
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/highlight.min.js"></script>
|
||||||
<!-- Meta -->
|
<!-- Meta -->
|
||||||
<meta content="640 - Getting Started | Dark Water" property="og:title">
|
<meta content="640 - Wiring everything up | Dark Water" property="og:title">
|
||||||
<meta content="Dark Water Foundation documentation." name="description">
|
<meta content="Dark Water Foundation documentation." name="description">
|
||||||
|
|
||||||
<!-- Initializer -->
|
<!-- Initializer -->
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
# Wiring everything up
|
# Wiring everything up
|
||||||
|
|
||||||
## Attaching the power
|
## Attaching the power
|
||||||
## Attaching a Servo
|
## Attaching servos
|
||||||
## Attaching a motor
|
## Attaching motors
|
||||||
## Attaching an RC receiver
|
|
||||||
67
escapeadvanced.html
Normal file
67
escapeadvanced.html
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8'>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
|
<meta name="viewport" content="width=device-width">
|
||||||
|
|
||||||
|
<title>ESCAPE - Advanced | Dark Water</title>
|
||||||
|
|
||||||
|
<!-- Flatdoc -->
|
||||||
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
|
||||||
|
<script src='/flatdoc/legacy.js'></script>
|
||||||
|
<script src='/flatdoc/flatdoc.js'></script>
|
||||||
|
|
||||||
|
<!-- Flatdoc theme -->
|
||||||
|
<link href='/flatdoc/theme-dark/style.css?2' rel='stylesheet'>
|
||||||
|
<script src='/flatdoc/theme-dark/script.js?1'></script>
|
||||||
|
|
||||||
|
<!-- Highlight.js -->
|
||||||
|
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/styles/monokai-sublime.min.css">
|
||||||
|
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/highlight.min.js"></script>
|
||||||
|
<!-- Meta -->
|
||||||
|
<meta content="ESCAPE - Advanced | Dark Water" property="og:title">
|
||||||
|
<meta content="Dark Water Foundation documentation." name="description">
|
||||||
|
|
||||||
|
<!-- Initializer -->
|
||||||
|
<script>
|
||||||
|
Flatdoc.run({
|
||||||
|
fetcher: Flatdoc.github('darkwaterfoundation/docs', 'escapeadvanced.md')
|
||||||
|
});
|
||||||
|
|
||||||
|
$(document).on('flatdoc:ready', function() {
|
||||||
|
// Highlight all the codes
|
||||||
|
$('pre code').each(function(i, block) {
|
||||||
|
hljs.highlightBlock(block);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body role='flatdoc' class='big-h3'>
|
||||||
|
|
||||||
|
<div class='header'>
|
||||||
|
<div class='left'>
|
||||||
|
<h1><a href='/index.html'>Dark Water Documentation</a></h1>
|
||||||
|
<ul>
|
||||||
|
<li><a href='/640gettingstarted.html'>640</a></li>
|
||||||
|
<li><a href='/escapegettingstarted.html'>ESCAPE</a></li>
|
||||||
|
<!--<li><a href='/soar.html'>Soar</a></li>-->
|
||||||
|
<li><a href='/expansionadding.html'>Expansions</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class='right'>
|
||||||
|
<!-- GitHub buttons: see http://ghbtns.com -->
|
||||||
|
<iframe src="//ghbtns.com/github-btn.html?user=darkwaterfoundation&repo=docs&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class='content-root'>
|
||||||
|
<div class='menubar'>
|
||||||
|
<div class='menu section' role='flatdoc-menu'></div>
|
||||||
|
</div>
|
||||||
|
<div role='flatdoc-content' class='content'></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
0
escapeadvanced.md
Normal file
0
escapeadvanced.md
Normal file
67
escapewiring.html
Normal file
67
escapewiring.html
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8'>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
|
<meta name="viewport" content="width=device-width">
|
||||||
|
|
||||||
|
<title>ESCAPE - Wiring everything up | Dark Water</title>
|
||||||
|
|
||||||
|
<!-- Flatdoc -->
|
||||||
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
|
||||||
|
<script src='/flatdoc/legacy.js'></script>
|
||||||
|
<script src='/flatdoc/flatdoc.js'></script>
|
||||||
|
|
||||||
|
<!-- Flatdoc theme -->
|
||||||
|
<link href='/flatdoc/theme-dark/style.css?2' rel='stylesheet'>
|
||||||
|
<script src='/flatdoc/theme-dark/script.js?1'></script>
|
||||||
|
|
||||||
|
<!-- Highlight.js -->
|
||||||
|
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/styles/monokai-sublime.min.css">
|
||||||
|
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/highlight.min.js"></script>
|
||||||
|
<!-- Meta -->
|
||||||
|
<meta content="ESCAPE - Wiring everything up | Dark Water" property="og:title">
|
||||||
|
<meta content="Dark Water Foundation documentation." name="description">
|
||||||
|
|
||||||
|
<!-- Initializer -->
|
||||||
|
<script>
|
||||||
|
Flatdoc.run({
|
||||||
|
fetcher: Flatdoc.github('darkwaterfoundation/docs', 'escapewiring.md')
|
||||||
|
});
|
||||||
|
|
||||||
|
$(document).on('flatdoc:ready', function() {
|
||||||
|
// Highlight all the codes
|
||||||
|
$('pre code').each(function(i, block) {
|
||||||
|
hljs.highlightBlock(block);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body role='flatdoc' class='big-h3'>
|
||||||
|
|
||||||
|
<div class='header'>
|
||||||
|
<div class='left'>
|
||||||
|
<h1><a href='/index.html'>Dark Water Documentation</a></h1>
|
||||||
|
<ul>
|
||||||
|
<li><a href='/640gettingstarted.html'>640</a></li>
|
||||||
|
<li><a href='/escapegettingstarted.html'>ESCAPE</a></li>
|
||||||
|
<!--<li><a href='/soar.html'>Soar</a></li>-->
|
||||||
|
<li><a href='/expansionadding.html'>Expansions</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class='right'>
|
||||||
|
<!-- GitHub buttons: see http://ghbtns.com -->
|
||||||
|
<iframe src="//ghbtns.com/github-btn.html?user=darkwaterfoundation&repo=docs&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class='content-root'>
|
||||||
|
<div class='menubar'>
|
||||||
|
<div class='menu section' role='flatdoc-menu'></div>
|
||||||
|
</div>
|
||||||
|
<div role='flatdoc-content' class='content'></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
5
escapewiring.md
Normal file
5
escapewiring.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# Wiring everything up
|
||||||
|
|
||||||
|
## Attaching the power
|
||||||
|
## Attaching servos
|
||||||
|
## Attaching motors
|
||||||
@@ -27,10 +27,12 @@ The ESCAPE (ESC-cape) board was designed to provide a method of using brushless
|
|||||||

|

|
||||||
|
|
||||||
- [Getting started](/escapegettingstarted.html) setting up your ESCAPE board ready for use
|
- [Getting started](/escapegettingstarted.html) setting up your ESCAPE board ready for use
|
||||||
|
- - [Wiring everything up](/escapewiring.html) connecting your power, motors and servos
|
||||||
- [Programming in Python](/escapepython.html) the Python API and how to use it
|
- [Programming in Python](/escapepython.html) the Python API and how to use it
|
||||||
- [Programming in C++](/escapecplusplus.html) controlling the board in C++
|
- [Programming in C++](/escapecplusplus.html) controlling the board in C++
|
||||||
- [Set up RC Input]() reading input from your RC receiver
|
- [Set up RC Input]() reading input from your RC receiver
|
||||||
- [Expanding](/expansionadding.html) adding extra expansion boards
|
- [Expanding](/expansionadding.html) adding extra expansion boards
|
||||||
|
- [Get Advanced](/escapeadvanced.html) more advanced things you can do
|
||||||
|
|
||||||
[Pre-Order an ESCAPE board >](https://darkwater.io/product/escape-esc-powered-motor-control-board/)
|
[Pre-Order an ESCAPE board >](https://darkwater.io/product/escape-esc-powered-motor-control-board/)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user