aboutsummaryrefslogtreecommitdiffstats
path: root/source/sharp/Adafruit_SharpMem.h
diff options
context:
space:
mode:
authortcsullivan <tullivan99@gmail.com>2019-03-01 07:32:32 -0500
committertcsullivan <tullivan99@gmail.com>2019-03-01 07:32:32 -0500
commitd2284735eee14f2210d9ee1b77b6cecb02e0589b (patch)
tree418ead20e357b8046ffb3b5586c1ac5961fbbb89 /source/sharp/Adafruit_SharpMem.h
parentd6869d1ec4bd24cd2c3eafa534f0849b25ec5607 (diff)
sharp screen working
Diffstat (limited to 'source/sharp/Adafruit_SharpMem.h')
-rw-r--r--source/sharp/Adafruit_SharpMem.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/source/sharp/Adafruit_SharpMem.h b/source/sharp/Adafruit_SharpMem.h
new file mode 100644
index 0000000..1b0b581
--- /dev/null
+++ b/source/sharp/Adafruit_SharpMem.h
@@ -0,0 +1,70 @@
+/*********************************************************************
+This is an Arduino library for our Monochrome SHARP Memory Displays
+
+ Pick one up today in the adafruit shop!
+ ------> http://www.adafruit.com/products/1393
+
+These displays use SPI to communicate, 3 pins are required to
+interface
+
+Adafruit invests time and resources providing this open source code,
+please support Adafruit and open-source hardware by purchasing
+products from Adafruit!
+
+Written by Limor Fried/Ladyada for Adafruit Industries.
+BSD license, check license.txt for more information
+All text above, and the splash screen must be included in any redistribution
+*********************************************************************/
+
+#if ARDUINO >= 100
+ #include "Arduino.h"
+#else
+ #include "WProgram.h"
+#endif
+
+#if defined(RAMSTART) && defined(RAMEND) && ((RAMEND-RAMSTART) < 4096)
+ #warning "Display may not work on devices with less than 4K RAM"
+#endif
+
+#include <Adafruit_GFX.h>
+#ifdef __AVR
+ #include <avr/pgmspace.h>
+#elif defined(ESP8266)
+ #include <pgmspace.h>
+#endif
+
+#if defined(ARDUINO_STM32_FEATHER)
+ typedef volatile uint32 RwReg;
+ //#define USE_FAST_PINIO
+#elif defined(ARDUINO_FEATHER52) || defined (ESP8266) || defined (ESP32) || defined(__SAM3X8E__) || defined(ARDUINO_ARCH_SAMD)
+ typedef volatile uint32_t RwReg;
+ #define USE_FAST_PINIO // tested!
+#elif defined (__AVR__) || defined(TEENSYDUINO)
+ typedef volatile uint8_t RwReg;
+ #define USE_FAST_PINIO
+#else
+ #undef USE_FAST_PINIO
+#endif
+
+
+class Adafruit_SharpMem : public Adafruit_GFX {
+ public:
+ Adafruit_SharpMem(uint8_t clk, uint8_t mosi, uint8_t ss, uint16_t w = 96, uint16_t h = 96);
+ boolean begin();
+ void drawPixel(int16_t x, int16_t y, uint16_t color);
+ uint8_t getPixel(uint16_t x, uint16_t y);
+ void clearDisplay();
+ void refresh(void);
+
+ private:
+ uint8_t _ss, _clk, _mosi;
+ uint32_t _sharpmem_vcom;
+
+#ifdef USE_FAST_PINIO
+ volatile RwReg *dataport, *clkport;
+ uint32_t datapinmask, clkpinmask;
+#endif
+
+ void sendbyte(uint8_t data);
+ void sendbyteLSB(uint8_t data);
+};