Skip to content

Commit

Permalink
Rename to Limelight Embedded
Browse files Browse the repository at this point in the history
  • Loading branch information
irtimmer committed Sep 2, 2014
1 parent 47f5a03 commit 885dd84
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 23 deletions.
37 changes: 19 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#Limelight Pi
#Limelight Embedded

Limelight is an open source implementation of NVIDIA's GameStream, as used by the NVIDIA Shield,
but built for Linux/OSX/Windows.

Limelight Pi allows you to stream your full collection of Steam games from
your powerful Windows desktop to your Raspberry Pi.
Limelight Embedded allows you to stream your full collection of Steam games from
your powerful Windows desktop to your embedded system, like Raspberry Pi, CuBox-i and Hummingboard.

For a demo see this [video](https://www.youtube.com/watch?v=XRW6O0bSHNw).

Expand All @@ -19,7 +19,7 @@ implementation.

##Features

* Streams Steam and all of your games from your PC to your Raspberry Pi.
* Streams Steam and all of your games from your PC to your embedded system.

##Installation

Expand All @@ -37,24 +37,29 @@ implementation.

##Quick Start

* Ensure your machine and Raspberry Pi are on the same network
* Ensure your machine and embedded system are on the same network
* Turn on Shield Streaming in the GFE settings
* Start Limelight Pi with pair
* Start Limelight Embedded with pair
* Accept the pairing confirmation on your PC
* Start Limelight Pi with stream
* Start Limelight Embedded with stream
* Play games!

##Usage
Usage: java -jar limelight-pi.jar [options] host
Usage: java -jar limelight.jar [options] host

Actions:

map Create mapping file for gamepad
pair Pair device with computer
stream Stream computer to device
discover List available computers
list List available games and applications
help Show this help

Mapping options:

-input <device> Use <device> as input

Streaming options:

-720 Use 1280x720 resolution (default)
Expand All @@ -81,18 +86,14 @@ implementation.
* Set JAVA_HOME to your JDK installation directory for example ``export JAVA_HOME=/usr/lib/jvm/jdk-7-oracle-armhf``
* Build using Ant ``ant``

##Contribute
## Discussion

This project is being actively developed at [XDA](http://forum.xda-developers.com/showthread.php?t=2505510)
[XDA](http://forum.xda-developers.com/showthread.php?t=2505510)
[Raspberry Pi Forum](http://www.raspberrypi.org/forums/viewtopic.php?f=78&t=65878)
[SolidRun Community](http://www.solid-run.com/community/viewtopic.php?f=13&t=1489&p=11173)

##Contribute

1. Fork us
2. Write code
3. Send Pull Requests

##Authors

* [Iwan Timmer](https://github.com/irtimmer)
* [Cameron Gutman](https://github.com/cgutman)
* [Diego Waxemberg](https://github.com/dwaxemberg)
* [Aaron Neyer](https://github.com/Aaronneyer)
* [Andrew Hennessy](https://github.com/yetanothername)
4 changes: 2 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@
<target name="proguard">
<proguard>
-libraryjars ${java.home}/lib/rt.jar
-injars ${build.dir}/limelight-pi.jar
-outjars ${build.dir}/limelight-pi-dist.jar
-injars ${build.dir}/limelight.jar
-outjars ${build.dir}/limelight-dist.jar

-keepclasseswithmembers public class * {
public static void main(java.lang.String[]);
Expand Down
4 changes: 2 additions & 2 deletions src/com/limelight/Limelight.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import java.util.logging.Logger;

/**
* Main class for Limelight Pi
* Main class for Limelight Embedded
* @author Diego Waxemberg<br>
* Cameron Gutman
* Iwan Timmer
Expand Down Expand Up @@ -335,7 +335,7 @@ public static void main(String args[]) {
parse = false;

if (args.length == 0 || !parse) {
System.out.println("Usage: java -jar limelight-pi.jar action [options] host/file");
System.out.println("Usage: java -jar limelight.jar action [options] host/file");
System.out.println();
System.out.println(" Actions:");
System.out.println();
Expand Down
2 changes: 1 addition & 1 deletion src/com/limelight/binding/PlatformBinding.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static String getDeviceName() {
try {
return InetAddress.getLocalHost().getHostName();
} catch (UnknownHostException e) {
return "LimelightPi";
return "Limelight";
}
}

Expand Down

0 comments on commit 885dd84

Please sign in to comment.