mirror of
https://github.com/adafruit/Adafruit-GFX-Library.git
synced 2024-10-03 18:18:46 -04:00
Compare commits
4 Commits
56963a162e
...
970c3ba807
Author | SHA1 | Date | |
---|---|---|---|
|
970c3ba807 | ||
|
0e32d7dc76 | ||
|
5080bec822 | ||
|
4efc6d90f6 |
@ -15,7 +15,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#if !defined(__AVR_ATtiny85__) // Not for ATtiny, at all
|
||||
// Not for ATtiny, at all
|
||||
#if !defined(__AVR_ATtiny85__) && !defined(__AVR_ATtiny84__)
|
||||
|
||||
#include "Adafruit_GrayOLED.h"
|
||||
#include <Adafruit_GFX.h>
|
||||
|
@ -24,7 +24,8 @@
|
||||
#ifndef _Adafruit_GRAYOLED_H_
|
||||
#define _Adafruit_GRAYOLED_H_
|
||||
|
||||
#if !defined(__AVR_ATtiny85__) // Not for ATtiny, at all
|
||||
// Not for ATtiny, at all
|
||||
#if !defined(__AVR_ATtiny85__) && !defined(__AVR_ATtiny84__)
|
||||
|
||||
#include <Adafruit_GFX.h>
|
||||
#include <Adafruit_I2CDevice.h>
|
||||
@ -96,5 +97,5 @@ private:
|
||||
TwoWire *_theWire = NULL; ///< The underlying hardware I2C
|
||||
};
|
||||
|
||||
#endif // end __AVR_ATtiny85__
|
||||
#endif // end __AVR_ATtiny85__ __AVR_ATtiny84__
|
||||
#endif // _Adafruit_GrayOLED_H_
|
||||
|
@ -31,7 +31,8 @@
|
||||
* BSD license, all text here must be included in any redistribution.
|
||||
*/
|
||||
|
||||
#if !defined(__AVR_ATtiny85__) // Not for ATtiny, at all
|
||||
// Not for ATtiny, at all
|
||||
#if !defined(__AVR_ATtiny85__) && !defined(__AVR_ATtiny84__)
|
||||
|
||||
#include "Adafruit_SPITFT.h"
|
||||
|
||||
@ -2558,4 +2559,4 @@ inline void Adafruit_SPITFT::TFT_RD_LOW(void) {
|
||||
#endif // end !USE_FAST_PINIO
|
||||
}
|
||||
|
||||
#endif // end __AVR_ATtiny85__
|
||||
#endif // end __AVR_ATtiny85__ __AVR_ATtiny84__
|
||||
|
@ -20,7 +20,8 @@
|
||||
#ifndef _ADAFRUIT_SPITFT_H_
|
||||
#define _ADAFRUIT_SPITFT_H_
|
||||
|
||||
#if !defined(__AVR_ATtiny85__) // Not for ATtiny, at all
|
||||
// Not for ATtiny, at all
|
||||
#if !defined(__AVR_ATtiny85__) && !defined(__AVR_ATtiny84__)
|
||||
|
||||
#include "Adafruit_GFX.h"
|
||||
#include <SPI.h>
|
||||
@ -526,5 +527,5 @@ protected:
|
||||
uint32_t _freq = 0; ///< Dummy var to keep subclasses happy
|
||||
};
|
||||
|
||||
#endif // end __AVR_ATtiny85__
|
||||
#endif // end __AVR_ATtiny85__ __AVR_ATtiny84__
|
||||
#endif // end _ADAFRUIT_SPITFT_H_
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Adafruit GFX Library ![Build Status](https://github.com/adafruit/Adafruit-GFX-Library/workflows/Arduino%20Library%20CI/badge.svg)
|
||||
# Adafruit GFX Library ![Build Status](https://github.com/adafruit/Adafruit-GFX-Library/workflows/Arduino%20Library%20CI/badge.svg) [![Documentation](https://github.com/adafruit/ci-arduino/blob/master/assets/doxygen_badge.svg)](https://adafruit.github.io/Adafruit-GFX-Library/html/index.html)
|
||||
|
||||
This is the core graphics library for all our displays, providing a common set of graphics primitives (points, lines, circles, etc.). It needs to be paired with a hardware-specific library for each display device we carry (to handle the lower-level functions).
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
name=Adafruit GFX Library
|
||||
version=1.11.9
|
||||
version=1.11.10
|
||||
author=Adafruit
|
||||
maintainer=Adafruit <info@adafruit.com>
|
||||
sentence=Adafruit GFX graphics core library, this is the 'core' class that all our other graphics libraries derive from.
|
||||
|
Loading…
Reference in New Issue
Block a user