Initial empty repository
This commit is contained in:
parent
6379c894d2
commit
3b13d9cc53
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +0,0 @@
|
|||||||
public/
|
|
||||||
resources/_gen/
|
|
||||||
.hugo_build.lock
|
|
||||||
@ -1,5 +0,0 @@
|
|||||||
+++
|
|
||||||
date = '{{ .Date }}'
|
|
||||||
draft = true
|
|
||||||
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
|
||||||
+++
|
|
||||||
@ -1,35 +0,0 @@
|
|||||||
---
|
|
||||||
title: "LoRa Vegas"
|
|
||||||
---
|
|
||||||
|
|
||||||
## Community
|
|
||||||
|
|
||||||
- [Discord — Las Vegas Meshtastic](https://discord.gg/PLACEHOLDER) — local chat for LV mesh networking
|
|
||||||
- [Discord — Meshtastic (Official)](https://discord.gg/meshtastic) — the main Meshtastic community
|
|
||||||
- [Signal Group](https://signal.group/PLACEHOLDER) — Signal chat for local coordination
|
|
||||||
|
|
||||||
## Meshtastic LongFast Settings
|
|
||||||
|
|
||||||
Default channel settings for the Las Vegas area mesh:
|
|
||||||
|
|
||||||
<div class="settings">
|
|
||||||
<span class="label">Frequency:</span> <span class="value">906.875 MHz</span><br>
|
|
||||||
<span class="label">Modem Preset:</span> <span class="value">LongFast</span><br>
|
|
||||||
<span class="label">Channel Name:</span> <span class="value">LongFast</span><br>
|
|
||||||
<span class="label">Region:</span> <span class="value">US</span><br>
|
|
||||||
<span class="label">Hop Limit:</span> <span class="value">3</span><br>
|
|
||||||
<span class="label">Encryption:</span> <span class="value">Default (AQ==)</span><br>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
These are the standard Meshtastic LongFast defaults for the US region. Just set your region to **US** and modem preset to **LongFast** and you'll be on the same channel as everyone else.
|
|
||||||
|
|
||||||
## What is Meshtastic?
|
|
||||||
|
|
||||||
[Meshtastic](https://meshtastic.org) is an open-source project that lets you build long-range, off-grid mesh communication networks using inexpensive LoRa radios. No cell service, no internet — just radio.
|
|
||||||
|
|
||||||
## Get Started
|
|
||||||
|
|
||||||
1. Get a [supported LoRa radio](https://meshtastic.org/docs/hardware/devices/) (Heltec V3, T-Beam, RAK, etc.)
|
|
||||||
2. Flash [Meshtastic firmware](https://flasher.meshtastic.org)
|
|
||||||
3. Set region to **US**, modem preset to **LongFast**
|
|
||||||
4. Join the community links above
|
|
||||||
10
hugo.toml
10
hugo.toml
@ -1,10 +0,0 @@
|
|||||||
baseURL = 'https://lora.vegas/'
|
|
||||||
languageCode = 'en-us'
|
|
||||||
title = 'LoRa Vegas — Las Vegas Meshtastic Community'
|
|
||||||
theme = 'loravega'
|
|
||||||
|
|
||||||
[markup.goldmark.renderer]
|
|
||||||
unsafe = true
|
|
||||||
|
|
||||||
[params]
|
|
||||||
description = 'Las Vegas LoRa and Meshtastic community hub'
|
|
||||||
@ -1,16 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<title>{{ .Site.Title }}</title>
|
|
||||||
<meta name="description" content="{{ .Site.Params.description }}">
|
|
||||||
<link rel="stylesheet" href="/css/style.css">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
{{ block "main" . }}{{ end }}
|
|
||||||
<footer>
|
|
||||||
<p>lora.vegas — Las Vegas Meshtastic community</p>
|
|
||||||
</footer>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -1,6 +0,0 @@
|
|||||||
{{ define "main" }}
|
|
||||||
<h1>📡 LoRa Vegas</h1>
|
|
||||||
<p class="tagline">Las Vegas Meshtastic & LoRa community</p>
|
|
||||||
|
|
||||||
{{ .Content }}
|
|
||||||
{{ end }}
|
|
||||||
@ -1,82 +0,0 @@
|
|||||||
:root {
|
|
||||||
--bg: #0a0a0a;
|
|
||||||
--fg: #e0e0e0;
|
|
||||||
--accent: #4fc3f7;
|
|
||||||
--muted: #888;
|
|
||||||
--max-w: 600px;
|
|
||||||
}
|
|
||||||
|
|
||||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
||||||
background: var(--bg);
|
|
||||||
color: var(--fg);
|
|
||||||
line-height: 1.6;
|
|
||||||
padding: 2rem 1rem;
|
|
||||||
max-width: var(--max-w);
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 1.8rem;
|
|
||||||
margin-bottom: 0.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tagline {
|
|
||||||
color: var(--muted);
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
font-size: 1.2rem;
|
|
||||||
margin-top: 2rem;
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
border-bottom: 1px solid #222;
|
|
||||||
padding-bottom: 0.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
|
||||||
list-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
li {
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: var(--accent);
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.settings {
|
|
||||||
background: #111;
|
|
||||||
border: 1px solid #222;
|
|
||||||
border-radius: 4px;
|
|
||||||
padding: 1rem;
|
|
||||||
margin-top: 0.5rem;
|
|
||||||
font-family: "SF Mono", "Fira Code", "Consolas", monospace;
|
|
||||||
font-size: 0.9rem;
|
|
||||||
line-height: 1.8;
|
|
||||||
}
|
|
||||||
|
|
||||||
.settings .label {
|
|
||||||
color: var(--muted);
|
|
||||||
}
|
|
||||||
|
|
||||||
.settings .value {
|
|
||||||
color: var(--accent);
|
|
||||||
}
|
|
||||||
|
|
||||||
footer {
|
|
||||||
margin-top: 3rem;
|
|
||||||
color: var(--muted);
|
|
||||||
font-size: 0.8rem;
|
|
||||||
border-top: 1px solid #222;
|
|
||||||
padding-top: 1rem;
|
|
||||||
}
|
|
||||||
@ -1,3 +0,0 @@
|
|||||||
name = "loravega"
|
|
||||||
description = "Minimal single-page theme for lora.vegas"
|
|
||||||
min_version = "0.100.0"
|
|
||||||
Loading…
Reference in New Issue
Block a user