Added scripts for launching binaries with external libraries.
This commit is contained in:
BIN
bin/AndroidExplorerbotServer.apk
Normal file
BIN
bin/AndroidExplorerbotServer.apk
Normal file
Binary file not shown.
9
bin/README.txt
Normal file
9
bin/README.txt
Normal 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
BIN
bin/explorerbot.jar
Normal file
Binary file not shown.
BIN
bin/explorerbot_lib/jinput-dx8.dll
Normal file
BIN
bin/explorerbot_lib/jinput-dx8.dll
Normal file
Binary file not shown.
BIN
bin/explorerbot_lib/jinput-dx8_64.dll
Normal file
BIN
bin/explorerbot_lib/jinput-dx8_64.dll
Normal file
Binary file not shown.
BIN
bin/explorerbot_lib/jinput-raw.dll
Normal file
BIN
bin/explorerbot_lib/jinput-raw.dll
Normal file
Binary file not shown.
BIN
bin/explorerbot_lib/jinput-raw_64.dll
Normal file
BIN
bin/explorerbot_lib/jinput-raw_64.dll
Normal file
Binary file not shown.
BIN
bin/explorerbot_lib/jinput-wintab.dll
Normal file
BIN
bin/explorerbot_lib/jinput-wintab.dll
Normal file
Binary file not shown.
BIN
bin/explorerbot_lib/jinput.jar
Normal file
BIN
bin/explorerbot_lib/jinput.jar
Normal file
Binary file not shown.
BIN
bin/explorerbot_lib/jssc.jar
Normal file
BIN
bin/explorerbot_lib/jssc.jar
Normal file
Binary file not shown.
BIN
bin/explorerbot_lib/libjinput-linux.so
Normal file
BIN
bin/explorerbot_lib/libjinput-linux.so
Normal file
Binary file not shown.
BIN
bin/explorerbot_lib/libjinput-linux64.so
Normal file
BIN
bin/explorerbot_lib/libjinput-linux64.so
Normal file
Binary file not shown.
BIN
bin/explorerbot_lib/libjinput-osx.jnilib
Normal file
BIN
bin/explorerbot_lib/libjinput-osx.jnilib
Normal file
Binary file not shown.
6
bin/start_client.sh
Normal file
6
bin/start_client.sh
Normal 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
4
bin/start_server.sh
Normal 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
|
Reference in New Issue
Block a user