Skip to content

Commit 5895968

Browse files
committed
Merge in old support site FAQs
1 parent e80f1d3 commit 5895968

23 files changed

+371
-26
lines changed

.vitepress/config.mts

+40-15
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,21 @@ const protocolMenuItems = Object.keys(protocolGroups)
3232
};
3333
});
3434

35+
// Ability to generate other collections of side bar entries
36+
const sidebarItemsFromDir = (dir) => {
37+
const files = fs.readdirSync(dir)
38+
return files
39+
.filter(file => file !== 'index.md')
40+
.map(file => {
41+
const name = file.replace('.md', '')
42+
const displayName = name.charAt(0).toUpperCase() + name.slice(1).replace(/-/g, ' ');
43+
return {
44+
text: displayName,
45+
link: `${dir}/${name}`
46+
}
47+
})
48+
}
49+
3550
const sidebarSpec1 = useSidebar({ spec: loadSpec(1) });
3651
const sidebarSpec2 = useSidebar({ spec: loadSpec(2) });
3752

@@ -101,7 +116,6 @@ export default defineConfig({
101116
themeConfig: {
102117
// https://vitepress.dev/reference/default-theme-config
103118
nav: [
104-
{ text: 'Home', link: '/' },
105119
{
106120
text: 'Hardware',
107121
items: [
@@ -126,10 +140,6 @@ export default defineConfig({
126140
},
127141
{ text: 'On Premise', link: '/onprem/' },
128142
{ text: 'Guides', link: '/guides/' },
129-
{
130-
text: 'Terminology',
131-
link: '/basics/index.html',
132-
},
133143
{
134144
text: 'Company',
135145
items: [
@@ -140,26 +150,41 @@ export default defineConfig({
140150
}
141151
],
142152
sidebar: {
143-
'/basics': [
153+
'/terminology': [
154+
{
155+
text: 'FAQ',
156+
link: '/faq/',
157+
},
144158
{
145-
text: 'Basics',
146-
link: '/basics/',
159+
text: 'Terminology',
160+
link: '/terminology/',
147161
items: [
148162
{
149163
text: 'General',
150164
items: [
151-
{ text: 'IoT', link: '/basics/iot' },
152-
{ text: 'Positioning', link: '/basics/positioning' },
153-
{ text: 'Observability', link: '/basics/observability' },
165+
{ text: 'IoT', link: '/terminology/iot' },
166+
{ text: 'Positioning', link: '/terminology/positioning' },
167+
{ text: 'Observability', link: '/terminology/observability' },
154168
]
155169
},
156-
{ text: 'Devices', link: '/basics/devices' },
157-
{ text: 'Points', link: '/basics/points' },
158-
{ text: 'Readings', link: '/basics/readings' },
159-
{ text: 'Billing', link: '/basics/billing' },
170+
{ text: 'Devices', link: '/terminology/devices' },
171+
{ text: 'Points', link: '/terminology/points' },
172+
{ text: 'Readings', link: '/terminology/readings' },
173+
{ text: 'Billing', link: '/terminology/billing' },
160174
],
161175
},
162176
],
177+
'/faq': [
178+
{
179+
text: 'FAQ',
180+
link: '/faq/',
181+
items: sidebarItemsFromDir(path.resolve(__dirname, '../faq')),
182+
},
183+
{
184+
text: 'Terminology',
185+
link: '/terminology/',
186+
}
187+
],
163188
'/devices': [
164189
{
165190
text: 'Devices',

.vitepress/theme/Layout.vue

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ const { go } = useRouter()
1010

1111
const redirects = Object.entries({
1212
'/silos': '/onprem',
13+
'/terminology': '/terminology',
14+
'/guides/troubleshooting': '/faq/troubleshooting',
1315
})
1416

1517
watch(

apis/v1/glossary.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The version 1 API uses a number of terms that may not be familiar to all users.
1212

1313
## Points
1414

15-
General information about points can be found [in the basics section](/basics/points.html).
15+
General information about points can be found [in the basics section](/terminology/points.html).
1616

1717
### sendReason
1818

apps/admin/devices.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ You can toggle `Info` and `Status` from this list using the buttons.
5151

5252
#### Latest Points
5353

54-
Shows some of the most recent [points](/basics/points.html) for the device.
54+
Shows some of the most recent [points](/terminology/points.html) for the device.
5555

5656
![](https://i.imgur.com/K7Js6XF.png)
5757

basics/index.md

-3
This file was deleted.

faq/account.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
aside: false
3+
---
4+
# Account
5+
6+
[[toc]]
7+
8+
## How can I add multiple Lightbug devices to my account?
9+
10+
There is no limit to the number of trackers you can have associated to a single account.
11+
12+
You can always add a new device in the Lightbug portal, on the [account page](https://lightbug.cloud/#/devices/settings/subscription) by [following the documented instructions](/apps/cloud/device-settings/subscription-account#add-a-new-device).
13+
14+
## Can multiple accounts track a single tracker?
15+
16+
It may be that you use your Lightbug GPS tracker for tracking a vehicle, and there are multiple users of the vehicle that all want to monitor it.
17+
18+
If you [contact us](https://lightbug.io/contact/) we can share trackers between accounts, so that multiple users can track the same device.
19+
20+
## Can I change the email address of my account?
21+
22+
If you need to change your email address after creating your Lightbug account, you need to [contact our support team](https://lightbug.io/contact/) and we will change it for you.
23+
24+
It is not possible for you to update this information on the any of our portals.

faq/connectivity.md

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
aside: false
3+
---
4+
# Connectivity
5+
6+
[[toc]]
7+
8+
## Do the devices have Bluetooth connectivity?
9+
10+
Yes, at the time of writing all of our core devices have Bluetooth connectivity
11+
12+
This enables features like short range location searching, mobile safe-zone and remote controlled alarm to help you find it.
13+
14+
Be sure to check the [individual device pages](/devices) for the most up-to-date information.
15+
16+
## Do the devices need internet to work?
17+
18+
Each device works by sending information via the internet.
19+
Our SIM cards can roam across many networks in different countries and will pick the network with the strongest signal, rather than being tied to a single operator.
20+
Our devices do not work so well in remote areas with little/no cell coverage, as they need the internet to connect.
21+
22+
Unlike many GPS trackers, our devices have their own internet connection.
23+
24+
They do not rely on Bluetooth or being near a mobile phone.
25+
26+
## Will the devices work in remote/poor signal area?
27+
28+
Lightbug devices do not work so well in remote areas with little to no cell coverage, as they need the internet to connect.
29+
30+
Luckily, with over 600 network partners globally, this is a rare occurrence!
31+
32+
## Will the device work indoors?
33+
34+
Our trackers work both indoors and outdoors.
35+
36+
They use [GPS/GNSS](/terminology/positioning#gnss-global-navigation-satellite-system) to locate themselves outdoors and [WPS (WiFi Positioning System)](/terminology/positioning#wifi-positioning) when indoors.
37+
38+
Typical accuracy outdoors is 1-5m, and 10-30m indoors.
39+
40+
If you need better accuracy indoors, [get in touch](https://lightbug.io/contact/)!
41+
42+
## Which countries do LightBug products work in?
43+
44+
Lightbug devices feature [worldwide coverage](https://lightbug.io/feature/worldwide-coverage/).

faq/devices.md

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
---
2+
aside: false
3+
---
4+
# Devices
5+
6+
[[toc]]
7+
8+
## Can the devices be turned off?
9+
10+
There is no physical on/off button on any of our trackers, but you can disable the device through the [Lightbug App](/apps/cloud/).
11+
12+
If you no longer need the device, you can cancel your subscription at any time and reactivate devices at a later date.
13+
14+
There are other forms of control accessible via APIs, such as the ability to lock the device in sleep mode for up to 24 hours, which will temporarily disable location updates when moving. Or the ability to put a device in deep sleep, there is will need to be put on charge or button pressed to wake it up.
15+
16+
## How long will the battery last? ![](https://i.imgur.com/107HL9y.png){width=100 style="float:right"}
17+
18+
The battery life of the device depends on your required settings.
19+
20+
The best way to find out the estimated battery life is to use our [battery life calculator](https://lightbug.io/) on our website.
21+
22+
## Can the devices operate in extreme weather conditions?
23+
24+
Generally the devices have an operating temperature of -20°C to 60°C (device specific operating temperatures are available on the dedicated device webpages). In both the extremely higher and lower temperatures the battery life of the trackers may be affected.
25+
26+
We do have devices operating in the Middle East.
27+
28+
We can supply Lightbug Pros with a -55°C to 65°C operational range, [let us know](https://lightbug.io/contact/) if you would like more information about these devices.
29+
30+
## Are the devices waterproof?
31+
32+
Check the device specifications on the [dedicated device pages](/devices) for the IP rating of the device.
33+
34+
## Does Lightbug install the devices?
35+
36+
No, we do not install devices.
37+
38+
Some devices, such as the vehicle tracker, have [dedicated installation guides](/devices/vehicle/installation).
39+
40+
Should you have any questions on installation and mounting, we're happy to help!
41+
42+
## Will the devices work straight out of the box?
43+
44+
The devices arrive **ready to use**, there is no assembly required; however, you will need to charge and activate your tracker.
45+
46+
You'll possibly find the [adding my first device guide](/guides/adding-your-first-device) useful if this is your first time using a Lightbug device.
47+
48+
## What comes in the box? ![](https://i.imgur.com/CaCDdWV.png){width=220 style="float:right"}
49+
50+
The contents of the box will vary depending on the device you have ordered.
51+
52+
The shop includes all information on what is bundled with the various SKUs.
53+
54+
Such as the page for the [Pro](https://lightbug.io/product/lb-dev-pr2/) which at the time of writing includes the Pro device, a charge dock, USB cable and one month of data.
55+
56+
## Are you able to produce custom devices?
57+
58+
Yes we can, we love being surprised by the new and innovative uses for our tracking technology!
59+
60+
So, if our devices don’t exactly fit your requirements, get in touch and we’ll see what we can do.
61+
62+
See [the custom devices page](/devices/custom) for more information.
63+
64+
## How often will I have to replace a Lightbug device?
65+
66+
Unless there is accidental damage, you should not need to replace your Lightbug GPS tracker.
67+
68+
If your device has a manufacturing defect within the first three years, it is likely covered under warranty, please [contact us](https://lightbug.io/contact/), as this differs per device and manufacture date.
69+
70+
## Where is the best place to mount devices?
71+
72+
It depends on your use case.
73+
74+
However, please do not fully surround the tracker with metal as it blocks the signals.
75+
76+
Below are some recommendations for best performance, if none of the suggestions work well for you, get in touch with details of your use case.
77+
78+
Some suggestions:
79+
- People: a bag, shoes, outside pocket, keys, lanyard
80+
- Assets: face the device upwards with a clear line of sight to the sky
81+
- Vehicle: glove compartment, under the seat, underside of the vehicle (magnetic LightBug Pro)
82+
83+
## Do the trackers need to be exposed?
84+
85+
Our trackers do not need to be fully exposed; however, they do not work well when fully surrounded by metal as this blocks the signals.
86+
87+
## How strong is the Pro magnetic mount?
88+
89+
The magnet is powerful with a pull force of 70lb / 32kg.
90+
91+
It will securely mount the Lightbug Pro to the underside of a moving vehicle.

faq/index.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# FAQ
2+
3+
This FAQ (Frequently Asked Questions) is created from the most common questions we receive from our customers.
4+
5+
If you have a question that is not answered here, please [contact us](https://lightbug.io/contact/).

faq/privacy.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
aside: false
3+
---
4+
# Privacy
5+
6+
[[toc]]
7+
8+
## What privacy measures are in place?
9+
10+
All data is encrypted in transit: from the moment a signal is transmitted by the device to the moment you view it.
11+
12+
We also adhere to all EU General Data Protection Regulation (GDPR).
13+
14+
Your data cannot be viewed by anyone else and we will never look at your data (unless you ask us to for support).
15+
16+
Your data will never be sold or used for any purpose other than providing the service you signed up for.
17+
18+
Please [contact us](https://lightbug.io/contact/) if you have any questions about privacy.
19+
20+
## If someone finds the tracker can they trace it back to me?
21+
22+
If your tracker falls into the wrong hands there is no way they can find out who owns it.
23+
24+
Similarly there is no way they can re-purpose the tracker and use it for themselves or view historical data.
25+
26+
Please note that our devices are designed to allow you to track your own property and that in many countries it is illegal to track someone else or their property without explicit consent.
27+
28+
Please refer to local regulations before using LightBug devices.
29+
30+
We will co-operate with authorities and where illegal use has been identified, provide evidence which may be used for prosecution.

faq/shipping.md

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
aside: false
3+
---
4+
# Shipping
5+
6+
[[toc]]
7+
8+
## Do you ship internationally?
9+
10+
Yes, we ship to most countries!
11+
12+
Shipping costs and times will be shown during checkout.
13+
14+
## How fast can I get my devices?
15+
16+
For all items in stock, we aim to dispatch your order within 1-3 days. Shipping times will vary.
17+
18+
Dispatch time: It can take 1-3 days for your order to be processed, packaged and collected by the courier from our office.
19+
20+
Shipping time: Shipping times will be shown at checkout after you enter your address. This is approximately how long it will take for your order to arrive once it has collected by the courier from our office.
21+
22+
## Will I have to pay customs or import fees?
23+
24+
We will prepare all the required documentation for international shipping, however Lightbug does not take responsibility for any customs or import fees that may occur once your order reaches its destination country, the customer must cover these charges.
25+
26+
We have very little control over these charges, and cannot accurately tell you how much these would be as they vary widely from country to country.
27+
28+
If you have any queries regarding possible customs and fees, we recommend reaching out to your local customs office.
29+
30+
## My order is on hold at customs, what should I do?
31+
32+
If your order is on hold at customs please contact your local customs office or shipping courier.
33+
34+
If you're still facing problems, [reach out to us](https://lightbug.io/contact/).
35+
36+
## What if my country isn't listed at checkout
37+
38+
If your country isn't listed at checkout, please [contact us](https://lightbug.io/contact/) and we'll see what we can do.
39+
40+
## Can I change my shipping address after placing the order ?
41+
42+
Our shipping team may have already started processing your order, however, we may be able to amend your shipping address before dispatch.
43+
44+
Please [get in touch](https://lightbug.io/contact/) with us as soon as possible if you need to change your shipping address.
45+
46+
## I haven't received my order or shipping confirmation?
47+
48+
It may be that your confirmation emails have gone to your spam or junk mail so we recommend that you check there first.
49+
50+
If you still cannot find your confirmation, it may be that we have an incorrect email address for you.
51+
52+
Please [contact us](https://lightbug.io/contact/) with the full name the order was placed under.

0 commit comments

Comments
 (0)