diff options
author | jaseg <jaseg@jaseg.net> | 2014-07-25 20:07:49 +0200 |
---|---|---|
committer | jaseg <jaseg@jaseg.net> | 2014-07-25 20:07:49 +0200 |
commit | 50813d444ead5cc92a448f0a7feff6b22fba06cd (patch) | |
tree | 6a47c4389abbec1fce9a0ddb847541afb5631438 /firmware | |
parent | 1392b46636e9df2a4e4ecc56f12df2cb0301f6e8 (diff) | |
download | matelight-50813d444ead5cc92a448f0a7feff6b22fba06cd.tar.gz matelight-50813d444ead5cc92a448f0a7feff6b22fba06cd.tar.bz2 matelight-50813d444ead5cc92a448f0a7feff6b22fba06cd.zip |
Geometry fixes for mainhall setup
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/main.c b/firmware/main.c index 52b6360..4b325fa 100644 --- a/firmware/main.c +++ b/firmware/main.c @@ -54,10 +54,10 @@ unsigned const char const FUCKED_UP_BOTTLE_MAP[CRATE_SIZE] = { }; unsigned const char const CRATE_MAP[CRATE_COUNT] = { - 0x07, 0x05, 0x03, 0x01, 0x10, 0x12, 0x14, 0x16, - 0x06, 0x04, 0x02, 0x00, 0x11, 0x13, 0x15, 0x17, - 0x26, 0x24, 0x22, 0x20, 0x31, 0x33, 0x35, 0x37, - 0x27, 0x25, 0x23, 0x21, 0x30, 0x32, 0x34, 0x36 + 0x36, 0x34, 0x32, 0x30, 0x11, 0x13, 0x15, 0x17, + 0x37, 0x35, 0x33, 0x31, 0x10, 0x12, 0x14, 0x16, + 0x27, 0x25, 0x23, 0x21, 0x01, 0x03, 0x05, 0x07, + 0x26, 0x24, 0x22, 0x20, 0x00, 0x02, 0x04, 0x06 }; #define SYSTICKS_PER_SECOND 100 |