mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
new devices added to HyperCon
Former-commit-id: 51f564f6375d377144787675cfd33c511a363a80
This commit is contained in:
parent
6f44dc8f84
commit
c327f78d30
@ -26,10 +26,10 @@ public class DeviceConfig {
|
|||||||
|
|
||||||
strBuf.append("\t/// Device configuration contains the following fields: \n");
|
strBuf.append("\t/// Device configuration contains the following fields: \n");
|
||||||
strBuf.append("\t/// * 'name' : The user friendly name of the device (only used for display purposes)\n");
|
strBuf.append("\t/// * 'name' : The user friendly name of the device (only used for display purposes)\n");
|
||||||
strBuf.append("\t/// * 'type' : The type of the device or leds (known types for now are 'ws2801', 'lpd6803', 'sedu',\n");
|
strBuf.append("\t/// * 'type' : The type of the device or leds (known types for now are 'ws2801', 'ldp8806',\n");
|
||||||
strBuf.append("\t/// 'adalight', 'test' and 'none')\n");
|
strBuf.append("\t/// 'lpd6803', 'sedu', 'adalight', 'lightpack', 'test' and 'none')\n");
|
||||||
strBuf.append("\t/// * 'output' : The output specification depends on selected device. This can for example be the\n");
|
strBuf.append("\t/// * 'output' : The output specification depends on selected device. This can for example be the\n");
|
||||||
strBuf.append("\t/// device specifier or the output file name\n");
|
strBuf.append("\t/// device specifier, device serial number, or the output file name\n");
|
||||||
strBuf.append("\t/// * 'rate' : The baudrate of the output to the device\n");
|
strBuf.append("\t/// * 'rate' : The baudrate of the output to the device\n");
|
||||||
strBuf.append("\t/// * 'colorOrder' : The order of the color bytes ('rgb', 'rbg', 'bgr', etc.).\n");
|
strBuf.append("\t/// * 'colorOrder' : The order of the color bytes ('rgb', 'rbg', 'bgr', etc.).\n");
|
||||||
|
|
||||||
|
@ -6,12 +6,16 @@ package org.hyperion.hypercon.spec;
|
|||||||
public enum DeviceType {
|
public enum DeviceType {
|
||||||
/** WS2801 Led String device with one continuous shift-register (1 byte per color-channel) */
|
/** WS2801 Led String device with one continuous shift-register (1 byte per color-channel) */
|
||||||
ws2801("WS2801"),
|
ws2801("WS2801"),
|
||||||
|
/** LDP8806 Led String device with one continuous shift-register (1 + 7 bits per color channel)*/
|
||||||
|
lpd8806("LPD8806"),
|
||||||
/** LDP6803 Led String device with one continuous shift-register (5 bits per color channel)*/
|
/** LDP6803 Led String device with one continuous shift-register (5 bits per color channel)*/
|
||||||
lpd6803("LPD6803"),
|
lpd6803("LPD6803"),
|
||||||
/** SEDU LED device */
|
/** SEDU LED device */
|
||||||
sedu("SEDU"),
|
sedu("SEDU"),
|
||||||
/** Adalight device */
|
/** Adalight device */
|
||||||
adalight("Adalight"),
|
adalight("Adalight"),
|
||||||
|
/** Lightpack USB led device */
|
||||||
|
lightpack("Lightpack"),
|
||||||
/** Test device for writing color values to file-output */
|
/** Test device for writing color values to file-output */
|
||||||
test("Test"),
|
test("Test"),
|
||||||
/** No device, no output is generated */
|
/** No device, no output is generated */
|
||||||
|
Loading…
Reference in New Issue
Block a user