From d8182cee8a1f47d25964d40c6a6db9e3bf4b4ffa Mon Sep 17 00:00:00 2001 From: sigmahour <> Date: Tue, 1 Nov 2022 18:04:52 -0400 Subject: [PATCH] updated gettings started and supported hardware page --- .gitignore | 24 ++- docs/1.2-End-of-life/hardware/techo.mdx | 46 ++++++ .../software/community/pygui.mdx | 2 +- docs/faq/index.mdx | 2 +- docs/field-tests/_category_.yml | 7 + .../antenna/antenna-report.mdx | 3 +- .../antenna/index.mdx} | 8 +- .../antenna/resources.mdx | 3 +- .../antenna/testing.mdx | 2 +- .../flashing-firmware/_category_.yml | 7 + .../{flashing-esp32.mdx => cli-script.mdx} | 8 +- ...dapter.mdx => external-serial-adapter.mdx} | 16 +- .../flashing-firmware/esp32/index.mdx | 13 +- .../flashing-firmware/index.mdx | 19 --- .../flashing-firmware/nrf52/drag-n-drop.mdx | 2 - .../flashing-firmware/nrf52/index.mdx | 8 +- docs/getting-started/index.mdx | 155 +++++++++++++++--- .../serial-drivers/_category_.yml | 7 + .../serial-drivers/{index.mdx => index.old} | 0 .../serial-drivers/serial-drivers-nrf52.mdx | 4 +- docs/hardware/antenna/aerials.mdx | 48 ------ docs/hardware/antennas.mdx | 53 ++++++ docs/hardware/supported/heltec.mdx | 36 ---- docs/hardware/supported/lora.mdx | 2 +- docs/hardware/supported/nano-g1.mdx | 6 +- docs/hardware/supported/station-g1.mdx | 32 ++++ docs/hardware/supported/tbeam.mdx | 4 +- docs/hardware/supported/techo.mdx | 12 +- docs/legal/index.mdx | 2 +- docs/software/python/meshtastic-flasher.mdx | 2 +- .../downloads/_components/DownloadCard.tsx | 4 +- src/pages/downloads/index.tsx | 18 +- src/pages/index.tsx | 10 +- 33 files changed, 363 insertions(+), 202 deletions(-) create mode 100644 docs/1.2-End-of-life/hardware/techo.mdx create mode 100644 docs/field-tests/_category_.yml rename docs/{hardware => field-tests}/antenna/antenna-report.mdx (88%) rename docs/{hardware/antenna/antenna.mdx => field-tests/antenna/index.mdx} (96%) rename docs/{hardware => field-tests}/antenna/resources.mdx (97%) rename docs/{hardware => field-tests}/antenna/testing.mdx (99%) create mode 100644 docs/getting-started/flashing-firmware/_category_.yml rename docs/getting-started/flashing-firmware/esp32/{flashing-esp32.mdx => cli-script.mdx} (97%) rename docs/getting-started/flashing-firmware/esp32/{flashing-external-serial-adapter.mdx => external-serial-adapter.mdx} (92%) delete mode 100644 docs/getting-started/flashing-firmware/index.mdx create mode 100644 docs/getting-started/serial-drivers/_category_.yml rename docs/getting-started/serial-drivers/{index.mdx => index.old} (100%) delete mode 100644 docs/hardware/antenna/aerials.mdx create mode 100644 docs/hardware/antennas.mdx delete mode 100644 docs/hardware/supported/heltec.mdx create mode 100644 docs/hardware/supported/station-g1.mdx diff --git a/.gitignore b/.gitignore index b47909f3..fc1fbbcc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,28 @@ +# Project specific node_modules/ *.Identifier .docusaurus build .vercel -.DS_Store .env -.pnpm-debug.log \ No newline at end of file +.pnpm-debug.log + +# macOS +.DS_Store + +# IntelliJ +.idea +*.iml +out +gen + +# VS Code +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets +.history/ +*.vsix +*.code-workspace \ No newline at end of file diff --git a/docs/1.2-End-of-life/hardware/techo.mdx b/docs/1.2-End-of-life/hardware/techo.mdx new file mode 100644 index 00000000..b860b996 --- /dev/null +++ b/docs/1.2-End-of-life/hardware/techo.mdx @@ -0,0 +1,46 @@ +--- +id: techo +title: LILYGO® TTGO T-Echo devices +sidebar_label: LILYGO® T-Echo +sidebar_position: 2 +--- + +The T-Echo is the latest device to be release by LILYGO® supporting a low power consumption microcontroller. + +### Features + +- nRF52840 - Bluetooth BLE 5.0, NFC and very low power consumption +- SX1262 - LoRa transceiver +- 1.54" eInk display +- L76K - GNSS receiver - Supporting GPS, BeiDou, GLONASS & QZSS +- Reset, Program and capacitive touch buttons +- U.FL antenna connector +- Optional BME280 - Humidity and Pressure Sensor +- Comes with a case and battery + +### Resources + +- Firmware file: `firmware-t-echo-2.x.x.uf2` +- [Purchase link](https://www.aliexpress.com/item/1005002842456390.html) +- TTGO's [GitHub page](https://github.com/Xinyuan-LilyGO/LilyGO-T-Echo) for the T-Echo + +LILYGO T-Echo + +### T-Echo button functions + +- Capacitive top button + - A short press refreshes the current screen +- Button 1 + - A single press resets the device + - A double press puts the device into bootloader mode ready to receive a new firmware +- Button 2 + - A single press changes the page displayed on the device + - A double press turns the screen backlight on/off + - A long press turns the device off + + +[LILYGO T-Echo](/img/hardware/t-echo-lilygo.jpg) diff --git a/docs/1.2-End-of-life/software/community/pygui.mdx b/docs/1.2-End-of-life/software/community/pygui.mdx index 17f2e331..3b309224 100644 --- a/docs/1.2-End-of-life/software/community/pygui.mdx +++ b/docs/1.2-End-of-life/software/community/pygui.mdx @@ -20,7 +20,7 @@ This can be installed using pip. python -m pip install --upgrade meshtastic-pygui ``` -```shell title="MacOS/Linux" +```shell title="macOS/Linux" pip3 install --upgrade meshtastic-pygui ``` diff --git a/docs/faq/index.mdx b/docs/faq/index.mdx index ba0feaea..9f92e8fc 100644 --- a/docs/faq/index.mdx +++ b/docs/faq/index.mdx @@ -2,7 +2,7 @@ id: faq title: FAQs slug: /faq -sidebar_position: 6 +sidebar_position: 8 --- [LILYGO® TTGO T-Beam v1.1 pinmap](/img/hardware/t-beam_v1.1_pinmap.webp) - diff --git a/docs/hardware/supported/techo.mdx b/docs/hardware/supported/techo.mdx index d00e7655..b860b996 100644 --- a/docs/hardware/supported/techo.mdx +++ b/docs/hardware/supported/techo.mdx @@ -7,12 +7,6 @@ sidebar_position: 2 The T-Echo is the latest device to be release by LILYGO® supporting a low power consumption microcontroller. -### See [Getting Started](/docs/getting-started/flashing-firmware/nrf52/) - -- firmware file: `firmware-t-echo-1.x.x.uf2` -- [Purchase link](https://www.aliexpress.com/item/1005002842456390.html) -- TTGO's [GitHub page](https://github.com/Xinyuan-LilyGO/LilyGO-T-Echo) for the T-Echo - ### Features - nRF52840 - Bluetooth BLE 5.0, NFC and very low power consumption @@ -24,6 +18,12 @@ The T-Echo is the latest device to be release by LILYGO® supporting a low power - Optional BME280 - Humidity and Pressure Sensor - Comes with a case and battery +### Resources + +- Firmware file: `firmware-t-echo-2.x.x.uf2` +- [Purchase link](https://www.aliexpress.com/item/1005002842456390.html) +- TTGO's [GitHub page](https://github.com/Xinyuan-LilyGO/LilyGO-T-Echo) for the T-Echo + LILYGO T-Echo - + img1 - + img2 )} diff --git a/src/pages/downloads/index.tsx b/src/pages/downloads/index.tsx index 07f7f143..c5beb2a2 100644 --- a/src/pages/downloads/index.tsx +++ b/src/pages/downloads/index.tsx @@ -90,6 +90,15 @@ const Firmware = (): JSX.Element => {

Android

+ + F-Droid + + { Play Store - - F-Droid - -
diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 9aa4eb6e..da56e86c 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -88,21 +88,21 @@ const SocialCards: SocialCardProps[] = [ color: 'bg-[#5865F2]', link: 'https://discord.com/invite/UQJ5QuM7vq', children: ( - + discord ), }, { color: 'bg-[#FF0000]', link: 'https://www.youtube.com/meshtastic', children: ( - + youtube ), }, { color: 'bg-[#ffffff]', link: 'https://meshtastic.discourse.group', children: ( - discourse @@ -112,14 +112,14 @@ const SocialCards: SocialCardProps[] = [ color: 'bg-[#FF4500]', link: 'https://reddit.com/r/meshtastic', children: ( - + reddit ), }, { color: 'bg-[#ffffff]', link: 'https://github.com/meshtastic', children: ( - + github ), }, ];