Skip to content
This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
Marian Pohling edited this page Mar 9, 2017 · 28 revisions

Generic Display Wiki

Build Status Build Status

Maven Artifact

<dependency>
    <groupId>org.openbase</groupId>
    <artifactId>generic-display</artifactId>
    <version>[0.6,0.7-SNAPSHOT)</version>
</dependency>

How to install

Download source from github

git clone https://github.com/openbase/generic-display.git

and build the source via maven

mvn clean install

How to start the server

Start the server and open the view by executing

./target/appassembler/bin/generic-display

How to remote control the server

// Init remote instance
        DisplayRemote remote = new DisplayRemote();
        remote.init();
        remote.activate();
        remote.waitForData();

// Display text example
        remote.showText("Hello World");

For a more detail java example have a look at the DisplayRemoteExample class.

The example code can executed with the following command

./target/appassembler/bin/display-test
Clone this wiki locally