65 lines
2.3 KiB
Python
65 lines
2.3 KiB
Python
# Matelight
|
|
# Copyright (C) 2016 Sebastian Götte <code@jaseg.net>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# Display geometry
|
|
# ┌─────────┐ ┌───┬───┬ ⋯ ┬───┬───┐
|
|
# │1 o o o 5│ │ 1 │ │ │ │ 8│
|
|
# │6 o o o o│ ├───┼───┼ ⋯ ┼───┼───┤
|
|
# │o o o o o│ │ 9 │ │ │ │16 │
|
|
# │o o o o20│ ├───┼───┼ ⋯ ┼───┼───┤
|
|
# └─────────┘ │17 │ │ │ │24 │
|
|
# ├───┼───┼ ⋯ ┼───┼───┤
|
|
# │25 │ │ │ │32 │
|
|
# └───┴───┴ ⋯ ┴───┴───┘
|
|
|
|
# Physical display dimensions
|
|
crate_width = 5
|
|
crate_height = 4
|
|
crates_x = 8
|
|
crates_y = 4
|
|
|
|
# Computed values
|
|
display_width = crates_x * crate_width
|
|
display_height = crates_y * crate_height
|
|
crate_size = crate_width*crate_height
|
|
frame_size = display_width*display_height
|
|
|
|
# Display gamma factor
|
|
gamma = 2.5
|
|
|
|
# Brightness of the display. 0 to 1.0
|
|
brightness = 1.0
|
|
|
|
# Frame timeout for UDP clients
|
|
udp_timeout = 3.0
|
|
|
|
# Interval for rotation of multiple concurrent UDP clients
|
|
udp_switch_interval = 30.0
|
|
|
|
# Listening addr/port for UDP and TCP servers
|
|
udp_addr = tcp_addr = ''
|
|
udp_port = tcp_port = 1337
|
|
|
|
# Forward addr/port
|
|
crap_fw_addr, crap_fw_port = '127.0.0.1', 1338
|
|
|
|
# USB Serial number of matelight to control as byte string (None for first matelight connected)
|
|
ml_usb_serial_match = None
|
|
|
|
# Maximum width allowed for marquee texts in px. For reference: Using GNU unifont, a normal (half-width) char such as ∀
|
|
# is 8px wide, a full-width char such as 水 is 16px wide.
|
|
max_marquee_width = 140*8
|
|
|