aboutsummaryrefslogtreecommitdiff
path: root/host/matelight/config.py
diff options
context:
space:
mode:
authorjaseg <jaseg@jaseg.net>2014-01-03 16:40:44 +0100
committerjaseg <jaseg@jaseg.net>2014-01-03 16:40:44 +0100
commitd27f9ecf7ea92b702df128f856c1063aa91c51f2 (patch)
tree1dc2b1ff871e28966aceb7a6bf7da8f190a6cd24 /host/matelight/config.py
parent9ef5c135e894b2da95940e2556f4df9ce2205552 (diff)
downloadmatelight-d27f9ecf7ea92b702df128f856c1063aa91c51f2.tar.gz
matelight-d27f9ecf7ea92b702df128f856c1063aa91c51f2.tar.bz2
matelight-d27f9ecf7ea92b702df128f856c1063aa91c51f2.zip
Maybe gif-lib wasn't too bright an idea...
Diffstat (limited to 'host/matelight/config.py')
-rw-r--r--host/matelight/config.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/host/matelight/config.py b/host/matelight/config.py
deleted file mode 100644
index b68bee5..0000000
--- a/host/matelight/config.py
+++ /dev/null
@@ -1,31 +0,0 @@
-
-# Hard timeout in seconds after which (approximately) the rendering of a single item will be cut off
-RENDERER_TIMEOUT = 20.0
-# How long to show an image by default
-DEFAULT_IMAGE_DURATION = 10.0
-# Default scrolling speed in pixels/second
-DEFAULT_SCROLL_SPEED = 4
-# Pixels to leave blank between two letters
-LETTER_SPACING = 0
-
-# 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 │
-# └───┴───┴ ⋯ ┴───┴───┘
-
-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
-FRAME_SIZE = DISPLAY_WIDTH*DISPLAY_HEIGHT*3
-