Revert 2687211543fd1d0da8c23b9ffad94dfd146a5539...a495d3f3ee1943c5979bc53c52265ee5efc9f936 on Home

Tester0815 2016-05-26 12:17:56 +02:00
parent a495d3f3ee
commit 34fda76504
1 changed files with 36 additions and 13 deletions

49
Home.md

@ -1,17 +1,40 @@
##Welcome to the Hyperion Project - Wiki
[addon_link]: wiki/XBMC-addon-(not-for-RPi)
This Wiki is no longer available on Github, we reworked the whole wiki and created a guide for HyperCon!
All this is available in german and english.
[Introduction](wiki#introduction)
[Command line utility](wiki/command-line-utility)
[Android remote](wiki/android-remote)
[iOS remote](wiki/Hyperion-Remote-for-iOS)
[Web app](wiki/web-app)
[XBMC addon (not for RPi)][addon_link]
[Hardware](wiki/hardware)
[Installation](wiki/installation)
[Configuration](wiki/configuration)
[Color calibration](wiki/Color-Calibration)
[Supported/Working platforms](wiki/Supported-Working-platforms)
[FAQ Frequently Asked Questions (Problems)](wiki/FAQ-Frequently-Asked-(Problems)-Questions)
[Effect development](wiki/effect-development)
[Software architecture](wiki/software-architecture)
[License](wiki/license)
Please visit our new wiki at:
[wiki.hyperion-project.org](https://wiki.hyperion-project.org)
<h4>Introduction</h4>
Hyperion is an opensource 'AmbiLight' implementation controlled using the RaspBerry Pi. The main features of Hyperion are:
* Low CPU load. For a led string of 50 leds the CPU usage will typically be below 2% on a non-overclocked Pi.
* Json interface which allows easy integration into scripts.
* A command line utility allows easy testing and configuration of the color transforms (Transformation settings are not preserved over a restart at the moment...).
* Priority channels are not coupled to a specific led data provider which means that a provider can post led data and leave without the need to maintain a connection to Hyperion. This is ideal for a remote application (like our Android app).
* HyperCon. A tool which helps generate a Hyperion configuration file. The tool will also remember your settings from the previous run.
* Android remote control to set a static color.
* XBMC-checker which checks the playing and screensaver status of XBMC and decides whether or not to capture the screen. The checker also detects whether XBMC is playing 3D video content.
* Black border detector.
* A scriptable effect engine.
* Boblight server interface to enable the use of clients written for Boblight.
* Generic software architecture to support new devices and new algorithms easily.
And our new support forum:
[forum.hyperion-project.org](https://forum.hyperion-project.org)
<h6>Led devices</h6>
At this moment multiple types of led devices are supported. Other devices may be added, but we are unable to test those and therefore we need help with this. If you want support for an additional device pleas let us know and maybe we can add the new device with your testing (or even coding) help.
### Our first tutorial to build your own ambilight WITHOUT soldering is online!
This tutorial is made for all ambilight beginner. Over 80 pictures and good explanations are waiting!
International users:[Raspberry Pi 3 Mediacenter + Hyperion Ambilight + NO soldering](https://hyperion-project.org/threads/raspberry-pi-3-mediacenter-hyperion-ambilight-no-soldering.77/)
For German users: [Raspberry Pi 3 Mediacenter + Hyperion Ambilight + OHNE löten](https://hyperion-project.org/threads/raspberry-pi-3-mediacenter-hyperion-ambilight-ohne-l%C3%B6ten.112/)
<h6>Boblight?</h6>
Hyperion is not the only 'Ambilight' clone available for the Raspberry Pi. [Boblight](https://code.google.com/p/boblight/) is a well known and much more used alternative. Why choose Hyperion? Hyperion is built with the Raspberry Pi's limited amount of processing power in mind resulting in an implementation which is about **15x** faster. Where Boblight is setup as a client-server, Hyperion is built in a single app. This drops the need to serialize and deserialize all data sent between the video grabber and the led controller. Hyperion has the possibility to enable an interface which accepts data from clients written for Boblight. This makes it easier to switch to Hyperion if other devices for which no Hyperion client exist are still used. Note that all color transformations should be disabled in the Boblight client, because otherwise transformations are applied twice (first by the Boblight client and second by Hyperion). Boblight has a default gamma correction value of 2.2 which needs to be set to 1. Below is an example of how to run boblight-X11 when connecting to Hyperion.
```
DISPLAY=:0.0 /usr/local/bin/boblight-X11 -s 192.168.53.21:19333 -o gamma=1 -x
```