Skip to content

Commit e51d8d9

Browse files
committed
OLED eyes for Ninja
1 parent be10ce9 commit e51d8d9

181 files changed

Lines changed: 474393 additions & 308 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
2+
The U8g2lib code (http://code.google.com/p/u8g2/) is licensed under the terms of
3+
the new-bsd license (two-clause bsd license).
4+
See also: http://www.opensource.org/licenses/bsd-license.php
5+
6+
Fonts are licensed under different conditions.
7+
See
8+
https://github.com/olikraus/u8g2/wiki/fntgrp
9+
for detailed information on the licensing conditions for each font.
10+
11+
The example code in sys/raspi_gpio/hal will use the bcm2835 lib from Mike McCauley
12+
which is licensed under GPL V3: http://www.airspayce.com/mikem/bcm2835/
13+
14+
============ X11 Fonts COUR, HELV, NCEN, TIM, SYMB ============
15+
16+
For fonts derived from the following files, the license below applies.
17+
COURB08.BDF COURB10.BDF COURB12.BDF COURB14.BDF COURB18.BDF
18+
COURB24.BDF COURR08.BDF COURR10.BDF COURR12.BDF COURR14.BDF
19+
COURR18.BDF COURR24.BDF HELVB08.BDF HELVB10.BDF HELVB12.BDF HELVB14.BDF
20+
HELVB18.BDF HELVB24.BDF HELVR08.BDF HELVR10.BDF HELVR12.BDF HELVR14.BDF
21+
HELVR18.BDF HELVR24.BDF NCENB08.BDF NCENB10.BDF NCENB12.BDF
22+
NCENB14.BDF NCENB18.BDF NCENB24.BDF NCENR08.BDF NCENR10.BDF
23+
NCENR12.BDF NCENR14.BDF NCENR18.BDF NCENR24.BDF SYMB08.BDF SYMB10.BDF
24+
SYMB12.BDF SYMB14.BDF SYMB18.BDF SYMB24.BDF TIMB08.BDF TIMB10.BDF
25+
TIMB12.BDF TIMB14.BDF TIMB18.BDF TIMB24.BDF TIMR08.BDF TIMR10.BDF
26+
TIMR12.BDF TIMR14.BDF TIMR18.BDF TIMR24.BDF
27+
28+
Copyright 1984-1989, 1994 Adobe Systems Incorporated.
29+
Copyright 1988, 1994 Digital Equipment Corporation.
30+
31+
Adobe is a trademark of Adobe Systems Incorporated which may be
32+
registered in certain jurisdictions.
33+
Permission to use these trademarks is hereby granted only in
34+
association with the images described in this file.
35+
36+
Permission to use, copy, modify, distribute and sell this software
37+
and its documentation for any purpose and without fee is hereby
38+
granted, provided that the above copyright notices appear in all
39+
copies and that both those copyright notices and this permission
40+
notice appear in supporting documentation, and that the names of
41+
Adobe Systems and Digital Equipment Corporation not be used in
42+
advertising or publicity pertaining to distribution of the software
43+
without specific, written prior permission. Adobe Systems and
44+
Digital Equipment Corporation make no representations about the
45+
suitability of this software for any purpose. It is provided "as
46+
is" without express or implied warranty.
47+
48+
49+
============ BSD License for U8g2lib Code ============
50+
51+
Universal 8bit Graphics Library (http://code.google.com/p/u8g2/)
52+
53+
Copyright (c) 2016, olikraus@gmail.com
54+
All rights reserved.
55+
56+
Redistribution and use in source and binary forms, with or without modification,
57+
are permitted provided that the following conditions are met:
58+
59+
* Redistributions of source code must retain the above copyright notice, this list
60+
of conditions and the following disclaimer.
61+
62+
* Redistributions in binary form must reproduce the above copyright notice, this
63+
list of conditions and the following disclaimer in the documentation and/or other
64+
materials provided with the distribution.
65+
66+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
67+
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
68+
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
69+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
70+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
71+
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
72+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
73+
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
74+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
75+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
76+
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
77+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
78+
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
79+
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# U8g2_Arduino: Arduino Monochrome Graphics Library
2+
3+
![https://raw.githubusercontent.com/wiki/olikraus/u8g2/img/uc1701_dogs102_uno_board_320.jpg](https://raw.githubusercontent.com/wiki/olikraus/u8g2/img/uc1701_dogs102_uno_board_320.jpg)
4+
5+
U8glib V2 library for Arduino
6+
7+
Description: https://github.com/olikraus/u8g2/wiki
8+
9+
Issue Tracker: https://github.com/olikraus/u8g2/issues
10+
11+
Download (2.31.2): https://github.com/olikraus/U8g2_Arduino/archive/master.zip
12+

compilation/arduino/userlibs/libraries/U8g2/examples/full_buffer/FPS/FPS.ino

Lines changed: 620 additions & 0 deletions
Large diffs are not rendered by default.

compilation/arduino/userlibs/libraries/U8g2/examples/full_buffer/FontUsage/FontUsage.ino

Lines changed: 550 additions & 0 deletions
Large diffs are not rendered by default.

compilation/arduino/userlibs/libraries/U8g2/examples/full_buffer/GraphicsTest/GraphicsTest.ino

Lines changed: 520 additions & 0 deletions
Large diffs are not rendered by default.

compilation/arduino/userlibs/libraries/U8g2/examples/full_buffer/HelloWorld/HelloWorld.ino

Lines changed: 316 additions & 0 deletions
Large diffs are not rendered by default.

compilation/arduino/userlibs/libraries/U8g2/examples/full_buffer/IconMenu/IconMenu.ino

Lines changed: 476 additions & 0 deletions
Large diffs are not rendered by default.

compilation/arduino/userlibs/libraries/U8g2/examples/full_buffer/PrintUTF8/PrintUTF8.ino

Lines changed: 328 additions & 0 deletions
Large diffs are not rendered by default.

compilation/arduino/userlibs/libraries/U8g2/examples/full_buffer/ScreenShot/ScreenShot.ino

Lines changed: 325 additions & 0 deletions
Large diffs are not rendered by default.

compilation/arduino/userlibs/libraries/U8g2/examples/full_buffer/SelectionList/SelectionList.ino

Lines changed: 361 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)