Merge branch 'master' into rcarteraz-patch-1

This commit is contained in:
rcarteraz 2024-03-09 17:32:09 -07:00 committed by GitHub
commit f6d8ac34b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 38 additions and 3 deletions

View file

@ -1,25 +1,26 @@
--- ---
id: web-flasher id: web-flasher
title: Using Meshtastic Web Flasher title: Meshtastic Web Flasher
sidebar_label: Web Flasher (recommended) sidebar_label: Web Flasher (recommended)
sidebar_position: 1 sidebar_position: 1
--- ---
import Link from "@docusaurus/Link"; import Link from "@docusaurus/Link";
## Web Flasher ## Flash Device
1. Plug in your device 1. Plug in your device
2. Visit [flasher.meshtastic.org](https://flasher.meshtastic.org) _\*requires Chrome or Edge browser_ 2. Visit [flasher.meshtastic.org](https://flasher.meshtastic.org) _\*requires Chrome or Edge browser_
3. Follow the instructions 3. Follow the instructions
## Connect and Configure Device ### Connect and Configure Device
After flashing the Meshtastic firmware to the device, you can proceed with the initial configuration. After flashing the Meshtastic firmware to the device, you can proceed with the initial configuration.
<div className="indexCtasBody"> <div className="indexCtasBody">
<Link <Link
className={"button button--outline button--lg cta--button"} className={"button button--outline button--lg cta--button"}
style={{ fontSize: '0.8em', padding: '8px 16px' }}
to={"/docs/getting-started/initial-config"} to={"/docs/getting-started/initial-config"}
> >
Connect and Configure Device Connect and Configure Device

View file

@ -6,6 +6,7 @@ import {
BoltIcon, BoltIcon,
ComputerDesktopIcon, ComputerDesktopIcon,
CpuChipIcon, CpuChipIcon,
DocumentIcon,
GlobeAltIcon, GlobeAltIcon,
} from "@heroicons/react/24/solid"; } from "@heroicons/react/24/solid";
import Layout from "@theme/Layout"; import Layout from "@theme/Layout";
@ -215,6 +216,39 @@ const Firmware = (): JSX.Element => {
)} )}
</div> </div>
</div> </div>
{/* */}
<h1 className="m-2">Documentation</h1>
<div className="flex w-full overflow-hidden rounded-xl">
<div className="flex w-1/5 bg-gradient-to-r from-blue-500 to-primary">
<DocumentIcon className="m-auto h-20" />
</div>
<div className="flex w-full flex-col bg-primary lg:flex-row">
<div className="card m-4 border-2 border-secondary">
<div className="card__header">
<h3>PDF</h3>
</div>
<div className="card__body flex items-center">
<div className="m-auto">
<GlobeAltIcon className="h-20 w-20" />
</div>
</div>
<div className="card__body">
Current Meshtastic.org documentation compiled for offline use
</div>
<div className="card__footer mt-auto">
<a
target="_blank"
rel="noopener noreferrer"
href="https://github.com/meshtastic/artifacts/tree/docs"
className="m-auto flex rounded-lg border-4 border-transparent bg-gray-100 p-1 font-semibold text-black shadow-md hover:text-black hover:brightness-110 active:border-green-200"
>
GitHub
<ArrowTopRightOnSquareIcon className="m-auto ml-2 h-4" />
</a>
</div>
</div>
</div>
</div>
</div> </div>
</Layout> </Layout>
); );