Added scripts for launching binaries with external libraries.

This commit is contained in:
Daniele Verducci
2014-03-09 19:31:38 +01:00
parent 8e3a1dbacf
commit ecb44abd7a
40 changed files with 92 additions and 0 deletions

Binary file not shown.

9
bin/README.txt Normal file
View File

@@ -0,0 +1,9 @@
Usage (under linux):
SERVER (connected to Arduino)
sh start_server.sh
CLIENT (connected to joypad)
sh start_client.sh [serveripaddress]
Example: sh start_client.sh 192.168.0.32

BIN
bin/explorerbot.jar Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

6
bin/start_client.sh Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
# Starts the explorerbot's client.
# Usage: start_server [ipaddress]
# Example: start_server 192.168.0.35
java -Djava.library.path="./explorerbot_lib/" -jar explorerbot.jar client $1

4
bin/start_server.sh Normal file
View File

@@ -0,0 +1,4 @@
#!/bin/sh
# Starts the explorerbot as server (the one connected to the Arduino and receiving commands from the network
java -jar explorerbot.jar server