-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from andium/v1.0.1
V1.0.1
- Loading branch information
Showing
30 changed files
with
1,258 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
name=AnduinoEEPROM | ||
version=1.0 | ||
version=1.0.1 | ||
author=Brian Carbonette | ||
maintainer=Brian Carbonette <bcarbonette@andium.com> | ||
sentence=EEPROM library for Anduino Shield. | ||
paragraph=EEPROM library for Anduino Shield. | ||
category=Uncategorized | ||
url=http://www.andium.com/AnduinoEEPROM | ||
url=https://github.com/Andium/anduino | ||
architectures=* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
name=AnduinoLCD | ||
version=1.0 | ||
version=1.0.1 | ||
author=Brian Carbonette | ||
maintainer=Brian Carbonette <bcarbonette@andium.com> | ||
sentence=LCD library for Anduino Shield. | ||
paragraph=LCD library for Anduino Shield. | ||
category=Display | ||
url=http://www.andium.com/AnduinoLCD | ||
url=https://github.com/Andium/Anduino | ||
architectures=* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Font structures for newer Adafruit_GFX (1.1 and later). | ||
// Example fonts are included in 'Fonts' directory. | ||
// To use a font in your Arduino sketch, #include the corresponding .h | ||
// file and pass address of GFXfont struct to setFont(). Pass NULL to | ||
// revert to 'classic' fixed-space bitmap font. | ||
|
||
#ifndef _GFXFONT_H_ | ||
#define _GFXFONT_H_ | ||
|
||
typedef struct { // Data stored PER GLYPH | ||
uint16_t bitmapOffset; // Pointer into GFXfont->bitmap | ||
uint8_t width, height; // Bitmap dimensions in pixels | ||
uint8_t xAdvance; // Distance to advance cursor (x axis) | ||
int8_t xOffset, yOffset; // Dist from cursor pos to UL corner | ||
} GFXglyph; | ||
|
||
typedef struct { // Data stored for FONT AS A WHOLE: | ||
uint8_t *bitmap; // Glyph bitmaps, concatenated | ||
GFXglyph *glyph; // Glyph array | ||
uint8_t first, last; // ASCII extents | ||
uint8_t yAdvance; // Newline distance (y axis) | ||
} GFXfont; | ||
|
||
#endif // _GFXFONT_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.