OLD | NEW |
1 // Copyright (c) 2016, the Fletch project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dartino project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 // This library defines a bitmap font class and instance that prints text | 5 // This library defines a bitmap font class and instance that prints text |
6 // on the Raspberry Pi Sense HAT LED array. | 6 // on the Raspberry Pi Sense HAT LED array. |
7 library sample.ticker.font; | 7 library sample.ticker.font; |
8 | 8 |
9 import 'dart:math'; | 9 import 'dart:math'; |
10 | 10 |
11 import 'package:charcode/ascii.dart'; | 11 import 'package:charcode/ascii.dart'; |
(...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
675 0x10, | 675 0x10, |
676 0x8, | 676 0x8, |
677 0x0, | 677 0x0, |
678 0x30, | 678 0x30, |
679 0x28, | 679 0x28, |
680 0x24, | 680 0x24, |
681 0x28, | 681 0x28, |
682 0x30, | 682 0x30, |
683 0x0, | 683 0x0, |
684 ]; | 684 ]; |
OLD | NEW |