Skip to content

Commit d7d0f8b

Browse files
authored
Merge pull request #148 from neuromancer-es/mejorar_ayuda
Mejorar ayuda
2 parents 2f8830a + 7f0cf51 commit d7d0f8b

File tree

3 files changed

+107
-7
lines changed

3 files changed

+107
-7
lines changed

docs/_pages/misc/important-files-and-folders.md

Lines changed: 79 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@ title: Conga, Files to backup
33
category: Misc
44
order: 33
55
---
6+
67
## Important Conga Stuff
78

89
These is a list of important files on the robot.
910

11+
---
1012

11-
***
12-
13-
14-
#### List of files/folder
13+
#### List of files/folder
1514

1615
Zones + Spots configuration, mqtt + other config
1716

@@ -21,8 +20,81 @@ Status to keep map
2120

2221
`/mnt/UDISK/log`
2322

24-
***
23+
---
24+
25+
## How to Backup and Restore Map Information from Conga Robot
26+
27+
Follow these steps to backup and restore the mapping information of your Conga robot using SCP (Secure Copy Protocol).
28+
29+
---
30+
31+
### 1. Backup Map Information
32+
33+
#### **For Mac/Linux Users:**
34+
35+
Use the following SCP command to copy map data from your Conga robot to your local computer:
36+
37+
```bash
38+
scp -rp -o HostKeyAlgorithms=+ssh-rsa -o PubkeyAcceptedAlgorithms=+ssh-rsa -O 'root@<CONGA_IP_ADDRESS>:/mnt/UDISK/log/' '/path/to/local/backup/'
39+
```
40+
41+
Note: "-O" Option may error if you have an old ssh client, remove it if it does.
42+
43+
Replace:
44+
45+
- `<CONGA_IP_ADDRESS>` with your robot's IP address (e.g., `192.168.xxx.xxx`).
46+
- `/path/to/local/backup/` with the local folder path where you want to store the backup (e.g., `/Users/yourusername/Documents/CongaBackup`).
47+
48+
#### **For Windows Users:**
49+
50+
Use an SCP-compatible tool such as **WinSCP** or **PuTTY's PSCP**.
51+
52+
Example using PSCP in Windows Command Prompt:
53+
54+
```cmd
55+
pscp -r -scp -o HostKeyAlgorithms=+ssh-rsa -o PubkeyAcceptedAlgorithms=+ssh-rsa root@<CONGA_IP_ADDRESS>:/mnt/UDISK/log/ C:\path\to\local\backup\
56+
```
57+
58+
Replace:
59+
60+
- `<CONGA_IP_ADDRESS>` with your robot's IP address.
61+
- `C:\path\to\local\backup\` with your preferred Windows backup location.
62+
63+
---
64+
65+
### 2. Restore Map Information
66+
67+
#### **For Mac/Linux Users:**
68+
69+
To restore previously backed-up map data to your Conga robot, run:
70+
71+
```bash
72+
scp -rp -o HostKeyAlgorithms=+ssh-rsa -o PubkeyAcceptedAlgorithms=+ssh-rsa /path/to/local/backup/* -O 'root@<CONGA_IP_ADDRESS>:/mnt/UDISK/log/'
73+
```
74+
75+
Replace:
76+
77+
- `/path/to/local/backup/*` with the path to your backup folder (e.g., `/Users/yourusername/Documents/CongaBackup/*`).
78+
- `<CONGA_IP_ADDRESS>` with your robot's IP address.
79+
80+
#### **For Windows Users:**
81+
82+
Example using PSCP:
83+
84+
```cmd
85+
pscp -r -scp -o HostKeyAlgorithms=+ssh-rsa -o PubkeyAcceptedAlgorithms=+ssh-rsa C:\path\to\local\backup\* root@<CONGA_IP_ADDRESS>:/mnt/UDISK/log/
86+
```
87+
88+
Replace:
89+
90+
- `C:\path\to\local\backup\*` with your local backup folder location.
91+
- `<CONGA_IP_ADDRESS>` with your robot's IP address.
92+
93+
---
2594

26-
To backup copy the files from the robot to a safe place.
95+
### Notes:
2796

28-
To restore just copy the files over to the robot and reboot.
97+
- Ensure your Conga robot and computer are on the same local network.
98+
- You will be prompted to enter your robot's root password during SCP operations.
99+
- Most Conga Robots don't support sftp protocol and some scp implementations use sftp. you need to use option -O to force scp instead of sftp
100+
- Always make sure you have backups before restoring data, as this operation can overwrite existing robot map information.

docs/_pages/misc/map-segments.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: Map Segments
3+
category: Misc
4+
order: 35
5+
---
6+
7+
# Map Segments Unclickable Issue
8+
9+
Sometimes, the map creates segments that appear unclickable. This usually happens when segments have been merged or split. It is related to the map painting algorithm.
10+
11+
**Don't worry!** These segments can still be selected.
12+
13+
## How to Select an Unclickable Segment
14+
15+
When you encounter an unclickable segment:
16+
17+
- Look for the segment triangle (grey triangle icon).
18+
- Instead of clicking directly on the triangle, click carefully on the border or edge of the triangle.
19+
20+
### Example
21+
22+
In the following image, the highlighted triangles indicate typical unclickable segments:
23+
24+
![Unclickable Segments](../../img/unclickable_segments_example.jpg)
25+
26+
Click on the **border or edge** of these triangles instead of the center to successfully select the segment.
27+
28+
This workaround resolves the clicking issue without any further problems.
113 KB
Loading

0 commit comments

Comments
 (0)