done
TM1637_Config.h@0:dc8789a6e21f, 2016-01-30 (annotated)
- Committer:
- wim
- Date:
- Sat Jan 30 20:35:25 2016 +0000
- Revision:
- 0:dc8789a6e21f
- Child:
- 1:f63d87466f55
TM1637 Library, for TM1637 LEDcontroller
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
wim | 0:dc8789a6e21f | 1 | /* mbed TM1637 Library, for TM1637 LEDcontroller |
wim | 0:dc8789a6e21f | 2 | * Copyright (c) 2016, v01: WH, Initial version |
wim | 0:dc8789a6e21f | 3 | * |
wim | 0:dc8789a6e21f | 4 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
wim | 0:dc8789a6e21f | 5 | * of this software and associated documentation files (the "Software"), to deal |
wim | 0:dc8789a6e21f | 6 | * in the Software without restriction, including without limitation the rights |
wim | 0:dc8789a6e21f | 7 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
wim | 0:dc8789a6e21f | 8 | * copies of the Software, and to permit persons to whom the Software is |
wim | 0:dc8789a6e21f | 9 | * furnished to do so, subject to the following conditions: |
wim | 0:dc8789a6e21f | 10 | * |
wim | 0:dc8789a6e21f | 11 | * The above copyright notice and this permission notice shall be included in |
wim | 0:dc8789a6e21f | 12 | * all copies or substantial portions of the Software. |
wim | 0:dc8789a6e21f | 13 | * |
wim | 0:dc8789a6e21f | 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
wim | 0:dc8789a6e21f | 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
wim | 0:dc8789a6e21f | 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
wim | 0:dc8789a6e21f | 17 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
wim | 0:dc8789a6e21f | 18 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
wim | 0:dc8789a6e21f | 19 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
wim | 0:dc8789a6e21f | 20 | * THE SOFTWARE. |
wim | 0:dc8789a6e21f | 21 | */ |
wim | 0:dc8789a6e21f | 22 | |
wim | 0:dc8789a6e21f | 23 | #ifndef TM1637_CONFIG_H |
wim | 0:dc8789a6e21f | 24 | #define TM1637_CONFIG_H |
wim | 0:dc8789a6e21f | 25 | |
wim | 0:dc8789a6e21f | 26 | // Select one of the testboards for TM1637 LED controller |
wim | 0:dc8789a6e21f | 27 | #define TM1637_TEST 0 |
wim | 0:dc8789a6e21f | 28 | #define CATALEX_TEST 1 |
wim | 0:dc8789a6e21f | 29 | |
wim | 0:dc8789a6e21f | 30 | // Select the display mode: only digits and hex or ASCII |
wim | 0:dc8789a6e21f | 31 | #define SHOW_ASCII 1 |
wim | 0:dc8789a6e21f | 32 | |
wim | 0:dc8789a6e21f | 33 | #endif |