Reword about.
This commit is contained in:
parent
6af35c59f7
commit
24f9d8032a
|
|
@ -1,2 +1,2 @@
|
||||||
_site/
|
_site/
|
||||||
.quarto/
|
/.quarto/
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,6 @@ website:
|
||||||
title: "howl121"
|
title: "howl121"
|
||||||
search: false
|
search: false
|
||||||
navbar:
|
navbar:
|
||||||
background: "$black"
|
|
||||||
left:
|
left:
|
||||||
- href: index.qmd
|
- href: index.qmd
|
||||||
text: Home
|
text: Home
|
||||||
|
|
@ -13,9 +12,7 @@ website:
|
||||||
|
|
||||||
format:
|
format:
|
||||||
html:
|
html:
|
||||||
theme:
|
theme: theme.scss
|
||||||
- default
|
|
||||||
- theme.scss
|
|
||||||
toc: true
|
toc: true
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
23
about.qmd
23
about.qmd
|
|
@ -3,26 +3,37 @@ title: "About"
|
||||||
toc: false
|
toc: false
|
||||||
---
|
---
|
||||||
|
|
||||||
Howl121 fills in the details for low cost robotics and drone components through
|
Howl121 provides data focused reviews related to low cost robotics and drones.
|
||||||
honest and meaningful tests and reviews.
|
|
||||||
|
|
||||||
## Problem
|
## Problem
|
||||||
|
|
||||||
|
### For Hardware
|
||||||
|
|
||||||
When we're picking out components to build a new robot, we need to understand the
|
When we're picking out components to build a new robot, we need to understand the
|
||||||
performance of those components so we can make sure they fit our needs.
|
performance of those components so we can make sure they fit our needs.
|
||||||
|
|
||||||
Professional grade equipment provides all of the information we need in datasheets,
|
Professional grade equipment provides all of the information we need in datasheets,
|
||||||
but professional grade equipment is commonly too expensive for student projects, DIYers,
|
but professional grade equipment is commonly too expensive for student projects, DIYers,
|
||||||
or individuals building small one off prototypes (like us).
|
or individuals building small one off prototypes
|
||||||
|
|
||||||
These individuals rely on much cheaper components which sometimes don't provide any specs,
|
These individuals rely on much cheaper components which sometimes don't provide any specs,
|
||||||
and when the specs are provided, are of questionable trustworthiness.
|
and when the specs are provided, are of questionable trustworthiness.
|
||||||
This makes it hard to do actual design work before we have to make a purchase.
|
This makes it hard to do actual design work before we have to make a purchase.
|
||||||
|
|
||||||
Howl121 fills in this missing information by collecting our own measurements for the
|
### For software
|
||||||
specifications you care about for the components you can afford.
|
|
||||||
|
|
||||||
## Draw your own conclusions
|
A lot of reviews of new software related to robotics and Open Source are based on the reviewer
|
||||||
|
reading the initial announcement from the producer and then going through the initial tutorial
|
||||||
|
provided in the software's documentation.
|
||||||
|
|
||||||
|
While reviews from this little of information can be useful, it's not enough to make good
|
||||||
|
engineering decsions from.
|
||||||
|
|
||||||
|
## The Solution
|
||||||
|
|
||||||
|
Howl121 performs reviews of both hardware and software related to low cost robotics and drones,
|
||||||
|
with a focus on providing and collecting useful data to allow for data driven engineering
|
||||||
|
decisions.
|
||||||
|
|
||||||
For every component we review, we commit to providing information on the methodologies
|
For every component we review, we commit to providing information on the methodologies
|
||||||
we used to collect the information we're presenting with enough detail
|
we used to collect the information we're presenting with enough detail
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
title: "Assessing Propellers for Small Scale Drones"
|
||||||
|
author: "James Pace"
|
||||||
|
date: "2024/01/07"
|
||||||
|
---
|
||||||
|
|
||||||
|
Blog
|
||||||
15
index.qmd
15
index.qmd
|
|
@ -1,7 +1,16 @@
|
||||||
---
|
---
|
||||||
title: "howl121"
|
title: "Welcome!"
|
||||||
|
toc: false
|
||||||
|
listing:
|
||||||
|
id: blog-listing
|
||||||
|
contents: blog
|
||||||
|
type: table
|
||||||
|
fields: [date, title]
|
||||||
---
|
---
|
||||||
|
|
||||||
This is a Quarto website.
|
Howl121 provides data focused reviews related to low cost robotics and drones.
|
||||||
|
|
||||||
To learn more about Quarto websites visit <https://quarto.org/docs/websites>.
|
## Latest Posts
|
||||||
|
|
||||||
|
::: {#blog-listing}
|
||||||
|
:::
|
||||||
|
|
|
||||||
13
theme.scss
13
theme.scss
|
|
@ -1,6 +1,11 @@
|
||||||
/*-- scss:defaults --*/
|
/*-- scss:defaults --*/
|
||||||
$black: #000 !default;
|
$black: #000;
|
||||||
$neon: #39ff14 !default;
|
$neon: #39ff14;
|
||||||
$white: #FFFF !default;
|
$white: #FFFF;
|
||||||
|
$blue: #0244b8;
|
||||||
|
|
||||||
$primary: $white !default;
|
$link-color: $black;
|
||||||
|
|
||||||
|
$navbar-bg: $black;
|
||||||
|
$navbar-fg: $white;
|
||||||
|
$navbar-hl: $neon;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue