Skip to content

Commit bf27b49

Browse files
committed
terminology add lora
1 parent 2c3f96d commit bf27b49

File tree

6 files changed

+74
-22
lines changed

6 files changed

+74
-22
lines changed

.vitepress/config.mts

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -358,21 +358,26 @@ export default withMermaid(defineConfig({
358358
text: 'Terminology',
359359
link: '/terminology/',
360360
items: [
361+
{ text: 'IoT', link: '/terminology/iot' },
361362
{
362-
text: 'General',
363+
text: 'Positioning',
364+
link: '/terminology/positioning/',
365+
items: [
366+
{ text: 'GNSS', link: '/terminology/positioning/gnss' },
367+
{ text: 'RTK', link: '/terminology/positioning/rtk' },
368+
{ text: 'WiFi', link: '/terminology/positioning/wifi' },
369+
{ text: 'Cellular', link: '/terminology/positioning/cellular' },
370+
]
371+
},
372+
{
373+
text: 'Communication',
374+
link: '/terminology/communication/',
363375
items: [
364376
{
365-
text: 'Positioning',
366-
link: '/terminology/positioning/',
367-
items: [
368-
{ text: 'GNSS', link: '/terminology/positioning/gnss' },
369-
{ text: 'RTK', link: '/terminology/positioning/rtk' },
370-
{ text: 'WiFi', link: '/terminology/positioning/wifi' },
371-
{ text: 'Cellular', link: '/terminology/positioning/cellular' },
372-
]
377+
text: 'Cellular',
378+
link: '/terminology/communication/cellular/',
373379
},
374-
{ text: 'IoT', link: '/terminology/iot' },
375-
{ text: 'Observability', link: '/terminology/observability' },
380+
{ text: 'LoRa', link: '/terminology/communication/lora' },
376381
]
377382
},
378383
{ text: 'Devices', link: '/terminology/devices' },
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
aside: false
3+
---
4+
5+
# Cellular
6+
7+
Cellular communication is how a device connects to a mobile network using a SIM and an onboard modem.
8+
9+
It is the primary communication method when a device needs to send data.
10+
11+
## GSM
12+
13+
GSM is one of the older generations of mobile network technology.
14+
15+
## LTE
16+
17+
LTE is a newer mobile network standard that is commonly used for higher-speed and more reliable cellular data connections.

terminology/communication/index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
aside: false
3+
---
4+
5+
# Communication
6+
7+
Lightbug products communicate using a few different network technologies depending on the device, the deployment environment, and the kind of data being sent.
8+
9+
This section is a starting point for the terms you’ll see around cellular connectivity and LoRa-based communication.
10+
11+
## What’s covered here
12+
13+
- [Cellular](./cellular) — mobile network communication such as GSM and LTE
14+
- [LoRa](./lora) — low-power long-range radio communication

terminology/communication/lora.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
aside: false
3+
---
4+
5+
# LoRa
6+
7+
LoRa is a long-range, low-power radio communication technology.
8+
9+
It is designed for sending small amounts of data over larger distances than you would usually expect from short-range wireless systems like Bluetooth.
10+
11+
It operates on unlicensed radio frequency bands.
12+
13+
LoRa vs LoRaWAN: LoRa is the physical layer (radio modulation), while LoRaWAN is a network protocol built on top of LoRa.
14+
15+
**Reading** [Wikipedia: LoRa](https://en.wikipedia.org/wiki/LoRa)

terminology/index.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,15 @@
22

33
This section covers the basic concepts that are used throughout Lightbug products, and in the rest of this documentation.
44

5-
GPS, GNSS, sensor readings and more.
5+
GPS, GNSS, cellular connectivity, LoRa, sensor readings and more.
6+
7+
Right now the section is split into a few broad areas, starting with positioning and communication.
8+
9+
## Areas covered
10+
11+
- [Positioning](/terminology/positioning/)
12+
- [Communication](/terminology/communication/)
13+
- [Devices](/terminology/devices)
14+
- [Points](/terminology/points)
15+
- [Readings](/terminology/readings)
16+
- [Billing](/terminology/billing)

terminology/observability.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)