Skip to content

Commit

Permalink
matched wiring to tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
ladyada committed Feb 18, 2011
1 parent 40ec457 commit b7d3c94
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/pcdtest/pcdtest.pde
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#include "PCD8544.h"

// pin 9 - Serial clock out (SCLK)
// pin 8 - Serial data out (DIN)
// pin 7 - Data/Command select (D/C)
// pin 6 - LCD chip select (CS)
// pin 5 - LCD reset (RST)
PCD8544 nokia = PCD8544(9, 8, 7, 6, 5);
// pin 7 - Serial clock out (SCLK)
// pin 6 - Serial data out (DIN)
// pin 5 - Data/Command select (D/C)
// pin 4 - LCD chip select (CS)
// pin 3 - LCD reset (RST)
PCD8544 nokia = PCD8544(7, 6, 5, 4, 3);

// a bitmap of a 16x16 fruit icon
static unsigned char __attribute__ ((progmem)) logo16_glcd_bmp[]={
Expand Down

0 comments on commit b7d3c94

Please sign in to comment.