6d5ec0e0f34bcd6d62865ccd02ec6a565d077c48
Stefan Schuermans config files examples for s...

Stefan Schuermans authored 7 years ago

1) # EtherPix configuration file for screen with 5x2 panels of 8x12 pixels each
2) 
3) # address of local output socket
4) # all distributors must be reachable from this address
5) # syntax:
6) #   bindAddr = <IPv4>:<port>
7) # description:
8) #   IPv4: IPv4 address, 0.0.0.0 for all local interfaces
9) #   port: UDP port number, 0 for automatic selection
10) bindAddr = 0.0.0.0:0
11) 
12) # size of the (virtual) rectangluar display
13) # syntax:
14) #   size = <width>,<height>
15) # description:
16) #   width: width in pixels
17) #   height: height in pixels
18) size = 40,24
19) 
20) # configure distributors
21) # syntax:
22) #   distributor <distno> = <outputs>,<pixels>
23) # description:
24) #   distno: number of distributor
25) #   outputs: number of outputs per distributor
26) #   pixels: number of pixels per output
27) distributor 0 = 32,96
28) 
29) # set address of distributor
30) # if address is not set, default IP/UDP configuration is used:
31) #   IPv4: 10.70.80.<distno>
32) #   UDP port: 2323
33) # syntax:
34) #   distributorAddr = <IPv4>:<port>
35) # description:
36) #   IPv4: IPv4 address
37) #   port: UDP port number
38) distributorAddr 0 = 192.168.0.111:2323 # real distributor device
39) distributorAddr 0 = 127.0.0.1:23000 # simulator
40) 
41) # configure mapping between the color channel values in the video
42) # and the values transmitted to the display
43) # a mapping is configured per distributor and applies to all pixels
44) # connected to it
Stefan Schuermans add support for monochrome...

Stefan Schuermans authored 6 years ago

45) # RGB distributors use red, green and blue, monochrone distributors use white
Stefan Schuermans config files examples for s...

Stefan Schuermans authored 7 years ago

46) # syntax:
Stefan Schuermans add support for monochrome...

Stefan Schuermans authored 6 years ago

47) #   mapping <distno> (red|green|blue|white) = <base> <factor> <gamma>