Skip to content

Commit

Permalink
yepp fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ladyada committed Aug 3, 2017
1 parent 83ff37a commit 6a0e701
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions Adafruit_SharpMem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ Adafruit_GFX(width, height) {
}

boolean Adafruit_SharpMem::begin(void) {

// Set pin state before direction to make sure they start this way (no glitching)
digitalWrite(_ss, HIGH);
digitalWrite(_clk, LOW);
Expand All @@ -88,7 +87,7 @@ boolean Adafruit_SharpMem::begin(void) {

if (!sharpmem_buffer) return false;

setRotation(2);
setRotation(0);

return true;
}
Expand Down
2 changes: 1 addition & 1 deletion examples/sharpmemtest/sharpmemtest.ino
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ All text above, and the splash screen must be included in any redistribution
// any pins can be used
#define SHARP_SCK 13
#define SHARP_MOSI 11
#define SHARP_SS 13
#define SHARP_SS 10

Adafruit_SharpMem display(SHARP_SCK, SHARP_MOSI, SHARP_SS);

Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Adafruit SHARP Memory Display
version=1.0.4
version=1.0.5
author=Adafruit
maintainer=Adafruit <[email protected]>
sentence=This is an Arduino library for the Adafruit Monochrome SHARP Memory Displays
Expand Down

0 comments on commit 6a0e701

Please sign in to comment.