Jump to content


Photo

WS2812B Ambilight on linux Box with Enigmalight Plugin


  • Please log in to reply
9 replies to this topic

#1 holymoly

  • Senior Member
  • 181 posts

+2
Neutral

Posted 12 April 2015 - 08:57

Hi,

here a step by step solution for this Ambilight offshoot.

 

Arduino:

1. install the Arduino software on your computer

2. import the "FastLED" Library to the software

3. open my sketch and edit the number of the LEDs you have mounted.

4. If you want, you can change the Data Pin and the color order.

5. You should protect the DATA input of the LED-Stripes with a 300 OHM resistor (this is connected in series)!

6. program now the arduino

 

Enigmalight:

 

1. install "enigma2-plugin-extensions-enigmalight_0.2-rc1_all".ipk" on your linux box. (Attention, sometimes the first installation is broken, install it a second time again)

2. reboot the box

3. open the Plugin and switch to the "ConfigEditor". Use the pattern "Adalight" and search for the output "/dev/ttyACM0".

    enter now the number of the LEDs to the sites (right,left,top,bottom). Picture depth from 10 is OK. Now you must define the "startpoint" of the LEDs and the count direction.

    Best is, you begin in a corner, so Enigmlight has in moment a bug if you begin in the bottom middle. Color order must "RGB".

    Now save your config with the green button.

4. open the enigmalight configfile (/etc/enigmalight.conf) in a linux editor. Edit the "prefix" to 53 74 65 66 61 6E . This value is always fix.

 

That's all!

Now the lights should work and you can test it with this videos.

http://forums.openpl...ndpost&p=482355

 

Have fun!

 

 

Attached Files


gr hm          [AX HD51] [VU+ Uno 4K SE]


Re: WS2812B Ambilight on linux Box with Enigmalight Plugin #2 Jan65

  • Member
  • 13 posts

0
Neutral

Posted 12 April 2015 - 10:52

Thanks great.

I have some problems to set the output "/dev/ttyACM0".

What is the Device rate, and wich usb port is used?



Re: WS2812B Ambilight on linux Box with Enigmalight Plugin #3 holymoly

  • Senior Member
  • 181 posts

+2
Neutral

Posted 12 April 2015 - 11:03

Hi,

sorry i have forget to post - device rate is 500000.

you can write the output port direct in the enigmalight.conf!

for the Arduino Hardware is it always:

 

output        /dev/ttyACM0


gr hm          [AX HD51] [VU+ Uno 4K SE]


Re: WS2812B Ambilight on linux Box with Enigmalight Plugin #4 holymoly

  • Senior Member
  • 181 posts

+2
Neutral

Posted 12 April 2015 - 11:59

Device rate must set to 500000.

I have seen, the picture i have post was old and shows a wrong rate! sorry


Edited by holymoly, 12 April 2015 - 12:00.

gr hm          [AX HD51] [VU+ Uno 4K SE]


Re: WS2812B Ambilight on linux Box with Enigmalight Plugin #5 adrouven

  • Senior Member
  • 114 posts

+4
Neutral

Posted 9 December 2015 - 22:25

Can someone help me please. I managed to get de Arduino working with the WS2812B leds and Boblight. For some reason Enigmalight won't work. 

Because it didn't work completely like I would I played a little with all the settings and at one moment it stopped and what ever I tried it won't start again.

 

I Use this bob light.conf file (the original files won't upload, no permission)

 

#[global]

#interface 127.0.0.1
#port 19333
 
[device]
name ambilight
output     /dev/ttyACM0
type       momo
channels   387
interval   20000
prefix     53 74 65 66 61 6E
rate       500000
#debug     off
delayafteropen  1000000
 
 
And this sketch I found on the arduino forum
 
* t4a_boblight
 * © 2014 Hans Luijten, www.tweaking4all.com
 *
 * t4a_boblight is free software and can be distributed and/or modified
 * freely as long as the copyright notice remains in place.
 * Nobody is allowed to charge you for this code.
 * Use of this code is entirely at your own risk.
 */
 
#include "Adafruit_NeoPixel.h"
 
// DEFINITIONS
 
#define STARTCOLOR 0xFFFFFF  // LED colors at start
#define BLACK      0x000000  // LED color BLACK
 
#define DATAPIN    13        // Datapin
#define LEDCOUNT   129       // Number of LEDs used for boblight
#define SHOWDELAY  200       // Delay in micro seconds before showing
#define BAUDRATE   500000    // Serial port speed, 460800 tested with Arduino Uno R3
#define BRIGHTNESS 50        // Max. brightness in %
 
const char prefix[] = {0x41, 0x64, 0x61, 0x00, 0x18, 0x4D};  // Start prefix
char buffer[sizeof(prefix)]; // Temp buffer for receiving prefix data 
 
// Init LED strand, WS2811/WS2912 specific
 
// These might work for other configurations:
//   NEO_KHZ800  800 KHz bitstream (most NeoPixel products w/WS2812 LEDs)
//   NEO_KHZ400  400 KHz (classic 'v1' (not v2) FLORA pixels, WS2811 drivers)
//   NEO_GRB     Pixels are wired for GRB bitstream (most NeoPixel products)
//   NEO_RGB     Pixels are wired for RGB bitstream (v1 FLORA pixels, not v2)
 
Adafruit_NeoPixel strip = Adafruit_NeoPixel(LEDCOUNT, DATAPIN, NEO_GRB + NEO_KHZ800);
 
int state;                   // Define current state
#define STATE_WAITING   1    // - Waiting for prefix
#define STATE_DO_PREFIX 2    // - Processing prefix
#define STATE_DO_DATA   3    // - Handling incoming LED colors
 
int readSerial;           // Read Serial data (1)
int currentLED;           // Needed for assigning the color to the right LED
 
void setup()
{
  strip.begin();            // Init LED strand, set all black, then all to startcolor
  
  strip.setBrightness( (255 / 100) * BRIGHTNESS );
  
  setAllLEDs(BLACK, 0);
  setAllLEDs(STARTCOLOR, 5);
  
  Serial.begin(BAUDRATE);   // Init serial speed
  
  state = STATE_WAITING;    // Initial state: Waiting for prefix
}
 
 
void loop()
{
  switch(state)
  {
    case STATE_WAITING:                  // *** Waiting for prefix ***
      if( Serial.available()>0 )
      {
        readSerial = Serial.read();      // Read one character
        
        if ( readSerial == prefix[0] )   // if this character is 1st prefix char
          { state = STATE_DO_PREFIX; }   // then set state to handle prefix
      }
      break;
      
      
    case STATE_DO_PREFIX:                // *** Processing Prefix ***
      if( Serial.available() > sizeof(prefix) - 2 ) 
      {
          Serial.readBytes(buffer, sizeof(prefix) - 1);
          
          for( int Counter = 0; Counter < sizeof(prefix) - 1; Counter++) 
          {
            if( buffer[Counter] == prefix[Counter+1] ) 
            {
              state = STATE_DO_DATA;     // Received character is in prefix, continue
              currentLED = 0;            // Set current LED to the first one
            }
            else 
            {
              state = STATE_WAITING;     // Crap, one of the received chars is NOT in the prefix
              break;                     // Exit, to go back to waiting for the prefix
            } // end if buffer
          } // end for Counter
      } // end if Serial
      break;
      
      
    case STATE_DO_DATA:                  // *** Process incoming color data ***
      if( Serial.available() > 2 )       // if we receive more than 2 chars
      {
        Serial.readBytes( buffer, 3 );   // Abuse buffer to temp store 3 charaters
        strip.setPixelColor( currentLED++, buffer[0], buffer[1], buffer[2]);  // and assing to LEDs
      }
  
      if( currentLED > LEDCOUNT )        // Reached the last LED? Display it!
      {
          strip.show();                  // Make colors visible
          delayMicroseconds(SHOWDELAY);  // Wait a few micro seconds
          
          state = STATE_WAITING;         // Reset to waiting ...
          currentLED = 0;                // and go to LED one
          
          break;                         // and exit ... and do it all over again
      }
      break; 
  } // switch(state)
  
} // loop
 
 
// Sets the color of all LEDs in the strand to 'color'
// If 'wait'>0 then it will show a swipe from start to end
void setAllLEDs(uint32_t color, int wait)
{
  for ( int Counter=0; Counter < LEDCOUNT; Counter++ )      // For each LED
  {
    strip.setPixelColor( Counter, color );      // .. set the color
 
    if( wait > 0 )                        // if a wait time was set then
    {
      strip.show();                     // Show the LED color
      delay(wait);                      // and wait before we do the next LED
    } // if wait
    
  } // for Counter
  
  strip.show();                         // Show all LEDs
} // setAllLEDs
 
 
These worked for me. The sketch is working for me when I changed the color or the brightness but the bob light program doesn't manage to sent signals to the arduino.

ET9500; vaste opstelling 80cm 4 duo LNB 13, 19, 23 & 28

Re: WS2812B Ambilight on linux Box with Enigmalight Plugin #6 hemertje

  • Forum Moderator
    PLi® Core member
  • 33,503 posts

+118
Excellent

Posted 9 December 2015 - 23:09

in dutch

 

http://forums.openpl...55-inch-led-tv/


on the Glassfibre 1GB DVB-C...


Re: WS2812B Ambilight on linux Box with Enigmalight Plugin #7 adrouven

  • Senior Member
  • 114 posts

+4
Neutral

Posted 10 December 2015 - 22:29

Hi thanks

I had already found the Dutch and English treads.
Yesterday evening I somehow managed to get it al playing. I am not sure what went wrong but I think it is in the programming from the Arduino with the Mac. I tried it many times and suddenly it played.

No fine tuning and playing with all the settings. I alo switched from Boblight to Enigmalight now.
ET9500; vaste opstelling 80cm 4 duo LNB 13, 19, 23 & 28

Re: WS2812B Ambilight on linux Box with Enigmalight Plugin #8 pauldb

  • Member
  • 7 posts

0
Neutral

Posted 11 November 2016 - 08:48

ok first time did this and excelent

 

im using the b version of the lights and had to have grd as colour output on the arduino sketch,,now to mount on the lights on the tv

 

only other thing as well had to change box as i had the alien2, looks like its mips only so had to get another box, but heres a simple test

 

 


Edited by pauldb, 11 November 2016 - 08:49.


Re: WS2812B Ambilight on linux Box with Enigmalight Plugin #9 Dimitrij

  • PLi® Core member
  • 10,330 posts

+350
Excellent

Posted 11 December 2016 - 11:05

/dev/ttyUSB0 is Ok

[device]
name ambilight
output     /dev/ttyUSB0

Edited by Dimitrij, 11 December 2016 - 11:07.

GigaBlue UHD Quad 4K /Lunix3-4K/Duo 4K


Re: WS2812B Ambilight on linux Box with Enigmalight Plugin #10 mobilhome

  • Member
  • 12 posts

0
Neutral

Posted 11 December 2016 - 14:10

What is wrong with this ? Ik krijg dit niet werkend... 

[global]
interface 127.0.0.1
port 19333
 
[device]
name ambilight
output /dev/ttyUSB0
type momo
interval   20000
prefix 41 64 61 00 5C 09
channels 279
rate 115200
debug off
 
[color]
name red
rgb FF0000
gamma 0.91
adjust 1.0
blacklevel 0.0
 
[color]
name green
rgb 00FF00
gamma 0.86
adjust 0.96
blacklevel 0.0
 
[color]
name blue
rgb 0000FF
gamma 0.95
adjust 0.80
blacklevel 0.0
 
 
 
[light]
position left
name 1XX
color red ambilight 1
color green   ambilight 2
color blue ambilight 3
hscan 0 0
vscan 94.12 100.0
 
 
[light]
position left
name 2XX
color red ambilight 4
color green   ambilight 5
color blue ambilight 6
hscan 0 0
vscan 88.24 94.12
 
 
[light]
position left
name 3XX
color red ambilight 7
color green   ambilight 8
color blue ambilight 9
hscan 0 0
vscan 82.35 88.24
 
 
[light]
position left
name 4XX
color red ambilight 10
color green   ambilight 11
color blue ambilight 12
hscan 0 0
vscan 76.47 82.35
 
 
[light]
position left
name 5XX
color red ambilight 13
color green   ambilight 14
color blue ambilight 15
hscan 0 0
vscan 70.59 76.47
 
 
[light]
position left
name 6XX
color red ambilight 16
color green   ambilight 17
color blue ambilight 18
hscan 0 0
vscan 64.71 70.59
 
 
[light]
position left
name 7XX
color red ambilight 19
color green   ambilight 20
color blue ambilight 21
hscan 0 0
vscan 58.82 64.71
 
 
[light]
position left
name 8XX
color red ambilight 22
color green   ambilight 23
color blue ambilight 24
hscan 0 0
vscan 52.94 58.82
 
 
[light]
position left
name 9XX
color red ambilight 25
color green   ambilight 26
color blue ambilight 27
hscan 0 0
vscan 47.06 52.94
 
 
[light]
position left
name 10X
color red ambilight 28
color green   ambilight 29
color blue ambilight 30
hscan 0 0
vscan 41.18 47.06
 
 
[light]
position left
name 11X
color red ambilight 31
color green   ambilight 32
color blue ambilight 33
hscan 0 0
vscan 35.29 41.18
 
 
[light]
position left
name 12X
color red ambilight 34
color green   ambilight 35
color blue ambilight 36
hscan 0 0
vscan 29.41 35.29
 
 
[light]
position left
name 13X
color red ambilight 37
color green   ambilight 38
color blue ambilight 39
hscan 0 0
vscan 23.53 29.41
 
 
[light]
position left
name 14X
color red ambilight 40
color green   ambilight 41
color blue ambilight 42
hscan 0 0
vscan 17.65 23.53
 
 
[light]
position left
name 15X
color red ambilight 43
color green   ambilight 44
color blue ambilight 45
hscan 0 0
vscan 11.76 17.65
 
 
[light]
position left
name 16X
color red ambilight 46
color green   ambilight 47
color blue ambilight 48
hscan 0 0
vscan 5.88 11.76
 
 
[light]
position left
name 17X
color red ambilight 49
color green   ambilight 50
color blue ambilight 51
hscan 0 0
vscan 0.0 5.88
 
 
[light]
position top
name 18X
color red ambilight 52
color green   ambilight 53
color blue ambilight 54
hscan 0.0 2.86
vscan 0 100
 
 
[light]
position top
name 19X
color red ambilight 55
color green   ambilight 56
color blue ambilight 57
hscan 2.86 5.71
vscan 0 100
 
 
[light]
position top
name 20X
color red ambilight 58
color green   ambilight 59
color blue ambilight 60
hscan 5.71 8.57
vscan 0 100
 
 
[light]
position top
name 21X
color red ambilight 61
color green   ambilight 62
color blue ambilight 63
hscan 8.57 11.43
vscan 0 100
 
 
[light]
position top
name 22X
color red ambilight 64
color green   ambilight 65
color blue ambilight 66
hscan 11.43 14.29
vscan 0 100
 
 
[light]
position top
name 23X
color red ambilight 67
color green   ambilight 68
color blue ambilight 69
hscan 14.29 17.14
vscan 0 100
 
 
[light]
position top
name 24X
color red ambilight 70
color green   ambilight 71
color blue ambilight 72
hscan 17.14 20.0
vscan 0 100
 
 
[light]
position top
name 25X
color red ambilight 73
color green   ambilight 74
color blue ambilight 75
hscan 20.0 22.86
vscan 0 100
 
 
[light]
position top
name 26X
color red ambilight 76
color green   ambilight 77
color blue ambilight 78
hscan 22.86 25.71
vscan 0 100
 
 
[light]
position top
name 27X
color red ambilight 79
color green   ambilight 80
color blue ambilight 81
hscan 25.71 28.57
vscan 0 100
 
 
[light]
position top
name 28X
color red ambilight 82
color green   ambilight 83
color blue ambilight 84
hscan 28.57 31.43
vscan 0 100
 
 
[light]
position top
name 29X
color red ambilight 85
color green   ambilight 86
color blue ambilight 87
hscan 31.43 34.29
vscan 0 100
 
 
[light]
position top
name 30X
color red ambilight 88
color green   ambilight 89
color blue ambilight 90
hscan 34.29 37.14
vscan 0 100
 
 
[light]
position top
name 31X
color red ambilight 91
color green   ambilight 92
color blue ambilight 93
hscan 37.14 40.0
vscan 0 100
 
 
[light]
position top
name 32X
color red ambilight 94
color green   ambilight 95
color blue ambilight 96
hscan 40.0 42.86
vscan 0 100
 
 
[light]
position top
name 33X
color red ambilight 97
color green   ambilight 98
color blue ambilight 99
hscan 42.86 45.71
vscan 0 100
 
 
[light]
position top
name 34X
color red ambilight 100
color green   ambilight 101
color blue ambilight 102
hscan 45.71 48.57
vscan 0 100
 
 
[light]
position top
name 35X
color red ambilight 103
color green   ambilight 104
color blue ambilight 105
hscan 48.57 51.43
vscan 0 100
 
 
[light]
position top
name 36X
color red ambilight 106
color green   ambilight 107
color blue ambilight 108
hscan 51.43 54.29
vscan 0 100
 
 
[light]
position top
name 37X
color red ambilight 109
color green   ambilight 110
color blue ambilight 111
hscan 54.29 57.14
vscan 0 100
 
 
[light]
position top
name 38X
color red ambilight 112
color green   ambilight 113
color blue ambilight 114
hscan 57.14 60.0
vscan 0 100
 
 
[light]
position top
name 39X
color red ambilight 115
color green   ambilight 116
color blue ambilight 117
hscan 60.0 62.86
vscan 0 100
 
 
[light]
position top
name 40X
color red ambilight 118
color green   ambilight 119
color blue ambilight 120
hscan 62.86 65.71
vscan 0 100
 
 
[light]
position top
name 41X
color red ambilight 121
color green   ambilight 122
color blue ambilight 123
hscan 65.71 68.57
vscan 0 100
 
 
[light]
position top
name 42X
color red ambilight 124
color green   ambilight 125
color blue ambilight 126
hscan 68.57 71.43
vscan 0 100
 
 
[light]
position top
name 43X
color red ambilight 127
color green   ambilight 128
color blue ambilight 129
hscan 71.43 74.29
vscan 0 100
 
 
[light]
position top
name 44X
color red ambilight 130
color green   ambilight 131
color blue ambilight 132
hscan 74.29 77.14
vscan 0 100
 
 
[light]
position top
name 45X
color red ambilight 133
color green   ambilight 134
color blue ambilight 135
hscan 77.14 80.0
vscan 0 100
 
 
[light]
position top
name 46X
color red ambilight 136
color green   ambilight 137
color blue ambilight 138
hscan 80.0 82.86
vscan 0 100
 
 
[light]
position top
name 47X
color red ambilight 139
color green   ambilight 140
color blue ambilight 141
hscan 82.86 85.71
vscan 0 100
 
 
[light]
position top
name 48X
color red ambilight 142
color green   ambilight 143
color blue ambilight 144
hscan 85.71 88.57
vscan 0 100
 
 
[light]
position top
name 49X
color red ambilight 145
color green   ambilight 146
color blue ambilight 147
hscan 88.57 91.43
vscan 0 100
 
 
[light]
position top
name 50X
color red ambilight 148
color green   ambilight 149
color blue ambilight 150
hscan 91.43 94.29
vscan 0 100
 
 
[light]
position top
name 51X
color red ambilight 151
color green   ambilight 152
color blue ambilight 153
hscan 94.29 97.14
vscan 0 100
 
 
[light]
position top
name 52X
color red ambilight 154
color green   ambilight 155
color blue ambilight 156
hscan 97.14 100.0
vscan 0 100
 
 
[light]
position right
name 53X
color red ambilight 157
color green   ambilight 158
color blue ambilight 159
hscan 100.0 100 
vscan 0.0 5.88
 
 
[light]
position right
name 54X
color red ambilight 160
color green   ambilight 161
color blue ambilight 162
hscan 100.0 100 
vscan 5.88 11.76
 
 
[light]
position right
name 55X
color red ambilight 163
color green   ambilight 164
color blue ambilight 165
hscan 100.0 100 
vscan 11.76 17.65
 
 
[light]
position right
name 56X
color red ambilight 166
color green   ambilight 167
color blue ambilight 168
hscan 100.0 100 
vscan 17.65 23.53
 
 
[light]
position right
name 57X
color red ambilight 169
color green   ambilight 170
color blue ambilight 171
hscan 100.0 100 
vscan 23.53 29.41
 
 
[light]
position right
name 58X
color red ambilight 172
color green   ambilight 173
color blue ambilight 174
hscan 100.0 100 
vscan 29.41 35.29
 
 
[light]
position right
name 59X
color red ambilight 175
color green   ambilight 176
color blue ambilight 177
hscan 100.0 100 
vscan 35.29 41.18
 
 
[light]
position right
name 60X
color red ambilight 178
color green   ambilight 179
color blue ambilight 180
hscan 100.0 100 
vscan 41.18 47.06
 
 
[light]
position right
name 61X
color red ambilight 181
color green   ambilight 182
color blue ambilight 183
hscan 100.0 100 
vscan 47.06 52.94
 
 
[light]
position right
name 62X
color red ambilight 184
color green   ambilight 185
color blue ambilight 186
hscan 100.0 100 
vscan 52.94 58.82
 
 
[light]
position right
name 63X
color red ambilight 187
color green   ambilight 188
color blue ambilight 189
hscan 100.0 100 
vscan 58.82 64.71
 
 
[light]
position right
name 64X
color red ambilight 190
color green   ambilight 191
color blue ambilight 192
hscan 100.0 100 
vscan 64.71 70.59
 
 
[light]
position right
name 65X
color red ambilight 193
color green   ambilight 194
color blue ambilight 195
hscan 100.0 100 
vscan 70.59 76.47
 
 
[light]
position right
name 66X
color red ambilight 196
color green   ambilight 197
color blue ambilight 198
hscan 100.0 100 
vscan 76.47 82.35
 
 
[light]
position right
name 67X
color red ambilight 199
color green   ambilight 200
color blue ambilight 201
hscan 100.0 100 
vscan 82.35 88.24
 
 
[light]
position right
name 68X
color red ambilight 202
color green   ambilight 203
color blue ambilight 204
hscan 100.0 100 
vscan 88.24 94.12
 
 
[light]
position right
name 69X
color red ambilight 205
color green   ambilight 206
color blue ambilight 207
hscan 100.0 100 
vscan 94.12 100.0
 
 
[light]
position bottom
name 70X
color red ambilight 208
color green   ambilight 209
color blue ambilight 210
hscan 97.22 100.0
vscan 100.0 100
 
 
[light]
position bottom
name 71X
color red ambilight 211
color green   ambilight 212
color blue ambilight 213
hscan 94.44 97.22
vscan 100.0 100
 
 
[light]
position bottom
name 72X
color red ambilight 214
color green   ambilight 215
color blue ambilight 216
hscan 91.67 94.44
vscan 100.0 100
 
 
[light]
position bottom
name 73X
color red ambilight 217
color green   ambilight 218
color blue ambilight 219
hscan 88.89 91.67
vscan 100.0 100
 
 
[light]
position bottom
name 74X
color red ambilight 220
color green   ambilight 221
color blue ambilight 222
hscan 86.11 88.89
vscan 100.0 100
 
 
[light]
position bottom
name 75X
color red ambilight 223
color green   ambilight 224
color blue ambilight 225
hscan 83.33 86.11
vscan 100.0 100
 
 
[light]
position bottom
name 76X
color red ambilight 226
color green   ambilight 227
color blue ambilight 228
hscan 80.56 83.33
vscan 100.0 100
 
 
[light]
position bottom
name 77X
color red ambilight 229
color green   ambilight 230
color blue ambilight 231
hscan 77.78 80.56
vscan 100.0 100
 
 
[light]
position bottom
name 78X
color red ambilight 232
color green   ambilight 233
color blue ambilight 234
hscan 75.0 77.78
vscan 100.0 100
 
 
[light]
position bottom
name 79X
color red ambilight 235
color green   ambilight 236
color blue ambilight 237
hscan 72.22 75.0
vscan 100.0 100
 
 
[light]
position bottom
name 80X
color red ambilight 238
color green   ambilight 239
color blue ambilight 240
hscan 69.44 72.22
vscan 100.0 100
 
 
[light]
position bottom
name 81X
color red ambilight 241
color green   ambilight 242
color blue ambilight 243
hscan 66.67 69.44
vscan 100.0 100
 
 
[light]
position bottom
name 82X
color red ambilight 244
color green   ambilight 245
color blue ambilight 246
hscan 2.78 0.0
vscan 100.0 100
 
 
[light]
position bottom
name 83X
color red ambilight 247
color green   ambilight 248
color blue ambilight 249
hscan 5.56 2.78
vscan 100.0 100
 
 
[light]
position bottom
name 84X
color red ambilight 250
color green   ambilight 251
color blue ambilight 252
hscan 8.33 5.56
vscan 100.0 100
 
 
[light]
position bottom
name 85X
color red ambilight 253
color green   ambilight 254
color blue ambilight 255
hscan 11.11 8.33
vscan 100.0 100
 
 
[light]
position bottom
name 86X
color red ambilight 256
color green   ambilight 257
color blue ambilight 258
hscan 13.89 11.11
vscan 100.0 100
 
 
[light]
position bottom
name 87X
color red ambilight 259
color green   ambilight 260
color blue ambilight 261
hscan 16.67 13.89
vscan 100.0 100
 
 
[light]
position bottom
name 88X
color red ambilight 262
color green   ambilight 263
color blue ambilight 264
hscan 19.44 16.67
vscan 100.0 100
 
 
[light]
position bottom
name 89X
color red ambilight 265
color green   ambilight 266
color blue ambilight 267
hscan 22.22 19.44
vscan 100.0 100
 
 
[light]
position bottom
name 90X
color red ambilight 268
color green   ambilight 269
color blue ambilight 270
hscan 25.0 22.22
vscan 100.0 100
 
 
[light]
position bottom
name 91X
color red ambilight 271
color green   ambilight 272
color blue ambilight 273
hscan 27.78 25.0
vscan 100.0 100
 
 
[light]
position bottom
name 92X
color red ambilight 274
color green   ambilight 275
color blue ambilight 276
hscan 30.56 27.78
vscan 100.0 100
 
 
[light]
position bottom
name 93X
color red ambilight 277
color green   ambilight 278
color blue ambilight 279
hscan 33.33 30.56
vscan 100.0 100



2 user(s) are reading this topic

0 members, 2 guests, 0 anonymous users