Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PeggyWriter example has erors #4

Open
GoogleCodeExporter opened this issue Aug 20, 2015 · 5 comments
Open

PeggyWriter example has erors #4

GoogleCodeExporter opened this issue Aug 20, 2015 · 5 comments

Comments

@GoogleCodeExporter
Copy link

The example 'PeggyWriter_Hello' has a few errors in it that prevent compiling 
as well as some kerning errors in the text display. A corrected version is 
below:



/* Simple example code for Peggy 2.0, using the Peggy2 and PeggyWriter libraries
*/

#include <Peggy2.h>
#include <stdlib.h> 
#include <PeggyWriter.h>

Peggy2 frame1;     // Make a frame buffer object, called frame1
PeggyWriter myWriter;  // Make a PeggyWriter object

void setup()                    // run once, when the sketch starts
{
     frame1.HardwareInit();   // Call this once to init the hardware
}  // End void setup()  


void loop()                     // run over and over again
{ 
  byte x = 2, y = 1;

  myWriter.drawCharacter('H',&frame1, x, y);
  x += 5;
  myWriter.drawCharacter('E',&frame1, x, y);
  x += 4;
  myWriter.drawCharacter('L',&frame1, x, y);
  x += 4;
  myWriter.drawCharacter('L',&frame1, x, y);
  x += 4;
  myWriter.drawCharacter('O',&frame1, x, y);
  x = 0;
  y += 7;
  myWriter.drawCharacter('W',&frame1, x, y);
  x += 6;
  myWriter.drawCharacter('O',&frame1, x, y);
  x += 5;
  myWriter.drawCharacter('R',&frame1, x, y);
  x += 5;
  myWriter.drawCharacter('L',&frame1, x, y);
  x += 4;
  myWriter.drawCharacter('D',&frame1, x, y);
  x += 5;

  while (1)
  {
    frame1.RefreshAll(1);
    delayMicroseconds(1000);
  }

}

Original issue reported on code.google.com by [email protected] on 28 Mar 2011 at 8:15

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant