Skip to content

Commit e631ed7

Browse files
committed
Upload package changes
1 parent 0f454de commit e631ed7

75 files changed

Lines changed: 300 additions & 1409 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Byte-compiled file
22
__pycache__/
3-
/.idea
3+
.idea/
44

55
# IDEs
66
.vscode

.idea/.gitignore

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

client_libraries/comms_manager.js

Lines changed: 0 additions & 170 deletions
This file was deleted.
62.1 KB
Binary file not shown.
53 KB
Binary file not shown.

launch.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from .robotics_application_manager import Manager
2+
3+
if __name__ == "__main__":
4+
import argparse
5+
6+
parser = argparse.ArgumentParser()
7+
parser.add_argument(
8+
"host", type=str, help="Host to listen to (0.0.0.0 or all hosts)"
9+
)
10+
parser.add_argument("port", type=int, help="Port to listen to")
11+
args = parser.parse_args()
12+
13+
RAM = Manager(args.host, args.port)
14+
RAM.start()

manager/comms/consumer.py

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

manager/libs/applications/brain_exercise.py

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

manager/libs/applications/compatibility/client.py

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

0 commit comments

Comments
 (0)