myrobotlab

Open Source Java Framework for Robotics and Creative Machine Control

Github星跟踪图

myrobotlab

Open Source Java Framework for Robotics and Creative Machine Control

Project Website: http://www.myrobotlab.org (Stop by and say hello in the shoutbox!)

Installing Dependencies

Dependencies for MyRobotLab are downloaded when you run "java -jar myrobotlab.jar -install"
They are managed via integration with Apache Ivy.

When doing development with MyRobotLab, you can import it as a Maven project and dependencies are managed through maven.
Each service defines a static method called getMetaData(). This method is used to generate the pom.xml file and also to create the .myrobotlab/serviceData.json file which is used by Ivy.

Running MyRobotLab

You will need Java 8 or newer. If you are only running MyRobotLab you need the JRE (Java Runtime Environment.) If you are going to be building from source, you'll need the JDK (Java Development Kit)

Make sure java is in your path. open a terminal window and change to the directory where you've downloaded the myroblab.jar

To start MyRobotLab you can do so by running

java -jar myrobotlab.jar

If you want to start MyRobotLab and execute a python script on startup, you can use the following command:

java -jar myrobotlab.jar -service runtime Runtime python Python gui SwingGui -invoke python execFile MyScript.py

To pass additional arguments to the JVM on startup (such as increasing the java memory / heap size you can use the -jvm arg :

java -jar myrobotlab.jar -jvm "-Xmx512m -Xms512m"

To start a list of named services on startup, you can use the -service command line arg with a list of service name/type pairs.

java -jar myrobotlab.jar -service runtime Runtime python Python gui SwingGui wegbui WebGui

The above would start runtime, python, the swing gui and lastly the webgui.

Building Project

MyRobotLab builds using the Apache Maven java build system.

Download Maven At:
https://maven.apache.org/download.cgi

Clone the myrobotlab project

create a directory to clone the repositories in (assuming you're on windows and cloning to the c:\dev directory)

mkdir c:\dev
cd dev
git clone https://github.com/MyRobotLab/myrobotlab.git
cd c:\dev\myrobotlab

To compile and build a myrobotlab.jar first : ensure that "mvn" (maven version 3.3+ is installed and in the path)

mvn clean install

This should produce a local build for you "myrobotlab.jar" file will be located at

myrobotlab/target/myrobotlab.jar

If you want to compile and skip the tests, you can use the standard maven approach

mvn clean install -DskipTests

Contributing

All development is done on the develop branch. To contribute code, the typical approach is to create an issue about the feature/bug you're working on.

From Github create a branch based off the "develop" branch with a descriptive name (and associated Issue number if available)
Locally switch to the new branch
Make code changes
Commit & Push (frequently!)
When code is ready, submit a pull request to the develop branch!
Enjoy the code review, address issues and concern in the code review
Reviewer merges pull request to develop.
Reviewer deletes branch.

主要指标

概览
名称与所有者MyRobotLab/myrobotlab
主编程语言Java
编程语言Java (语言数: 12)
平台
许可证Apache License 2.0
所有者活动
创建于2014-03-24 03:59:27
推送于2025-06-20 21:31:20
最后一次提交2020-06-15 16:54:26
发布数602
最新版本名称v1.1.1605 (发布于 2025-06-03 01:18:12)
第一版名称1.0.81 (发布于 )
用户参与
星数236
关注者数56
派生数114
提交数14.5k
已启用问题?
问题数430
打开的问题数106
拉请求数821
打开的拉请求数22
关闭的拉请求数164
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?